Viewing 15 posts - 361 through 375 (of 486 total)
On the other hand, many-to-many join tables, for example, I would never put a identity in again. (I did, several times, when I new to databases. Regretted it later every...
February 11, 2008 at 12:36 pm
When Newfoundland (NF) changed it's official name to Newfoundland and Labrador (NL), the use of a natural key meant a 25 million row update, and weekend work to do it.
I'd...
February 11, 2008 at 8:17 am
Sergyi: Bwahahahaha! Spot on!!! It's an even safer bet when it's the users who come saying, "It'll never need to {fill in whatever here}".
Another reason to put business logic in...
November 1, 2007 at 8:19 am
Well, it looks like bad app code: there were several hundred open transactions, and the server was simply chocking on the load.
Adding commits after read operations solved the problem.
October 11, 2007 at 9:41 am
It is most assuredly all about databases. One thing to come out of my experience with them -- apart from a rewarding career -- is an awareness of just how...
August 29, 2007 at 10:41 am
Jeff/Guru,
I only use SELECT * with [NOT] EXISTS. Should I be replacing the * with some indexed column (preferably one in the WHERE clause)?
P
August 9, 2007 at 6:51 am
Don't know how to make the .exe, but if you have a list of servers, generate the call to the batch file with parameters, something like:
SELECT 'MyBatFile.Bat ' + Servername
FROM...
July 26, 2007 at 7:14 am
Feasible superconductivity, i.e., at normal temperatures and using affordable materials, and the brain-machine interface, are the two technologies I want to see happen, post-haste!!
As for the lie-detection technology, I think...
June 26, 2007 at 7:51 am
Just for starters, here's the table to hold the responses:
Survey_Id Question_Id Response_Id
1102 1 ...
June 26, 2007 at 7:49 am
So, I did a little experiment: I copied the calls to the stored procedure from Profiler -- 13 calls, with the parms varying slightly, but all based on the same...
June 11, 2007 at 9:29 am
If you're only looking for the existance of a single file, xp_fileexist might be the simplest way. It's undocumented, but you can get some details here:
xp_fileexist "c:\autoexec.bat"
File Exists File...
June 11, 2007 at 6:39 am
Sometimes it's not the SQL server you need to worry about -- it would have been fine in the scenario you presented.
But think of the network traffic #1 would...
June 6, 2007 at 9:08 am
Furthermore, suppose you were really clever, and going with option #1, you loaded up the info only once, when the user first starts the app, rather than each time they...
June 6, 2007 at 7:12 am
What does the data in the table represent?
If a row can be duplicated, what does that mean?
i.e., if you say it in words, and it still makes sense, then...
May 31, 2007 at 6:57 am
Viewing 15 posts - 361 through 375 (of 486 total)