Forum Replies Created

Viewing 15 posts - 4,666 through 4,680 (of 8,761 total)

  • RE: SQL Query to group and find latest

    Quick thought, the description of the logic does not fit the expected results, can you please amend either or both?

    😎

  • RE: Regarding Sqlserver 2012 Error

    Quick question, can you post the code for the procedure Abc.DBO.aspRoleFCUD?

    😎

  • RE: Memory Allocation Failure Question

    Quick questions, what are the memory specs (hardw.,vm,provisioning)? What are the sql server's mem configs?

    😎

  • RE: Another SQL question, hopefull simple one

    For completeness, the order by does not work with the over clause prior to 2012

    😎

    WITH SampleData (PERSON,TRANSACTDATE, STARTDATE, END_DATE, IN_PUNCH,OUT_PUNCH,HOURS) AS

    (

    SELECT 1234,'08/03/2015','08/03/2015','08/03/2015', '06:00','09:00','3' ...

  • RE: Today's Random Word!

    Ed Wagner (8/24/2015)


    crookj (8/24/2015)


    djj (8/24/2015)


    Apples

    Oranges

    Lemon

    Limoncello

  • RE: Can't Connect to Server

    Quick question, is this a named instance?

    😎

  • RE: HOW TO USE LAG() FUNCTION

    Further on Phil's fine answer, recommend adding a POC (Partition, Order, Covering) index on the table, makes a huge difference if the set is large, here is a quick example.

    :cool:...

  • RE: FOR XML PATH with two root nodes

    To get the desired result set, we only need to do minor changes to the query, note that there is one "FOR XM" for each nesting level in the output.

    😎

    SELECT

    ...

  • RE: GUI Restore Problems on striped backups

    Quick thought, script the restore rather than using same, it is straight forward and doesn't fail as the ui does. If you want I can dig up some of my...

  • RE: Today's Random Word!

    TomThomson (8/20/2015)


    whereisSQL? (8/20/2015)


    Luis Cazares (8/20/2015)


    DonlSimpson (8/20/2015)


    Curves

    Lines

    Parallel

    Euclid

    Relation

  • RE: uninstallation error

    atulyan.aries (8/20/2015)


    Hi Team,

    While trying to uninstall SQL 2012 I get the below error

    sql server error the given key was not present in the dictionary sql 2012

    Please help on this

    Regards

    Atulyan

    Have you...

  • RE: Error 7884

    ARC211 (8/20/2015)


    I have been receiving the following error for 2 days now and I cannot seem to find the root source of the problem:

    Date8/20/2015 12:55:50 AM

    LogSQL Server (Current - 8/20/2015...

  • RE: Today's Random Word!

    Ed Wagner (8/20/2015)


    djj (8/20/2015)


    DonlSimpson (8/19/2015)


    Ed Wagner (8/19/2015)


    Luis Cazares (8/19/2015)


    Revenant (8/19/2015)


    ZZartin (8/19/2015)


    whereisSQL? (8/19/2015)


    BL0B_EATER (8/19/2015)


    Water

    Conservation

    Fire

    Alarm

    Clock

    Time

    Fades

    Grave

    Dead

    Terminal

  • RE: SQL Server Performance dashboard reports

    Thank you Arun for this write up, good job.

    😎

  • RE: SQL Turn Row data to Column

    Quick static solution

    😎

    USE RDSTEEST;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.TBL_SAMPLE_DATA') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_DATA;

    CREATE TABLE dbo.TBL_SAMPLE_DATA

    (

    ItemID INT ...

Viewing 15 posts - 4,666 through 4,680 (of 8,761 total)