Forum Replies Created

Viewing 15 posts - 21,451 through 21,465 (of 22,202 total)

  • RE: Error Serverity

    It simply gives you an indication whether the error is informational, really important, fatal to a connection or fatal to the server. See the reference linked above for details.

  • RE: A Welcome Delay

    I went and read the original message. It's whining, pure and simple. I then read as many of the comments as I could stomach. It's kind of freaky how attached...

  • RE: A Welcome Delay

    The real problem is, I am a jerk. So I have to try to reduce the damage as much as possible. Emails are dangerous because, even a well crafted message...

  • RE: Foreign keys good or bad practice?

    Sorry, I wasn't trying to upset anyone. I'm serious. I screw up all the time. The checks I can put in place to prevent my own errors will help those...

  • RE: Must declare the table variable "@tableName".

    In order to select FROM something, it needs to be a table valued object (table, view, function, temp table, table variable, OPENXML, XQuery). You can run a query against a...

  • RE: Will SAVE TRANSACTION help

    What about literally breaking the query up into smaller queries? You can call them all from a single wrapper query. You get more discrete, tuneable execution plans and you can...

  • RE: Foreign keys good or bad practice?

    P Jones (11/30/2007)


    There's considerable power in .NET datatables, datarelations, foreign keys,primary keys and constraints that can be all done programmatically.

    Works like a charm too... until the first time a request...

  • RE: lock database for access

    We're using this method and the same idea with whole databases in some of our datamarts. It works well to minimize down time. Best of all, if there is a...

  • RE: A Welcome Delay

    Having sent a few e-bombs in my time, I try hard to look at what I've written before I hit send if emotion is an attachment. Usually, if I'm completely...

  • RE: lock database for access

    Oh, you'd have to drop the connections for the ms that the query takes, but, based on the process you've defined, you're slapping the users around at some point no...

  • RE: lock database for access

    How about sacrificing a little disk space;

    Create the new table with a different name

    load the new table

    rename the old table

    rename the new table.

    drop the old table

    The down time is completely...

  • RE: Adventureworks db

    Andras Belokosztolszki (11/29/2007)


    You can download it from Microsoft's Codeplex site http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx?ReleaseId=4004

    Do read the instructions (after the install you will need to attach the extracted database files, but this is detailed...

  • RE: Adventureworks db

    You can get Adventureworks through CodePlex.

    The 2005 version is located here.

  • RE: Add same foreign key constraint_name to more then one column

    You've got a slight syntax error. Your code should look like this:

    CREATE TABLE BATCHES_LOT_DETAILS

    (

    [BATCHNO] varchar(15)

    ,[CALCULATED] char(1)

    ...

  • RE: OpenXML and IDENTITY-Columns

    That last error sounds like you either aliased the table and then referred to it by name or that you dropped the table prior to that part of the script...

Viewing 15 posts - 21,451 through 21,465 (of 22,202 total)