Viewing 15 posts - 76 through 90 (of 501 total)
You can't specify a size for each backup file when backing up to multiple files but you can estimate their size based on the db size. So for a 200GB...
May 5, 2014 at 2:56 pm
You need to run sp_dropserver and sp_addserver after renaming the machine. Also, if you have SQL Agent jobs that reference the server name, you will need to update those as...
May 1, 2014 at 12:36 pm
You can find the plan handle and then use DBCC FREEPROCCACHE to drop an individual plan. However, be careful not to just run DBCC FREEPROCCACHE without a plan handle as...
April 29, 2014 at 3:03 pm
Read this article. It generates the create login statements and includes their password as a hashed value.
March 28, 2014 at 2:53 pm
If it were me, I would not use SHRINKFILE with EMPTYFILE. EMPTYFILE marks a data file so that the data engine will no longer write to it. The only way...
March 11, 2014 at 2:17 pm
Yes it will work. The subscription database does not need to be the same name as the publisher.
January 3, 2014 at 2:23 pm
You might be running out of restore threads on the mirror and need to enable trace flag 1485. The following is an excerpt from a SAP on SQL whitepaper (page...
December 30, 2013 at 2:24 pm
If you have 1 physical disk in a machine, that disk can logically be partitioned into separate "disks" like a C drive and a D drive. It's still only 1...
November 7, 2013 at 2:35 pm
Just replace Domain\SecurityGroup in the query below with the actual domain and security group you want to know about.
EXEC xp_logininfo 'Domain\SecurityGroup','members'
November 7, 2013 at 2:26 pm
I would echo what liteswitch said and suggest creating a test job with a simple step like SELECT '1'
so you can run the job anytime. I would also...
November 1, 2013 at 9:41 am
You need to specify the remote server name. The code you are using is trying to connect to the named instance MYSQLSERVER2008 on the local host "sqlcmd -S .\MYSQLSERVER2008". It...
October 30, 2013 at 2:17 pm
You will also need to restart the SQL Agent in order for the new mail settings to take affect.
October 30, 2013 at 2:07 pm
Viewing 15 posts - 76 through 90 (of 501 total)