Forum Replies Created

Viewing 15 posts - 58,876 through 58,890 (of 58,978 total)

  • RE: Common temp tables in procedures

    Not sure, folks, but I think the original question was about having temp tables with the same name running in stored procedures that run at the same time.  The answer,...

  • RE: Updating values in a table using ceiling

    You've made it a bit difficult on yourself... the following should do nicely and should do 70,000 records in something less than 10 seconds on a good server...

    UPDATE...

  • RE: BULK INSERT / TRUNCATE permission problems

    Yeah, Wayne has confirmed what I've heard... you can do some really nasty things through xp_shell.  Maybe you shouldn't go there.  Just create the BCP job in a batch file...

  • RE: BULK INSERT / TRUNCATE permission problems

    Of course, Microsoft documentation is always 100% correct

    What you may want to try, instead, is calling BCP using xp_shell... that is unless you...

  • RE: Avoiding cursors, but...

    Calvin,

    If your server is set to CONCATENIZATION OF NULL YIELDS NULL, then you will need either COALESCE or ISNULL unless you preset the variable to something other than NULL.

  • RE: BULK INSERT / TRUNCATE permission problems

    Richard,

    I believe that, with SQL 2000, there is a BULK INSERT role where you no longer have to grant a user "SA" rights just so they can use the BULK...

  • RE: Date error in Stored Procedure

    Cedar72,

    You've been bitten by the "time" element of datetime data types... try this as your WHERE clause...

    where datesold between DATEADD(dd,0,DATEDIFF(dd,0,@StartDate))
                       AND DATEADD(dd,0,DATEDIFF(dd,0,@EndDate))+'23:59:59.997'

    The DATEADD/DATEDIFF thingy accurately removes...

  • RE: Concat separate name fields into one

    Jana,

    Yeah, before you say anything, I see the bug, too.  Here's the corrected code... had to assume that you would have something in first name and last name fields to...

  • RE: Concat separate name fields into one

    Jana,

    Here's a real simple solution using the power of a NULL being returned when a NULL is concatenated... the key is to concatenate each space or comma with each name...

  • RE: renumbering lines

    Regardless of which method you use to do the renumbering, if Col1 is an IDENTITY column, you would need to include the following line just before the update...

    SET IDENTITY_INSERT tablename...

  • RE: Converting int to char with 0 Fill

    I dunno... David Burrows' solution doesn't use CONVERT or any form of overt concatenization (+) and may be faster as a result.  In the beginning, I used LEN, then graduated...

  • RE: Try this Quick T-SQL Quiz!

    Dummy me... missed the formatting thing... thought he didn't understand the "ELSE".  Nice job, Rockmoose!

  • RE: need help with query

    Rockmoose,

    >We do have a problem if they have breaks around midnight .. though

    Yeah, I had the same problem and decided that it wasn't so bad to use a temp...

  • RE: serious date problem (reply cannot post response)

    Sukhoi,

    I can't post back to your original post, either... I did take a look at the code you posted and all I can say is ...

    Daaannnnng that's a lot of...

  • RE: Dynamic sql to be put in a table

    Not sure from your description of the problem but I think an INSERT statement would probably do... since you didn't mention which 3 parameters you wanted to save nor which...

Viewing 15 posts - 58,876 through 58,890 (of 58,978 total)