Forum Replies Created

Viewing 15 posts - 48,046 through 48,060 (of 59,064 total)

  • RE: RBAR update/inserts

    Jack Corbett (9/25/2008)


    Chris Harshman (9/25/2008)


    I'm suprised that Jeff Moden hasn't jumped all over this. 😉

    Based on some of Jeff's other posts, he is pretty busy with work right now,...

  • RE: parsing example

    marius.draganescu (9/25/2008)


    That is what I was suspecting, too... I guess I will have to do this in VB, process one line at a time.

    Thanks you very much for your opinion!

    Marius

    Heh......

  • RE: rounding of decimals

    skottikalapoodi (9/26/2008)


    MY DATA TYPE IS DECIMAL ONLY.

    ACTUALLY WHAT I WANT IS, I DON'T WANT IT TO BE ROUNDED

    DECIMAL WHAT??? What is the actual datatype of the column...

  • RE: generic stored proc/function to convert columns to concatenated rows

    Heh... "Loop" and "Lose" are both 4 letter words beginning with "L". 😛 Please see the following article for how to perform concatenation and some of the pitfalls to...

  • RE: Passing a list of integers to use in Stored Procedure

    By the way... the methods shown in the articles are a bit faster than the XML methods and can also be used in SQL Server 2000. 😉

  • RE: Passing a list of integers to use in Stored Procedure

    It's super simple to pass a single dimensional array to SQL Server as a comma delimited string and then to split it into a temp table or table variable using...

  • RE: SP_Cursor

    Those sprocs are the ones that SQL Server runs behind the scenes for nearly every stored proc. The real problem is not those, but the query the query that...

  • RE: MSSQL 2005 performance issue

    Do you have any SQL Server Agent jobs that are failing? I've found that, depending on what they do, they can leave open connections that hold on to resources....

  • RE: Convert datetime to just time (only hour)

    BWAAHAA! No need to do the Polka with Convert, folks! 😛 Read the original post!

    I have one [font="Arial Black"]datetime [/font]column named Hours in SQL Server Table1...

    Notes4we, I recommend...

  • RE: Database Size and Available Space

    Just remember that TRUNCATE doesn't work in the presence of foreign keys. I believe they can be disabled rather than dropped, though.

  • RE: To give my process high priority in SQL server 2000

    prasanna_pathangi (9/25/2008)


    Is there a way to tell MS SQL that it should give higher priority to a query?. that is, i want my query to execute even when another process...

  • RE: Concat String of More than 30000 Chars

    It doesn't matter if you have a max of 8000 characters for a variable, or not. You cannot print more than 8000 characters in SQL Server in a single...

  • RE: Size limitation of variable in query analyzer

    Actually, there IS a limit on the size of stored procedures and batches... it's (65,536 * Network packet size) for batches and the lesser of batch size or 250 MB...

  • RE: SQL studs and studettes!!!Please recommend something on this...Thx

    Yes... there's a huge problem... you have a double nested correlated subquery in the SET clause... and THAT will be executed, in it's entirety, once for every row qualified by...

  • RE: Date Manipulation

    Roger Abram (9/27/2008)


    Thanks! I get trying to use the DATEADD function again in the same line.

    Roger

    ... and that will work, also... although it's a bit uglier...

    DECLARE @date DATETIME

    SELECT @date...

Viewing 15 posts - 48,046 through 48,060 (of 59,064 total)