Viewing 15 posts - 61 through 75 (of 286 total)
Don't!
DTS is outta here with the release of SQL Server 2005 - study SQL Server Integration Services instead.
March 30, 2006 at 3:18 am
DROP DATABASE removes the database from SL Server and deletes the files from the disk.
March 30, 2006 at 3:16 am
Aah, not if I understand you correctly.
SQL Server on a SAN, yes, database mirroring on these servers, yes, 'point to the same databases', no.
Some people use SANs to solve the...
March 30, 2006 at 3:12 am
--Try:
sp_addrolemember 'db_backupoperators', 'youruserhere'
March 30, 2006 at 3:08 am
What kind of backups and what frequency is Veritas performing?
Simply having it installed isn't enough.
March 30, 2006 at 2:48 am
"If the database recovery model is set to either bulk-logged or simple, some INDEX DDL operations are minimally logged whether the operation is executed offline or online. The minimally logged...
March 30, 2006 at 2:35 am
Yes, database mirroring is not a reporting feature - it is database snapshots, and they are enterprise level.
March 30, 2006 at 2:31 am
Err, I assume you mean changing mode to simple.
Log shipping can be performed under full or bulk-logged.
March 30, 2006 at 2:27 am
I was refering specifically to the rebuilding of indexes which is expedited through the use of BULK-LOGGED.
Yes, ALTER is new to 2005 - everything is done through CREATE, ALTER, DROP...
March 30, 2006 at 2:24 am
"...which includes re-indexing and other such intensive activities, can fill up a transaction log in a hurry, **even with the BULK-LOGGED recovery option.**"
That's not true.
I'd suggest implementing database mirroring instead...
March 29, 2006 at 3:28 am
That's server level auditing, not a trigger:
Go to the properties of the SQL Server, go to Auditing and select sucessful, faulre, all or none.
March 29, 2006 at 3:24 am
I'm at a loss to explain why no-one suggested you use the copy database wizard. It'll migrate the users as well.
March 29, 2006 at 3:19 am
From the original post it apeears that the users create and execute the procedures.
If you set a default schema for the users, then the sps will also belong to that...
March 29, 2006 at 3:18 am
The cpomlicated bit is installing the cluster service and creating the virtual servers.
In 2000:
http://www.microsoft.com/windows2000/techinfo/planning/server/clustersteps.asp
After that you just run the SQL Server setup, it detects the cluster, you pick...
March 29, 2006 at 3:16 am
Viewing 15 posts - 61 through 75 (of 286 total)