Forum Replies Created

Viewing 15 posts - 16 through 30 (of 137 total)

  • RE: Today's Random Word!

    Ed Wagner (3/7/2014)


    BWFC (3/7/2014)


    TomThomson (3/6/2014)


    SQLRNNR (3/6/2014)


    Cabrillo

    1542

    1492

    1787

    5563

  • RE: Today's Random Word!

    SQLRNNR (3/6/2014)


    Cabrillo

    Goat

  • RE: Improve performance

    yuvipoy (3/5/2014)


    Hi EricEyster,

    After having bacth operation is delete operation faster?

    how much time you gained after rewritting your query.

    Incase what if in lower version of sql server say sql server 2000...

  • RE: Today's Random Word!

    BWFC (3/6/2014)


    Ed Wagner (3/5/2014)


    TomThomson (3/5/2014)


    BWFC (3/5/2014)


    SQLRNNR (3/4/2014)


    EL Jerry (3/4/2014)


    Revenant (3/4/2014)


    Ed Wagner (3/4/2014)


    crookj (3/4/2014)


    SQLRNNR (3/4/2014)


    microbot

    Bug

    Bacteria

    Virus

    Disease

    cure

    Bacon

    Francis

    Flambe

    Crepe

    creep

  • RE: Isolating services

    the prevailing wisdom is to use a separate service account for each server with the minimum permissions required to run the service.

  • RE: Combining keys to create a master list

    Does it need to be part of a SSIS package? If not, you can locate records with grouping:

    select Key2

    ,min(key1) as RecordToKeep,

    ,count(key1) as RecordCount

    from table

    group by...

  • RE: SSIS and Transaction Log Growth

    george sibbald (3/5/2014)


    Stewart "Arturius" Campbell (3/5/2014)


    Alternatively, change the recovery model to bulk logged just before the load and back on completion thereof.

    however, this will require a full backup before and...

  • RE: SSIS and Transaction Log Growth

    We have this scenario and fixed it by creating a Staging database in simple mode next to the DW. fast loads into staging require minimal logging. staging is backed up...

  • RE: Improve performance

    yuvipoy,

    we have similar requirements for our real-time systems. We need to delete millions of rows and not cause locking that would stop transactions. I wrote a delete loop that works...

  • RE: Create 100GB database with dummy data...

    I do not have my script handy at this second, but I know what it does in general.

    Create a table with several INT, CHAR, and DateTime columns

    use loop operator to...

  • RE: Need to import data from ANY .csv file in a folder....

    Awesome. Glad I could help and thanks for marking it as solved.

  • RE: Today's Random Word!

    Ed Wagner (3/4/2014)


    BWFC (3/4/2014)


    Wave

    Frequency

    Megahertz

  • RE: Downtime

    Tritoch (3/3/2014)


    We do everything we can to keep our applications online. We avoid patches...

    I would much rather take a small amount of periodic planned downtime to patch than have a...

  • RE: Capturing the Reason For Change for Type 2 changes

    RonKyle (3/3/2014)


    Kimball design assumes your users are getting data from the relational engine

    Would you mind explaining further what you mean by this? It's possible that I'm not understanding something,...

  • RE: Capturing the Reason For Change for Type 2 changes

    Lempster (3/3/2014)


    Jeff Moden (2/28/2014)


    Put an index on the "Current-Flag" and watch your GUI's timeout when they try to do an INSERT because of the massive extent splits that will occur....

Viewing 15 posts - 16 through 30 (of 137 total)