Forum Replies Created

Viewing 15 posts - 106 through 120 (of 782 total)

  • RE: Error:18456

    Did you check sql server logs/error logs and event log (Windows) to see if you can

    get more detail of the error.

    Regards,

    Sushant

  • RE: Error:18456

    Also,

    maybe the server is configured only for Windows authentication. IF it is, Turning on Windows+SQL server authentication can solve the problem.

    Regards,

    Sushant

  • RE: Error:18456

    Hi,

    Did you see error in sql server logs/error logs...

    You might get more info from there.

    Regards,

    Sushant

  • RE: XML

    The font of the QOD is just huge, it could have been a little bit smaller 😉

    +1 😛

  • RE: How to replace a part of string in all the column values

    Richard Moore-400646 (11/28/2011)


    I should stress the fact that this will absolutely replace every occurance of the 1st character with 2nd character everywhere it exists in that column. So if...

  • RE: linked server. To use or not to use

    no, they are equally good

  • RE: Regarding sql server dba(queries)

    Oksana March (11/26/2011)


    Personally, I hate when people tell me to "Google it" or look in Books Online (everyone knows already there is that option, why remind?)

    Lutzm +1

    Regards,

    Skybvi

  • RE: 2 sa

    thanks a lot.

    Regards,

    Skybvi

  • RE: 2 sa

    Can it be done within the SSMS or AD ?

    Can i know the steps please.

    Regards,

    Skybvi

  • RE: Updrade SQl server Express to standard

    Edition upgrade of 2008 R2 is quite different from what we used to do in SQL Server 2005, where we have to start installer from command prompt by passing the...

  • RE: Regarding sql server dba(queries)

    Have you tried searching on google?

    There's no way you can't find the answers there...

    Regards,

    Skybvi

  • RE: Delete duplicate row

    Jpotucek (11/18/2011)


    Thank you!!!

    I ran this and it worked:

    ;WITH cte

    AS (SELECT ROW_NUMBER() OVER (PARTITION BY path, sortOrder,id, repname, repfilepath, language_cd, updateddate, repFormat

    --add all column names col1,col2,...

    ORDER BY ( SELECT 0)) RN

    FROM...

  • RE: Delete duplicate row

    Cliff Jones (11/18/2011)


    SKYBVI (11/18/2011)


    ;WITH cte

    AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2

    --add all column names col1,col2,...

    ORDER BY ( SELECT 0)) RN

    FROM table)

    DELETE FROM cte

    WHERE RN > 1

    Regards,

    Sushant

    Yes Sushant, I was...

  • RE: Login failed for SA

    Other than that, Does somewhere the 'sa' password is hard coded??

    Regards,

    Skybvi

  • RE: Delete duplicate row

    ;WITH cte

    AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2

    --add all column names col1,col2,...

    ORDER BY ( SELECT 0)) RN

    FROM table)

    DELETE FROM cte

    WHERE RN > 1

    Regards,

    Sushant

Viewing 15 posts - 106 through 120 (of 782 total)