Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,291 total)

  • RE: Performance issues

    AllIcansuggestispostthenexttimeyoucopypasteyourcodeusingCODETAGESavailablebeside.

    Cant understand what's that above?

    Now looks at this

    All I can suggest is post the next time you copy pste your code using CODE TAGES available beside.

    That's what you have...

  • RE: Top 2 records

    Use This

    SELECT TOP 2 AppName, Date, Query FROM YOUR_TABLE

    GROUP BY AppName, Date, Query

  • RE: Query help required

    That's what I meant in my last reply.

    In the Query Editor,

    Use this

    USE

    [NDP-MWD]

    SET IDENTITY_INSERT [NDP-MWD].dbo.[Comments] ON

    INSERT INTO NDP-MWD.dbo.Comments Select * FROM NDM-MWD.dbo.Comments

    SET IDENTITY_INSERT [NDP-MWD].dbo.[Comments] OFF

  • RE: Insert nto Multiple Tables

    Steve is right. You should not use SCOPE_IDENTITY, instead use Inner Join to get the corresponding value for each record.

  • RE: Insert nto Multiple Tables

    Trying to figure out without the table structure and some sample data would be difficult.

    I encourage you to post the create table scripts and also some sample insert scripts (5-10...

  • RE: Query help required

    copy the complete dbo.Comments from the NDM-MWD database to the NDP-MWD database

    Use the Following Script

    INSERT INTO NDP-MWD.dbo.Comments Select * FROM NDM-MWD.dbo.Comments

    You need to take additional care if there...

  • RE: running database clusters

    Right Click on your SQL Instance and select Properties.

    In the very first dialog, you have the last property Is Clustered . A TRUE Value Indicates it is clustered a...

  • RE: RAID

    rkaucher (11/16/2009)


    You should have used LMGTFY. 😉

    Gail is right with her reply.

    You posted a question

    What is RAID 10?

    which should have been searched in a...

  • RE: SQL Query

    Seems to be crazy but I ran the same query without the

    WHERE Convert(varchar, Date, 101) = '11/13/2009'

    and got the result what you wanted.

  • RE: Trunc log on chkpt

    Will it create any data loss (without backing up the truncated part of the transaction log every time a checkpoint occurs in the database)

    It will not create...

  • RE: maximum number of output parameters we can use in Stored procedure

    Data should be stored top down, not left to right

    Flo

    Good Question Flo and wonder if someone would use that many Parameters.

  • RE: maximum number of output parameters we can use in Stored procedure

    It is 2100 Parameters, not sure if it has been increased in SQL 2008.

  • RE: Error while migrating the SSIS package

    Can you try this

    Copy the DTSX Files from the ServerA(2005) to ServerB.

    Go to the ServerB(2008) and then create a new solution and try to add the packages into that solution.

  • RE: Check DB Integrity Maintenance Plan Suddenly not working

    Hmm Seems to be strange, have not got an idea what does it alter?

    Any way have you tried to rerun that job?

  • RE: Help with dynamic SQL

    What is the script you have?

    Post it here.

    Without that we have to do guess work on your script...

Viewing 15 posts - 1,066 through 1,080 (of 1,291 total)