Forum Replies Created

Viewing 15 posts - 6,001 through 6,015 (of 22,211 total)

  • RE: SQL Server 2012 perfomance when using Disk Span

    Also don't forget that you don't just bottleneck on the disks. You also bottleneck on the disk controllers and the connections to the disks. I/O is a giant rats nest...

  • RE: how to make distributed database in SQL server 2008?

    That's a big topic and not one that's going to be answered well within a forum post like this. I'd suggest starting out reading this article from the SQL CAT...

  • RE: The Scientific Method: a call to action

    andrew gothard (5/28/2015)


    meilenb (5/24/2015)


    Everyone knows that CO2, CH4 and N2O are factors in climate change. CH4 (refrigerants) in particular is a 21 multiplier to CO2, R-508B (refrigerant) is a...

  • RE: Tuning expensive query II

    First question, did the execution time change with the removal of DISTINCT with the original indexing scheme?

    Next question, did either of those indexes get used? Did you check the execution...

  • RE: The Scientific Method: a call to action

    Kyrilluk (5/28/2015)


    Grant Fritchey (5/27/2015)

    Since I've seen many a DBA screw up a production environment, I don't see what makes developers special in either regard. However, exposure is an extremely well...

  • RE: Automatic restore

    reynolddejesus100 (5/28/2015)


    sir i want to automatic restore the backup files using sql agent, how can i solve this using sql agent automation

    SQL Agent can call to T-SQL. You can use...

  • RE: Tuning expensive query II

    The execution time is the same? I'm not surprised the reads are the same. You're still scanning 45,000 rows.

    There just isn't anything to tune in the query here.

    Wild shot in...

  • RE: The Scientific Method: a call to action

    Eric M Russell (5/27/2015)


    Depending on the organization, I'm not opposed to allowing Developers read-only access to production, especially if they are expected to wear the Data Analyst hat on occasion....

  • RE: The Scientific Method: a call to action

    Eric M Russell (5/27/2015)


    Kyrilluk (5/27/2015)


    Eric M Russell (5/26/2015)


    Kyrilluk (5/26/2015)


    It would be nice to have this scientific method to all the blab about security as well. Like "I shouldn't give the...

  • RE: The Scientific Method: a call to action

    Kyrilluk (5/26/2015)


    It would be nice to have this scientific method to all the blab about security as well. Like "I shouldn't give the sysadmin password to the developers because of...

  • RE: Change Set clause of Update Statement dynamically based on some condition.

    Since this is two completely different statements, assuming we're putting this into a stored procedure, why not create two stored procedures? You're looking at the need for two different execution...

  • RE: Server Max Memory Too Low

    If you can't get in with the DAC you may need to restart the service. Do it with the command lines -f and -m to get it to a minimal...

  • RE: Add indexes to views used in sql azure

    Views that call to other views and nest and join on views is a notorious code smell that leads to poor performance. My suggestion, write the query you want directly...

  • RE: Db restore

    Sounds like there must have been some security changes on your server. The login you're using doesn't have permission to run the RESTORE command.

  • RE: Missing Index & Query Plan

    There's no way to correlate what's stored in those DMVs to any query. So, instead, you need to query directly against the XML of the execution plans in order to...

Viewing 15 posts - 6,001 through 6,015 (of 22,211 total)