Forum Replies Created

Viewing 15 posts - 21,586 through 21,600 (of 26,490 total)

  • RE: Error in differential backups

    Did you check the SQL Server Logs, not the SQL Server Agent Logs.

  • RE: Show MVP Status on forum posts

    Steve Jones - Editor (4/9/2009)


    GSquared (4/9/2009)


    duh duh duh - duh duh duh duh duh duh ...

    I got that right away, hmmm, what does that say about me?

    My kids wanted to...

  • RE: Moving data from one table to 3

    sward (4/9/2009)


    Hi Again,

    Ok, here it is, the sample code i gave you was a mini replication of what i need to do, the field names and stuff are diffrent but...

  • RE: Show MVP Status on forum posts

    GSquared (4/9/2009)


    duh duh duh - duh duh duh duh duh duh ...

    Hmmmmm ....

    Just doesn't seem to work that way.

    Here, this'll be better! (Attached)

    That was perfect!

  • RE: Show MVP Status on forum posts

    RBarryYoung (4/8/2009)


    EdVassie (4/8/2009)


    This would show to new users to SQLServerCentral that advice given by an MVP is potentially correct and they should take notice of what is said.

    Heh....

  • RE: Sample Data/tables

    Depends what kind of test data you are looking to create.

  • RE: Replace leading zeros

    cm62597 (4/8/2009)


    Thanks for you help....I guess I was having trouble telling you guys what I really needed. I could see it in my mind but hard to convey in...

  • RE: Many very large audittrace files created on my server

    Quickly, TraceID 2 is the default trace. You should never have more than 5 files and they don't get very big. the other trace, I suspect, is a...

  • RE: Replace leading zeros

    Mind readers we are not. If you needed the results of your query then that is what you should have told us up front instead of indicating that you...

  • RE: Replace leading zeros

    This:

    select SUBSTRING(Field1,PATINDEX('%[^0]%',Field1),10)

    FROM (

    SELECT '05380101010000' AS Field1 UNION ALL

    SELECT '05380101020000' UNION ALL

    SELECT '05380101101000' UNION ALL

    SELECT '05380011103000'

    ) TestData

    does not return the result set you indicated you required.

  • RE: Show MVP Status on forum posts

    In addition, not all MVP's are equal. We have seen solutions from MVP's that were not the best, and were actually of questionable value. It should be up...

  • RE: Many very large audittrace files created on my server

    Just checking, but did you also restart SQL Server?

  • RE: Replace leading zeros

    Not only that, but that is what I thought was needed from the start, but I got confused by the subsequent posts until I had the OP show what was...

  • RE: Replace leading zeros

    Try this:

    select reverse(cast(cast(reverse(substring(col1,8,4)) as int) as varchar(4)))

  • RE: Replace leading zeros

    I'm confused. Hightlight (BOLD) the values you are trying to extract:

    05380101010000

    05380101020000

    05380101101000

    05380011103000

Viewing 15 posts - 21,586 through 21,600 (of 26,490 total)