Forum Replies Created

Viewing 15 posts - 361 through 375 (of 486 total)

  • RE: The Identity Debate

    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...

  • RE: The Identity Debate

    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...

  • RE: No Business Logic in the Data Layer....

    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...

  • RE: SQL EM freezes

    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.

  • RE: Sheath the Talons

    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...

  • RE: SQL 2000 - Performance suggestions

    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

  • RE: Create exe file for n number of scripts

    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...

  • RE: Future Technology

    I think they call this "Second Life"...

  • RE: Future Technology

    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...

  • RE: Database structure question

    Just for starters, here's the table to hold the responses:

    Survey_Id Question_Id Response_Id

    1102 1 ...

  • RE: Strange behaviour

    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...

  • RE: Script to tell if a file with .BAK extension exists

    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...

  • RE: Overhead for Database calls (Procs,Views Etc) vs. Returned Data

    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...

  • RE: Overhead for Database calls (Procs,Views Etc) vs. Returned Data

    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...

  • RE: Can anyone think of a good reason for NOT having a PK?

    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...

Viewing 15 posts - 361 through 375 (of 486 total)