Viewing 15 posts - 91 through 105 (of 121 total)
I think the request is to identify where your SQL DB Backup files are located (hopefully you do backup your Databases). To backup the .mdf .ldf etc files SQL...
August 8, 2014 at 11:31 am
Nevermind I should have searched this forum:
http://www.sqlservercentral.com/blogs/sql_server_dba/2011/12/13/cpu-count/
July 25, 2014 at 1:32 pm
As long as you do not have the "REPLACE" parm in the restore command any current DB can not be overwritten as you will get an error message.
July 25, 2014 at 7:24 am
Also, you can use the sp_who2 proc to see IF another user has a connection to the DB.
You can either kill xxx (where xxx is the SPID of the user...
July 24, 2014 at 12:52 pm
July 18, 2014 at 7:41 am
We request and build a B:\ drive for SQL Backups and Perfmon capture data (server and SQL counters) as part of our "default configuration" for our Servers/VMs. The backup...
July 18, 2014 at 6:28 am
We use all threee: Commvault SQL Agent, LightSpeed and SQL Native Backups (with compression). An issue w/Commvault COULD be the backups are scheduled and may not run when you...
July 17, 2014 at 2:33 pm
Also, we format our SQL Drives with a 64k blocksize as the OS drive is formatted with the default 4k blocksize. We use separate drives for OS, SQL Data,...
July 17, 2014 at 1:36 pm
I use this script to estimate a diff backup size:
June 12, 2014 at 1:04 pm
Backup the DB,
Change the DB recovery model to simple,
Alter the DB to single_user mode,
Shrink in 5 GB "chunks".
June 12, 2014 at 8:37 am
How about 190 DB Servers, 218 SQL Instances, 3869 Databases and 57.9 TB of DB Storage (Today).
April 3, 2014 at 2:41 pm
Set the DB to single user mode then shrink the data file in chunks:
--Shrink file size in 5000 MB chunks
--/* -- Set DB in Single User Mode
ALTER DATABASE ABC_EDW_LANDING
SET...
April 1, 2014 at 8:14 am
Connect to the SQL/Instance in Management Studio. At the top after the Instance Name will be the Build number.
For example, SQL01ABC (SQL Server 9.0.5292). Go to...
March 5, 2014 at 1:30 pm
Yep still restarts with the same error message.
March 4, 2014 at 9:46 am
We usually run the diff restore with recovery. Then kick off your scheduled CheckDB job to verify all restored DB's are clean.
February 25, 2014 at 1:00 pm
Viewing 15 posts - 91 through 105 (of 121 total)