Forum Replies Created

Viewing 15 posts - 5,086 through 5,100 (of 8,761 total)

  • RE: Query Performance Tuning – A Methodical Approach

    Nice piece as always Gail, made me giggle a little as when I read it, I had just finished a very similar exercise which brought the execution time of a...

  • RE: Duplicate computer name problem for merge replication with central publisher

    jsullivan 18251 (6/9/2015)


    Central publisher/distributor is on a cloud provider. Some customer servers are named just SERVER

    Quick question, can you share some more details?

    😎

    Edit: typo

  • RE: SQL Server 2008 Query Help

    sgmunson (6/9/2015)


    DiabloZA (6/7/2015)


    Yes, this is it.

    Thank you so much sir !!

    You are a life saver.. God bless..

    You may want to look at performance. With small amounts of data,...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (6/9/2015)


    Eirikur Eiriksson (6/4/2015)


    Should be as simple as

    ..TOP(1)...

    WHERE POST.VISIBLE = TRUE;

    😎

    Nothing is ever simple, and the queries that do this potentially slow way down with...

  • RE: Are the posted questions getting worse?

    ChrisM@Work (6/9/2015)


    Steve Jones - SSC Editor (6/9/2015)


    Eirikur Eiriksson (6/4/2015)


    Should be as simple as

    ..TOP(1)...

    WHERE POST.VISIBLE = TRUE;

    😎

    Nothing is ever simple, and the queries that do this potentially slow way down...

  • RE: Row_Number question

    mpdillon (6/9/2015)


    Thanks for your replies. I should have thought about the UNION. I will try that now.

    I do not understand how to create a CTE from a CTE. Could you...

  • RE: Row_Number question

    Quick suggestion, add another CTC and filter the output from there.

    😎

  • RE: Are the posted questions getting worse?

    GilaMonster (6/8/2015)


    Well here's a new slant on the 'partitioning for performance'...

    Switch the partitions that are needed out to a staging table, do processing on the staging table then switch...

  • RE: Today's Random Word!

    Ed Wagner (6/8/2015)


    crookj (6/8/2015)


    Ed Wagner (6/8/2015)


    Revenant (6/8/2015)


    DonlSimpson (6/8/2015)


    Ed Wagner (6/8/2015)


    djj (6/8/2015)


    Ed Wagner (6/8/2015)


    DonlSimpson (6/5/2015)


    Eirikur Eiriksson (6/5/2015)


    Monarchy

    Empire

    Republic

    Plato

    Socrates

    Philosopher

    Academy

    Starfleet

    KDF

    Bird of Prey

    Specialization

  • RE: Ceating a running total based on an a single (SUM) Opening Balance

    Same as pietlinden's, adjusted to the required output

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'tempdb..#Temp') IS NOT NULL DROP TABLE #Temp;

    CREATE TABLE #Temp(

    [ROWNUMBER] [float] NULL,

    [Component] [float] NULL,

    [M/O No] [float] NULL,

    [Opening Balance] [float]...

  • RE: SQL Server 2008 Query Help

    Quick solution, works with the sample data

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    ;WITH SampleData (REQCODE, PERSON, STARTDATE, ENDDATE, STARTTIME, ENDTIME, ...

  • RE: Today's Random Word!

    Ed Wagner (6/5/2015)


    jasona.work (6/5/2015)


    ZZartin (6/5/2015)


    Ed Wagner (6/5/2015)


    jasona.work (6/5/2015)


    Ed Wagner (6/5/2015)


    Revenant (6/5/2015)


    SQLRNNR (6/5/2015)


    Ed Wagner (6/5/2015)


    BL0B_EATER (6/5/2015)


    SQLRNNR (6/5/2015)


    Eirikur Eiriksson (6/3/2015)


    Ed Wagner (6/3/2015)


    Eirikur Eiriksson (6/3/2015)


    SQLRNNR (6/3/2015)


    while

    Loop

    Eliminate

    Kawasaki

    Yamaha

    piano

    Organ

    tube

    subway

    Traffic

    Cone

    Ice Cream

    Float

    Pennywise

    :w00t:

    Stephen King (It)

    Monarchy

  • RE: Today's Random Word!

    Ed Wagner (6/5/2015)


    BL0B_EATER (6/5/2015)


    SQLRNNR (6/5/2015)


    Eirikur Eiriksson (6/3/2015)


    Ed Wagner (6/3/2015)


    Eirikur Eiriksson (6/3/2015)


    SQLRNNR (6/3/2015)


    while

    Loop

    Eliminate

    Kawasaki

    Yamaha

    piano

    Organ

    Donor

  • RE: Are the posted questions getting worse?

    Alvin Ramard (6/4/2015)


    Eirikur Eiriksson (6/4/2015)


    Jeff Moden (6/4/2015)


    Shifting gears a bit...

    Have any of you ever used a CTP of SQL Server to power your real production databases? Personally, I think...

  • RE: Are the posted questions getting worse?

    Jeff Moden (6/4/2015)


    Shifting gears a bit...

    Have any of you ever used a CTP of SQL Server to power your real production databases? Personally, I think such a thing would...

Viewing 15 posts - 5,086 through 5,100 (of 8,761 total)