Viewing 7 posts - 1 through 7 (of 7 total)
Try using below script. Also you would need to change query option --> remove include column header in resultset from query output.
/**************************************************************************************************/
/*** Build Restore Scripts...
April 15, 2017 at 5:29 am
This script would require small modifications. I have modified the script so tht it would display restore script properly in output window. Also we would need to remove query option...
April 15, 2017 at 5:24 am
In SQL Server, DBCC commands use internal read-only database snapshots. These database snapshots are created on the same drive where the corresponding database data files are located. Database snapshots grow...
May 12, 2015 at 7:08 am
By mistake i mentioned mirror database. The steps mentioned would be executed on principle server on principle database. In case of T-log drive running out of disk space you've to...
May 26, 2013 at 7:47 am
Yes database which is residing on principle server. You've to take T-log backup multiple time to enable database for shrinking T-log file.
May 26, 2013 at 7:37 am
You can follow below steps
1. Run below script against db in mirroring on principle server.
DECLARE @DatabaseName VARCHAR(50);
SET @DatabaseName = 'Mirrored DB Name' --> Replace the mirror...
May 26, 2013 at 5:16 am
Hi,
It is recommended to grant the SQL service account the OS privilege "Lock pages in memory". By doing this you are preventing the OS from swapping SQL's memory pages to...
May 9, 2008 at 2:49 am
Viewing 7 posts - 1 through 7 (of 7 total)