Forum Replies Created

Viewing 15 posts - 4,201 through 4,215 (of 5,394 total)

  • RE: Find and Replace xml node

    It's not very clear to me.

    Try posting some sample data and the desired output.

    You could also try reading the article linked in my signature line, it will help you rephrasing...

  • RE: Are the posted questions getting worse?

    GilaMonster (6/14/2010)


    The Dixie Flatline (6/14/2010)


    I'm hearing vuvuzelas in my sleep.

    Me too.

    I haven't seen any matches yet, but tonight they're playing Italy vs. Paraguay.

    Vuvuzelas will get soon into my sleep.

  • RE: Are the posted questions getting worse?

    Lynn Pettis (6/11/2010)


    Anybody out there know much about this individual, scott.pletcher?

    I know we have several MVP's here on SSC, but most of you don't advertise it, and perhaps its just...

  • RE: Mentor

    scott.pletcher (6/14/2010)


    I'm not a pedant like Jeff

    I see you decided not to take my advice.

    scott.pletcher (6/14/2010)


    Many of them were amused by 'studid'.

    Object and column names are part of...

  • RE: Mentor

    scott.pletcher (6/14/2010)


    Sigh. Consistently all you want to offer is pompous air.

    Scott, you simply don't know what you're saying. If you have some arguments, go on, but I suggest you...

  • RE: What, When, Where, How, Who2

    Nice article, Jason.

    I haven't tried your code yet, but looks very neat.

    Well done.

  • RE: Are the posted questions getting worse?

    Can anyone take a look at this one?

    I'm sure my solution sucks and I'm pretty sure the OP is lost and clueless.

  • RE: Splitting One Row Data into Two Rows

    Dare to Fight (6/8/2010)


    Hi

    Thanks for help but it was giving error.

    Msg 156, Level 15, State 1, Procedure fSplitNumeric, Line 36

    Incorrect syntax near the keyword 'DECLARE'.

    please help me

    OK, let's try to...

  • RE: Table bifurcation in sqlserver

    OK, basically it's the same thing. I don't remember the exact syntax and I don't have SSMS here, but you will have to rebuild the clustered index into a new...

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (6/5/2010)


    In a source control session at SQL Saturday #22. Surprising that quite a few people don't use an VSC for their SQL Code.

    What do you guys...

  • RE: Who physically maintains your sql servers?

    In my organization we have SAs and one DBA (me).

    SAs configure and maintain the OS layer, including patches, and I maintain the SQL layer.

    I'm in the Administrators group for the...

  • RE: Splitting One Row Data into Two Rows

    Another assumption: 🙂

    CREATE FUNCTION fSplitNumeric(@parameter nvarchar(4000))

    RETURNS TABLE

    AS

    RETURN (

    WITH Data AS (

    SELECT N,

    S = SUBSTRING(@Parameter,N,1),

    G = CASE WHEN SUBSTRING(@Parameter,N,1) LIKE '[0-9]' THEN 1 ELSE 0 END

    FROM Tally

    WHERE...

  • RE: divide by 0 or null SSRS

    You could change the query in the dataset to retrieve the denominator as:

    ISNULL(NULLIF(SUM(someField),0),1)

  • RE: Splitting One Row Data into Two Rows

    Raju The Leader (6/4/2010)


    sachin123 it can be splitted into sachin one row 123 in other row..

    So, you mean splitting a SINGLE char field upon a delimiter?

    There's a good split function...

  • RE: Table bifurcation in sqlserver

    You mean partitioning?

Viewing 15 posts - 4,201 through 4,215 (of 5,394 total)