Viewing 15 posts - 5,116 through 5,130 (of 5,841 total)
How much free space is in the database? Are you allowing the database to grow using autogrowth or are you proactively sizing the database? If the former, double...
June 20, 2008 at 8:16 am
The server is obviously underpowered for what it is being asked to do. Period.
Having said that, I would go ahead and try the /3GB switch IF you...
June 20, 2008 at 8:13 am
I also believe that SELECT INTO #tmp... will be a minimally logged evolution whereas INSERTing into an already created temp table will be fully logged and thus less performant.
You CAN...
June 20, 2008 at 8:06 am
The SQL Server MVPs beat Microsoft up before and during the MVP summit in April. That and many other forces combined to make them realize that they had to...
June 20, 2008 at 7:53 am
onlo (6/20/2008)
Thanks for your reply, but could you give examples of what you said : SHA1 hash of the unencrypted value ? What is that ?
From my earlier post: ...
June 20, 2008 at 7:41 am
A screenshot or two could be helpful here too. A picture is worth ...
June 20, 2008 at 7:36 am
My advice is to never use DTA at all!! I have seen it do AWFUL things to databases. Well, actually that works in my favor since I get...
June 19, 2008 at 9:20 am
Here is the Bible on deadlock troubleshooting: http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
It is certainly conceivable that page lock escalation is involved in your problem. Perhaps you can set all indexes back to...
June 19, 2008 at 9:15 am
Andras Belokosztolszki (6/18/2008)
indraprakash (6/18/2008)
But this is not the solution of my query. I want to know how to delete dulicate records without using any new table or any add any...
June 19, 2008 at 9:12 am
The main problem here is that you can never benefit from index seeks with encrypted columns. Thus performance is going to be suboptimal. To get around this you...
June 19, 2008 at 9:09 am
Take a look at ApexSQL Edit. Among its many incredible features is very nice source code control integration. Tell them TheSQLGuru sent you and you can pick up...
June 19, 2008 at 8:39 am
I strongly encourage everyone who wishes to do so to write "more readable/maintainable" code that involves cursors - and my email address is kgboles@earthlink.net. Keep that handy so you...
June 16, 2008 at 3:56 pm
Not sure you can use that as a basis for avoiding cursors though. There have been many more bugs fixed (and likely many more exist) where set-based queries are...
June 16, 2008 at 8:53 am
Just to make sure everyone understands here, LEAST bad in this case still means greater than 1 ORDER OF MAGNITUDE greater runtime! The fastest TSQL cursor took 13.917 seconds...
June 16, 2008 at 7:59 am
Wilfred van Dijk (6/16/2008)
June 16, 2008 at 7:17 am
Viewing 15 posts - 5,116 through 5,130 (of 5,841 total)