Viewing 15 posts - 1,306 through 1,320 (of 2,900 total)
Maybe you didn't have any free space in your log file, so there was nothing to shrink. What value was in "Available Free Space" ??
When I find I need to...
August 31, 2010 at 8:19 am
We've got a few instances of large inserts occuring during production hours that cause blocking. I'm looking at breaking them up into smaller insert batches and/or dropping & recreating the...
August 30, 2010 at 6:02 am
Thanks for the reply. I should clarify that I'm not using a loop. It's just the 1 statement above. The 25,000 batch size is specified in the properties tab in...
August 30, 2010 at 4:45 am
Jeff Moden (8/29/2010)
It's easy... it's like anything else in computers... stuff comes in,
gets processed, and is output in one form or another.
The input & output I understand....
August 29, 2010 at 1:39 pm
Have you determined you need an extra drive ? If the log file grew to 100 G, and other junk got placed on the drive, then cleaning up...
August 27, 2010 at 2:22 pm
It ran for quite a while with no issues. Perhaps the "order by" in step 1 adds to the load on TEMPDB. I did find that TEMPDB is huge today,...
August 27, 2010 at 8:34 am
LutzM (8/26/2010)
August 26, 2010 at 4:12 pm
I think that gives me the right dates, but is there a way to add more fields to the select ? Seems like I have to add them to...
August 26, 2010 at 2:39 pm
If you restart SQL, you may free up some space from Tempdb that will at least let you function.
Why did you run out of space ? Are your log...
August 25, 2010 at 10:34 am
Could you use TRUNCATE-INSERT or replication to move the data without dropping the tables ?
Or you could probably use the results of sp_lock to choose the spids to kill.
August 16, 2010 at 7:52 am
Did you take a full backup before shutting down ? That's always a good idea to do before making changes to databases, servers, configuration etc ... Then you could...
August 11, 2010 at 1:51 pm
After you write your script to send the email, write the detail to a table so you can review it later in case you miss it. I have a very...
August 10, 2010 at 12:10 pm
Perhaps you could schedule a job to run every day, and when getdate = fiscalmonthstart + 1 you can start the job with sp_start_job.
August 9, 2010 at 2:56 pm
dba_neo (8/9/2010)
thanks,but we need script to shrink it every night in small shunks as we already have a reorg/rebuild job running every night
Isn't that also a waste of resources to...
August 9, 2010 at 10:22 am
Viewing 15 posts - 1,306 through 1,320 (of 2,900 total)