Forum Replies Created

Viewing 15 posts - 20,521 through 20,535 (of 22,202 total)

  • RE: no lock table or row when update transaction

    Are the updates and the reads against the same data? Before you do something drastic (the very next post is probably going to suggest using a query hint on the...

  • RE: passing variable and value

    Lots better.

    If nothing else, instead of dynamic queries, use a table valued function to pivot your comma delimited list into a table and then join against it. It's not always...

  • RE: DatePart Function

    Use Modulo 4 and Modulo 6 to limit the values to quarterly & every six months. Of course, you can only use June & December for the six month breaks.

  • RE: Poor Performance with Views

    Parameter sniffing?

    Or, if we've got a procedure that consists of views, calling views, calling views... bad execution plans?

    Look at the execution plan when it performs badly and when it...

  • RE: How to update table having repeated values...

    svhanda (4/30/2008)


    Hi..

    I had problem in updating a table ...

    My query is suppose there is table like

    EMP_ID Comp_ID

    100 ...

  • RE: Create link between database

    There is no way to "link" databases in SQL Server so that you can have cross-database referential integrity. Period. End of Story.

    However, you could write a trigger that will validate...

  • RE: server slows after a couple hours

    Just run "File", "Export", "Script Trace Definition", "SQL Server 2005" and you can define the file from there. Attach it to a message (cause posting it would be ugly).

  • RE: server slows after a couple hours

    Wild.

    That's sure a surprise that you shouldn't run trace in production... Since I've got it running off & on on most production servers and I have yet to see...

  • RE: IT salary is going down !

    We carried straight jackets... That's all I'm going to say about that.

  • RE: Sharing data between two databases

    Short answer: it depends.

    Slight longer answer: When looking at a system like this, you have to decide, is it a single integrated system or a series of apps that have...

  • RE: Source data contains inserts and updates

    OK.

    Then without details... I think the insert & update is better.

  • RE: Indexes & tuning

    I agree. You should minimize what is maintained there to only what is needed to run the processes that move the data in & out. Assuming it's not also used...

  • RE: Database Engine configuration

    Were you answering someone's question?

  • RE: Indexdefrag

    He's right. With very, very few exceptions, every table should have a clustered index. Further, every table should have a primary key and that constraint can be clustered (since it...

  • RE: Source data contains inserts and updates

    Kevin Durham (4/29/2008)


    I have demographic data in several tables in production with IDKey being the unique identifier. Daily data loads include new records and updates. Basically what I need to...

Viewing 15 posts - 20,521 through 20,535 (of 22,202 total)