Viewing 15 posts - 226 through 240 (of 372 total)
I have found the best way to determine if a very large table should have additional indexes is to see what is running against that table. If there is...
October 4, 2013 at 8:34 am
dogramone (10/3/2013)
I just use a concatenate and a right.So select right('00' + cast(1 as varchar) ,2)
I've used this method quite often. Simple enough.
Kurt
October 4, 2013 at 8:03 am
Jeff Moden (10/3/2013)
Steve Smith-163358 (10/3/2013)
I had often read about the...
October 3, 2013 at 1:39 pm
Although I have not actually tried it I did find an article that might help you out:
http://technet.microsoft.com/en-us/library/ms137656.aspx
Hope this helps.
Kurt
October 3, 2013 at 10:01 am
Steve Smith-163358 (10/3/2013)
thanks again for the replies.
At the moment, the process we have for dropping these tables does indeed run out of hours.
However, I've been tasked with rewriting it for...
October 3, 2013 at 9:43 am
If what you are doing occurs every so often, say, once a week, then consider creating a job that runs on the SQL Server Agent off hours. Additionally, if...
October 3, 2013 at 9:06 am
GilaMonster (10/3/2013)
Please take a read through this: http://www.sqlservercentral.com/articles/Administration/64582/
I agree, Gail's article has all of the details you need to know about managing transaction logs. Now if you are experiencing...
October 3, 2013 at 8:14 am
How often do you back up your transaction log? I have t-log backups that runs on frequencies of from 15 minutes to 1 hour.
Kurt
October 3, 2013 at 7:47 am
What is the recovery model of the database? If it is FULL then consider scheduling a transaction log backup to manage the transaction log.
Kurt
October 3, 2013 at 7:39 am
Jeff Moden (10/1/2013)
Kurt W. Zimmerman (10/1/2013)
kevaburg (10/1/2013)
Kurt W. Zimmerman (10/1/2013)
October 1, 2013 at 7:59 am
kevaburg (10/1/2013)
Kurt W. Zimmerman (10/1/2013)
October 1, 2013 at 7:12 am
I think the resolution is more a function of control. As a DBA restrict access to those developers who don't play by the rules. Make them come to the DBA...
October 1, 2013 at 6:08 am
I moved a VLD backup from New York to Denver, CO. I backed up the database and FTP'd it to the destination. It took several hours but it...
September 30, 2013 at 12:13 pm
I've been making it a practice to allocate 2gb of memory to the OS as a general rule. I have seen some random cases where SQL Server will overtake...
September 30, 2013 at 9:39 am
I have a tendency to over provision TEMPDB. For a machine that has 16 cores or less I will create 1 file per core. Over 16 cores I...
September 30, 2013 at 9:02 am
Viewing 15 posts - 226 through 240 (of 372 total)