Viewing 15 posts - 1,816 through 1,830 (of 3,011 total)
Tara Kizer posted a stored proc on her blog for REORGANIZE (INDEXDEFRAG) or REBUILD (DBREINDEX) in SQL 2005. She has put a lot of work into working with the...
May 7, 2009 at 3:13 pm
This code will work the same no matter what the setting of DATEFIRST is.
create table #t (
order_id int ...
May 5, 2009 at 8:30 am
Paul White (5/2/2009)
Michael Valentine Jones (5/2/2009)
May 2, 2009 at 8:13 pm
Paul White (5/1/2009)
Michael Valentine Jones (5/1/2009)
Backup and restore by filegroup is just a way to spread...
May 2, 2009 at 11:24 am
troy.hodge (5/1/2009)
Our...
May 1, 2009 at 5:17 pm
Since most of your tables are heaps (no clustered indexes) you may run into severe performance issues with you application that you cannot fix without either reloading the table completely...
May 1, 2009 at 12:52 pm
He posted the code for a lot of these functions in the Script Library forum on SQLTeam as user Igor2004
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=51289
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=51291
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=51290
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=51288
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=54333
You can search the Forum at this URL to see if...
April 30, 2009 at 9:27 am
I saw it in the theater at an afternoon showing on opening day.
I remember setting close to a stew bum who kept getting woken up by the movie. It...
April 30, 2009 at 8:15 am
The problem with shrinking in large chucks is that everything is all or nothing. If you have to interrupt it, the file ends up the same size.
I have never...
April 28, 2009 at 9:01 am
Tell the auditors that they will have to supply their own server(s) because Access will cause problems on the production server
They can restore the prod DB onto their server and...
April 28, 2009 at 12:42 am
Being interested in about 30 people out of 1,000 resumes sounds about right. I got about 100 resumes from headhunters the last time we were hiring, and I actually...
April 24, 2009 at 2:51 pm
usman.tanveer (4/24/2009)
Here is the script for the problematic table, 2 indexes on the table, and 2 queries that are coming for this table, and these...
April 24, 2009 at 1:39 pm
You can alter the way the default read_committed isolation level works by setting the database option read_committed_snapshot on. The result would be that snapshot isolation would be used by...
April 24, 2009 at 1:32 pm
Greg Charles (4/23/2009)
VG (4/23/2009)
April 23, 2009 at 3:56 pm
You have to restore into STANDBY mode, instead of RECOVERY or NORECOVERY. Check the syntax of the RESTORE command in SQL Server 2005 Books Online.
There are limitations:
1. You have...
April 23, 2009 at 1:11 pm
Viewing 15 posts - 1,816 through 1,830 (of 3,011 total)