Forum Replies Created

Viewing 15 posts - 57,796 through 57,810 (of 59,048 total)

  • RE: Need help finding stop time

    Here's a slightly different take...

    Anything that has a StartTime with no matching StopTime is not reported.

    Anything that is still stopped, has a stopped duration up to the current time.

    It's about...

  • RE: How to put the result of different rows into one column?

    Gabor,

    I know you only have read access but can you convince the DBA to install a function for you because that's the best way to lick this problem...

  • RE: Finding a value within a value using a like join query

    Cimbom,

    The other posters and you are correct... pure crap on the part of the designers of the system.    Unfortunately, you sometimes have to...

  • RE: Convert Varchar to datetime

    Wasn't an attack on your post Julian (I shouldn't have made things so bold, "sounds" like I'm yelling ).  Nope... I was just...

  • RE: create fixed width file using BCP

    Dinakar,

    Kenneth's suggestion is an excellent one but, if the Comments column is VARCHAR or NVARCHAR, you don't need to create the UDF... just create the view with a small modification.... should...

  • RE: How do I force FLOAT / VARCHAR values to be INTs in an insert statement?

    No need to enter the dark and slow realm of coversions to characters...

    DECLARE @vChar VARCHAR(20)

        SET @vChar = '1458.00'

     SELECT CAST(CAST(@vChar AS MONEY) AS INT)

  • RE: Convert Varchar to datetime

    Yep... but won't work here... the original poster said the date formats where in a mmddyy format... here's what BOL says about the "Unseparated String Format".... I've highlighted the important...

  • RE: week list

    Tammy, 

    Peter's solution, as usual, is spot on. His ingenious crosstabs return the sequence of numbers of 0 through 15 in less than a heartbeat and then he applies 0-11...

  • RE: Can I do this using a ''''self-join''''? Please Help.

    I just can't bring myself to use a correlated subquery...

  • RE: Validating Phone Numbers

    No need for a function if you want to permanently correct the data...

     UPDATE yourtable

        SET phonenumbercol = REPLACE(

                             REPLACE(

                             REPLACE(

                             REPLACE(

                             REPLACE(

                             phonenumbercol

                             ,',','')

                             ,'-','')

                             ,'.','')

                             ,'(','')

                             ,')','')

  • RE: crosstab

    Are you suggesting that RAC is better than Reporting Services (which is free, by the way)?

  • RE: SQL 2000 only addressing 8 GB of avail 16 GB memory...why?

    Don't ya just love Microsoft?  Fixes for their fixes!!  Thanks for the tip, Daniel and welcome to SQLServerCentral.com.

  • RE: Monthly Metric Report

    My DBA is the one who set it up so I'm not sure... but I'll find out...

  • RE: Convert Varchar to datetime

    Yep... you can do that... like you said though, the automagic century-cutoff should do the trick but even that can be wrong if these dates are DOB's.

    The slashes were an...

  • RE: Pivot Report

    Oh yeah... almost forgot... if you want to see the code the script above generates, just change the "EXEC" to a "PRINT". 

Viewing 15 posts - 57,796 through 57,810 (of 59,048 total)