Forum Replies Created

Viewing 15 posts - 8,281 through 8,295 (of 22,214 total)

  • RE: Performance issues in FULL recovery model?

    Luis Cazares (4/30/2014)


    pooyan_pdm (4/30/2014)


    well, in some cases it could have some performance impact depending on the workload, disk subsystem,...assuming you've also set the log backup jobs on your databases, ...

  • RE: Changed behavior or am I missing something?

    Tons of stuff has changed. First, did you change the compatibility level on your database to 120? If not, you're using the old statistics with the new optimizer in compatibility...

  • RE: SQL Design Question

    ErikMN (4/30/2014)


    So to summarize:

    CONS:

    - Slightly more complicated and slightly more costly to query

    One table (denormalized):

    PROS:

    - Slightly faster queries

    Careful. It's at least partly a myth that denormalized storage is faster. It...

  • RE: Database Design - Need help in Choosing a primary key

    shafirmubarak (4/30/2014)


    Yes, the unique enforcement would be absolute necessary.

    But i was not sure how surrogate key will be of use?

    In some situations it will help performance to have a...

  • RE: Database Design - Need help in Choosing a primary key

    shafirmubarak (4/30/2014)


    Thanks,

    For example, user id is used as a linkage across multiple tables.

    I am concerned about defining a key for the child tables as it requires 3- 9 columns...

  • RE: Execution plan display change from 2005 to 2012

    Instead of trying to capture the plan live, just get it from the plan cache using sys.dm_exec_query_plan. You can combine it with sys.dm_exec_sql_text to identify the specific code you're interested...

  • RE: Performance issues in FULL recovery model?

    Luis Cazares (4/30/2014)


    Unless you're not doing log backups, the logs are constantly growing and no one cares about PIT recovery. Sounds nuts, but I've seen it.:hehe:

    Until all performance stops because...

  • RE: Should I create a new index ? why or why not

    If the other indexes were created for a reason and the code hasn't been modified, then the likely answer is that they're still needed. You can look at the usage...

  • RE: chache queries

    This is the third thread for the same problem.

    Have you done any of the things I've suggested on the other two?

  • RE: Performance issues in FULL recovery model?

    There is a tiny impact on performance because you're using resources to backup the logs. But it's really tiny. If you're already at 99% resource usage, adding this might be...

  • RE: chache queries

    Since you've posted this question to a second location, we're now getting into cross-chatter. I made several recommendations over there for how to fix it. It depends on your data,...

  • RE: Server Side Trace

    Ha! In short, no, it doesn't "stay shrunk". As you add data (or junk mail) to the system, it's going to need to grow to contain that additional data. You...

  • RE: 166 days to create index

    scott_lotus (4/30/2014)


    That is an interesting comment. I had read in the past to avoid creating your own indexes because DTA was more likely to do it correctly.

    I would love to...

  • RE: chache queries

    OK. Please follow my advice about investigating the execution plans.

    Modifying the query will cause a recompile. But you also get recompiles from other sources. You can get a recompile because...

  • RE: 166 days to create index

    I strongly recommend looking over the execution plan for the query and do your own investigation and tuning. The DTA is notorious for making poor choices at times and you...

Viewing 15 posts - 8,281 through 8,295 (of 22,214 total)