Viewing 15 posts - 391 through 405 (of 486 total)
Who said anything about optimizing? I described intermittent behaviour...
May 4, 2007 at 8:44 am
Not sure if any of what follows explains what you're seeing:
Have you looked at the execution plans on each of the boxes? Since prod is timing out, can you try...
May 2, 2007 at 8:05 am
I installed SQL2K on Win2K3 Server SP1 last week, which also had SQL2K5 on it.
Prior to install, I got the message that SQL2K SP2 AND below were not supported, please...
May 2, 2007 at 7:18 am
The other thing is, the function which runs against every row in a query amounts to row by row processing, something that could only be accomplished with a while loop...
April 30, 2007 at 6:44 am
I'll add one more vote to the DB per application.
We've centralized most of our lookups, and automated everything else, from creation to backups to transfers to security.
One other benefit...
April 20, 2007 at 8:23 am
Step 1: Get result set from server
Step 2: Run stored proc.
Until your browser asks for the new results, nothing has changed on your client. The row was deleted on the...
April 20, 2007 at 7:57 am
Not sure about SQL2005, but in 2000, you cannot Insert...Exec into a table variable.
April 5, 2007 at 7:55 am
Also, if/when you upgrade to a new server, all the old ids will not mean anything. You should probably use the object name instead.
March 30, 2007 at 7:52 am
No kidding!! I can see 1, 3, 4, and 5....
What is '13D5'? Why does it evaluate to 1300000?
March 5, 2007 at 7:08 am
Indices are allowed on #temp tables, and depending on the number of rows in the table, can dramatically affect performance.
Don't have a #temp table in one proc and call a...
March 2, 2007 at 8:35 am
Sorry about that, this treats less-than / greater-than symbols as HTML. I'll try that again:
SELECT CASE WHEN ISNUMERIC(Colname) = 1 THEN Colname
...
March 2, 2007 at 7:09 am
SELECT CASE WHEN ISNUMERIC() = 1 THEN
ELSE LEFT(, PATINDEX('%^[0-9]%', )-1)
END
FROM...
March 2, 2007 at 6:58 am
Since we're allowed to use QA and presumably access other DBs on the server, why not BCP in into a DB the list of customers, then use osql to run...
March 1, 2007 at 7:17 am
Yes, since I presume you don't want table locks because there is no "down time" to do the index maintenance.
In that case, you don't want slowdowns for both the...
February 23, 2007 at 1:54 pm
Questions / comments
1) How big is your DB? We are running 40DBs or so on an RAID 5 server, total about 15GB (not big). The server has *never* been defragmented....
February 23, 2007 at 12:33 pm
Viewing 15 posts - 391 through 405 (of 486 total)