Viewing 15 posts - 76 through 90 (of 206 total)
GilaMonster (4/13/2011)
File size includes free space in the DB. Backup size does not.
It's trivial to get the file size without free space.
You do need the free space to plan for...
April 13, 2011 at 12:17 am
Just by curiosity,
why do you track backup size instead of data file size?
April 12, 2011 at 11:58 pm
Lowell (4/11/2011)
April 12, 2011 at 8:23 am
For the tablock hint, you can use the -h option in bcp.exe, so you get something like this:
bcp "dw_load.dbo.DW_Fleet_Load_Progress" in f:\DW_Fleet_Load_Progress.dat -T -c -q /b 25000 -h "TABLOCK"
If rebuilding the...
March 21, 2011 at 1:22 am
If you keep the clustered index (to avoid having to rebuild it later), try setting a batchsize (like 10000) in your bcp in, to keep your log from growing too...
March 18, 2011 at 8:59 am
Yes it's rebuilding all the non-clutered indexes.
Rebuilding the indexes by hand would remove the logging (it would only log which pages have been allocated but that doesn't take much room).
March 18, 2011 at 12:52 am
You could try different things:
Remove all indexes beside clustered and on pos-date
Try smaller batches (100, 1000, 5000, 10000) and see which is fastest (on some system i had much better...
March 17, 2011 at 8:19 am
You need to be local admin to start the setup of sql server.
It won't let you go further without it.
February 28, 2011 at 7:45 am
How do these databases gets loaded with data?
If it complains about a full backup missing then the database might have been switched to simple recovery and then back to full...
February 28, 2011 at 7:01 am
Hot standby is a server that will automaticaly failover if the primary server fails. You can get this using synchronous mirroring + witness (not sure if a cluster can be...
February 17, 2011 at 6:36 am
Svs2010 (2/8/2011)
so far we are manually analyzing these factors using SQL profiler, do you suggest any other tool to perform it automatically and...
February 8, 2011 at 11:38 pm
The common problem on shared server are other applications eating all the CPU or the disks.
You need to monitor your current sql server and keep the data for reporting for...
February 8, 2011 at 3:25 am
First of all, 60GB is not a VLDB, it's a regular DB for today's server.
The easiest way to make this DB available on another server is a simple backup/restore.
With a...
January 12, 2011 at 1:15 am
It might just be quicker to scrap the cluster and reinstall it (make sure you don't erase all your db files).
January 11, 2011 at 6:51 am
SkyBox (1/5/2011)
I am downloading the 14 day trial of SQL Diagnostic Manager as I type. Redgate will be second on my list once the trial expires.Thanks!
Could you post some...
January 6, 2011 at 1:13 am
Viewing 15 posts - 76 through 90 (of 206 total)