Viewing 15 posts - 391 through 405 (of 482 total)
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
Robert,
Another good day, I learned something new (and useful).
Thanks!!
P
February 21, 2007 at 8:28 am
Multiple statements in IF / ELSE need to be wrapped in BEGIN...END
February 20, 2007 at 9:41 am
How many users? How educated, as in knowledge of SQL and DBs, are your users? How big is the DB? (Think about it: forget one join clause, and the query...
February 19, 2007 at 7:49 am
Couldn't you then run into the problem of 2 trans beginning at the same time, each getting the same new id number?
February 16, 2007 at 12:51 pm
Viewing 15 posts - 391 through 405 (of 482 total)