Forum Replies Created

Viewing 15 posts - 48,196 through 48,210 (of 59,064 total)

  • RE: File System Task

    Ummm... will that create the sub-directory if it doesn't already exist?

  • RE: Automatically Generated Numbers

    Heh... just reverse the IDENTITY number...

  • RE: Query with a column of concatenated values

    lduvall (9/19/2008)


    I figured it out on my own! In fact, I used the article Matt posted...

    That's good feedback... thanks. I always wonder if articles like that help folks. 😀

  • RE: Query with a column of concatenated values

    tbeadle (9/11/2008)


    Hello,

    Concatenating strings is no problem but you may have to get a bit creative to avoid the limitations on text lenghts.

    Look at the spec difference between varchar's...

  • RE: Cleaning city name

    Search for "CASS CERTIFICATION" software... it does the whole thing from womb-to-tomb and provides updates as new address information comes available from the US Postal Service. I believe "ZP4"...

  • RE: Group by Date....

    b_boy (9/19/2008)


    sorry guys but my own syntax worked perfect for me, tried yours but got incorrect results....

    If you used a conversion to group by date, then you probably did it...

  • RE: Organizations With No DBAs

    arbarnhart (9/19/2008)


    Jeff Moden (9/19/2008)


    p.s. I also want to say that when I say "developers", I'm talking about the greater populous... there are some individual developers that I'm NOT including...

  • RE: Organizations With No DBAs

    p.s. I also want to say that when I say "developers", I'm talking about the greater populous... there are some individual developers that I'm NOT including in my rant,...

  • RE: Organizations With No DBAs

    Heh... most of the companies that have hired me to fix things, have rooms full of developers that hate "old style DBA's" or think they know things like what Agile...

  • RE: Thank You All

    A very hearty congratulations! This is really cool feedback and you need to be very proud of yourself, as well! Yes, the information is here and there are...

  • RE: Invalid views

    rbarryyoung (9/18/2008)


    Actually it's much easier than that and you don't need any evil Cursors either:

    Declare @sql as NVarchar(MAX)

    Set @sql = ''

    Select @sql = @sql + 'EXEC sp_refreshview ''['

    ...

  • RE: finding file existence

    It's even easier than that...

    SELECT *

    INTO #MyFiles

    FROM OPENROWSET('SQLOLEDB','Server=(local);Trusted_Connection=Yes;Database=Master',

    ...

  • RE: How to trim the decimal places?

    Much simpler than all that... check out the ROUND function or the STR function (which also right justifies if you need that for a report or file). 🙂

  • RE: Row to Column conversion

    Heh... and the PIVOT operator is slower and uglier than the CrossTab that Chris showed. Think not? Check it out...

    http://www.sqlservercentral.com/articles/T-SQL/63681/

  • RE: store output of stored proc into temp table

    Ninja's_RGR'us (9/18/2008)


    Yes you need to create it first, including column definitions.

    Heh... not exactly true...

    SELECT *

    INTO #MyHead

    FROM OPENROWSET('SQLOLEDB','Server=(local);Trusted_Connection=Yes;Database=Master',

    ...

Viewing 15 posts - 48,196 through 48,210 (of 59,064 total)