Viewing 15 posts - 31 through 45 (of 147 total)
Under Win2k3 and below the cluster name is independent of the virtual name and the two must be different. The two names are used to address very different "aspects"...
October 4, 2009 at 11:33 pm
On one of our SQL2k systems we had log-shipping set up for our 1TB database to a read-only copy so users could run reports against that copy: more-or-less what you've...
October 4, 2009 at 11:28 pm
G'day Dan,
In answer to your questions:
1. To monitor the size of files use the "sys.files" DMV. To monitor the usage of files, I use "dbcc showfilestats".
2. "Zero-out"...
October 4, 2009 at 11:18 pm
The most common reason for database file (not log file) expansion in a mature database is reindexing. As an index rebuild requires a new copy of the index to...
October 4, 2009 at 5:17 pm
The other thing that will affect things is what the datatype is.
If your field is an int or other numeric datatype and you have the output sorted on that field,...
September 16, 2009 at 1:01 am
We've had similar requirements in the past that we've satisfied using a local version of MSDB (now fortunately replaced with SQL Server Express) and replicating to the central database(s).
The reference...
September 15, 2009 at 11:25 pm
You don't mention what type of application this is, how big the database is nor the details of the OS. I haven't seen your specific issues myself, but from...
August 4, 2009 at 5:20 pm
The other thing I haven't seen mentioned is the relative size of the data and log files and the recovery mode. If the database isn't already in Simple recovery...
August 3, 2009 at 6:55 pm
I agree with Shinoj: a UNC path is definitely a better option than trying to maintain a specific drive mapping.
If you really want/have to use a drive mapping I'd include...
August 3, 2009 at 6:43 pm
If a service pack or hotfix is going to make any change to a database it's only going to be the system objects that are affected. The system objects...
August 3, 2009 at 6:37 pm
At the simplistic level shared memory will give the fastest performance when everything is running on the same server. You can set this up by adding an alias for...
August 3, 2009 at 6:09 pm
Most definitely you do have to add the SQL Server service account as a SysAdmin after removing BUILTIN/Administrators.
That service account also needs rights to whatever it needs to access at...
August 3, 2009 at 5:51 pm
As always, the answer is "It depends".
The effect on memory usage will be identical to that on disk usage. The change in definition of the field won't make any...
July 28, 2009 at 4:53 pm
This is not really about whether the users connect using Windows or SQL Server authentication (although I'd support Microsoft's recommended best pracrtice in using Windows authentication only if possible) but...
July 26, 2009 at 7:52 pm
An SQL2k/32 backup restored to an SQL2k5/x64 server is exactly the process we have used to migrate some of our databases, including some of our major systems. We have...
July 21, 2009 at 10:50 pm
Viewing 15 posts - 31 through 45 (of 147 total)