Viewing 15 posts - 1,306 through 1,320 (of 2,897 total)
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
ejbatu1 (8/9/2010)
August 9, 2010 at 10:15 am
I'm a little late to this thread, but since this is live data, you should back up the table first so you can recover in case something goes wrong. If...
August 8, 2010 at 11:31 am
Jim McLeod (7/21/2010)
I am worried about a 15 GB database with a 100 GB log file! You may want to look into log maintenance and recovery models.
I think he's...
July 21, 2010 at 5:28 am
Viewing 15 posts - 1,306 through 1,320 (of 2,897 total)