Forum Replies Created

Viewing 15 posts - 7,981 through 7,995 (of 22,214 total)

  • RE: Advice from the Database Tuning Adviser

    I don't trust the DTA recommendations on anything. It makes way too many suggestions and misses really obvious ones. You'll note that it almost never suggests a clustered index or...

  • RE: Slow Join

    Functions on columns like that are a common code smell. They will prevent the use of statistics or indexes and will result in full table scans to satisfy the criteria....

  • RE: Returning Different results sets with same Stored Procedure

    You're just showing us parameter sets. We can't tell anything about what's happening inside the stored procedure based on a set of parameters. We need to see the actual SELECT......

  • RE: SQL 2014 how is the performance if continue call Native Compiler SP

    A WHILE loop? No, I haven't done that sort of testing at all. It's not something I'd write within T-SQL or expect to perform well, natively compiled or not.

  • RE: Help needed on Sybase to Sql 2012 migration

    Suresh Arumugam (6/12/2014)


    Thanks Grant for your valuable comment.

    SO, do you mean that even if there are 500 tables in Sybase, we need to manually add source and destination data flow...

  • RE: Developers vs. DBAs

    Dave62 (6/12/2014)


    OCTom (6/12/2014)


    ...

    Any bickering between developers and DBAs is childish and is counter-productive to the goal of delivering quality.

    Tom

    BUT THEY STARTED IT!!!

    :hehe:

    Winner of the Internet this morning. Well done!

  • RE: Ideal values for wait time in SQL server

    IT researcher (6/12/2014)


    GilaMonster (6/12/2014)


    IT researcher (6/12/2014)


    The SQL server instance is used by employees in office. So it will be running only during office timings. So we keep the...

  • RE: Ideal values for wait time in SQL server

    IT researcher (6/12/2014)


    Why?

    SQL instances don't need to be rebooted daily. Hell, I know of instances that have been running over 6 months.

    The SQL server instance is used by...

  • RE: Ideal values for wait time in SQL server

    GilaMonster (6/12/2014)


    IT researcher (6/12/2014)


    The sql server starts everyday at 8:30 AM and stops around 9:30 PM.

    Why?

    SQL instances don't need to be rebooted daily. Hell, I know of instances...

  • RE: Developers vs. DBAs

    OCTom (6/12/2014)


    Any bickering between developers and DBAs is childish and is counter-productive to the goal of delivering quality.

    Tom

    THIS!

  • RE: Ideal values for wait time in SQL server

    Wait stats tell you what the server is waiting on. But, you can't know if you have a performance problem by only looking at cumulative wait times, even though you're...

  • RE: Ideal values for wait time in SQL server

    IT researcher (6/12/2014)


    SQL server restarts every night. Does these values reset on restart?

    Yes, it's since a restart. So this is cumulative since that restart. But, normal can only be...

  • RE: Ideal values for wait time in SQL server

    GilaMonster (6/12/2014)


    IT researcher (6/12/2014)


    SQL server restarts every night. Does these values reset on restart?

    wait times are cumulative since SQL started

    For a change I'm going to disagree with Grant. Daily...

  • RE: SQL 2014 how is the performance if continue call Native Compiler SP

    Without seeing the query plan, the structures, the query... nope, not really.

    My tests show a pretty consistent faster behavior for the natively compiled procedures.

  • RE: Ideal values for wait time in SQL server

    The very best wait times are zero.

    But, that's not going to happen, so you need to know how your waits are changing over time to determine if there are issues....

Viewing 15 posts - 7,981 through 7,995 (of 22,214 total)