Forum Replies Created

Viewing 15 posts - 54,916 through 54,930 (of 59,067 total)

  • RE: How to monitor long running jobs that don''''t finish running

    Ummm... "monitoring" is great... helps you identify crap code that takes days to run without finishing... but, unless you take the next step, you might as well not waste your...

  • RE: shrink down database during copy

    quoteHi, I want to copy production database to a testing server.  The production database is too...

  • RE: Pivot Cross Tab for Text Results

    Wouldn't have a problem at all if the HD's were labeled correctly as HD1, HD2, HD3, etc

  • RE: SLOW Update

    Here's the corrected query... since I don't have the tables available that you do, I'm unable to test it, but it should be close.  Combine that with the suggestions others...

  • RE: SLOW Update

    Heh... damned straight it's slow... you've written it as you would in Oracle... you've used a "Correlated Subquery" in the SET clause and that means that the query must be...

  • RE: uploading excel document data to a table in sql server 2005.

    Unless the worksheet is protected against mistakes like adding an unexpected column or hitting the space-bar to "delete" data, you may get some wildly unexpected results and failures using Excel...

  • RE: Linked Server Performance

    You actually expect an Access ODBC driver to operate as fast as an SQL Server OLE DB driver when used against SQL SERVER?   ...

  • RE: Whitepaper for developers

    Heh... I have to laugh at what they call "best practices" for most performance issues... no where do they say "review all code for possible performance issues before it goes...

  • RE: writting a script to add PKs constraints on columns in many tables at once

    Can you post the code for your final solution, please?

  • RE: Date, Sum and SQL recursive

    Thank you for the feedback and I have a very high speed solution in mind... but I need to know what you want done with the data that I posted......

  • RE: cursor in trigger

    First, no need for a cursor in triggers... ever!  You can simply join to either the INSERTED table, the DELETED table, or both.

    Second, I recommend that you do NOT log...

  • RE: smart headers

    Ya gotta love those that don't even try the suggestions given... guess these "experts" can just look and see "bad code"

    I'm not sure...

  • RE: Creating tables in tempdb

    Last, but not least... security... everybody can make a table in TempDB... might not be true on the "given" DB for whatever user the sproc is logged in as...

    AND, TempDB...

  • RE: find data type of a field in a select

    No, pretty sure there's nothing built in... you'd have to do a SELECT INTO a temp table and then read the datatype from the columns something like this...

        ...

  • RE: Working with Datetime

    I agree with Rob and Alex... I'd also like to add that using something that you know "could" fail but hasn't so far (UDF_ID function) is a bit like sitting...

Viewing 15 posts - 54,916 through 54,930 (of 59,067 total)