Forum Replies Created

Viewing 15 posts - 57,976 through 57,990 (of 59,066 total)

  • RE: Can anyone recommend a good performance tuning tool?

    At the risk of sounding a bit snippy (don't mean to)... the best performance enhancement tool is your brain.  You've already isolated which procs are running slow... look for and...

  • RE: Eliminating Cursors

    Absolutely agree on the proper use of a correctly indexed temp table.

  • RE: Round Up Function

    Jimmy...

    Can't use just 60... that would imply integer math.  It has to be 60.0 to imply that it's a float calculation with decimal places.  I also believe that "value" is...

  • RE: Determine time of last reboot

    Ack... my fault... I'm so data-centric that I sometimes forget that SQL Server has to live on a Windows server (except for MSDE, Development Edition, etc).

    Nope, I don't know how...

  • RE: Eliminating Cursors

    Nice code... just a bit of food for thought, though... correlated sub-queries with triangular joins (a<b) can be as bad or worse than cursors on large tables.  Not advocating cursors...

  • RE: Hepl with Shortlist Tables

    I'll bite ... what is "E&OE"?

  • RE: DTS and MSDE

    It's not free but you could buy SQL Server Developer's Edition for about 64 bucks if you look around.

  • RE: stored procedure timing out

    Noeld probably hit the nail on the head... the server should be much faster than your desktop machine for multiple reasons...

    1.  Memory... chances are your desktop computer has between 512Mb...

  • RE: saving and retrieving jpeg or bmp files?

    Mick,

    Yes... you can save pictures in IMAGE datatypes... but it's a really bad thing to do for more reasons than I'd care to post here...

    Most folks have seen the light...

  • RE: Determine time of last reboot

    TempDb is rebuilt from the ground up on a reboot... this does the trick...

     SELECT CrDate AS LastRebootDate

       FROM Master.dbo.SysDatabases

      WHERE Name = 'TempDB'

     

  • RE: Character arrays in T-SQL

    Vamsi,

    Although there's nothing specific about using character arrays to process the W, o, r, d, s, could you be a bit more specific about what you are trying to do?  There's...

  • RE: Help with BULK INSERT?

    If the suppliers of the data have agreed to provide the data with correct row delimiters,

    I guess I don't need to do much.  Too bad... I was "dying" to...

  • RE: Help with BULK INSERT?

    Scott,

    Post the first 10 records of data (including the header) and let me take a crack at it tonight for ya...  I think there may be a couple of ways...

  • RE: Create Cursors using Dynamic Sql

    Prakash,

    Serqiy is, although a bit brusk, still absolutely correct.  Why do you need a cursor at all?  And building one dynamically is like the worst of two worlds.  Why can't...

  • RE: Eliminating Cursors

    Thanks, DC and Ieea,

    I always thought cursors were a part of SQL Server... didn't know they were actually added as a "feature" at...

Viewing 15 posts - 57,976 through 57,990 (of 59,066 total)