|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 2:43 PM
Points: 33,
Visits: 164
|
|
Hello,
We have a sole readonly database which is updated monthly at night during maintenance window. The db has several stored procedures from simple to with medium complexity. Certain stored procedures are slow And need advice on what could be done given the database is readonly.
The stored procedures do have Set NoCount On. I'm looking at possible indexes that cold be added to tables.
Question 1: But on another note I'm wondering if introducing Nolock in all sqls a good idea?
Question 2: Also is there an alternative to putting no lock in each and every SQL in the database?
Question 3: Would READ COMMITTED SNAPSHOT isolation level be an alternative for Nolock given the database is READONLY (database itself is not set to READONLY. The applications accessing the database will only read from it and will not right to it ever).
Thanks!
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 3:28 PM
Points: 37,730,
Visits: 29,996
|
|
If the database is read only, you won't be seeing any blocking (because nothing can ever write to the tables), so there will be no gain from read uncommitted or snapshot isolation.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 2:43 PM
Points: 33,
Visits: 164
|
|
Thanks for your response.
The database I'm dealing with is not set to readonly. Application does only reads from it. We do occasional updates every month, but during that process we shut the application down.
Instead of making the db as readonly, what will be the performance implications between isolation levels READ UNCOMMITTED and READ COMMITTED SNAPSHOT isolation? Which would be better for my case?
How complex is the process to set the database as READONLY? The reason I'm asking because, our db will be deleted every couple of months and the new database version will be restored. So setting the db as READONLY after the restore will have to be repeated every single time the restore is done? Thanks!
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 3:28 PM
Points: 37,730,
Visits: 29,996
|
|
If you are not doing any data modifications, then you will not be experiencing blocking and therefore there's little point in changing or fiddling with the isolation level.
Identify the badly performing code, tune it.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 7:20 PM
Points: 32,910,
Visits: 26,799
|
|
anonymous2009 (9/15/2012) Thanks for your response.
The database I'm dealing with is not set to readonly. Application does only reads from it. We do occasional updates every month, but during that process we shut the application down.
Instead of making the db as readonly, what will be the performance implications between isolation levels READ UNCOMMITTED and READ COMMITTED SNAPSHOT isolation? Which would be better for my case?
How complex is the process to set the database as READONLY? The reason I'm asking because, our db will be deleted every couple of months and the new database version will be restored. So setting the db as READONLY after the restore will have to be repeated every single time the restore is done? Thanks!
I don't believe any of that will help. The application is "read only" and offline while you're doing the updates to the database.
Certain stored procedures are slow And need advice on what could be done given the database is readonly.
Which stored procedures? The ones that the application uses? Is it always the same stored procedures that run slow?
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|
|
Say Hey Kid
      
Group: General Forum Members
Last Login: Monday, May 20, 2013 12:28 PM
Points: 675,
Visits: 2,031
|
|
If your only currently known symptom is "some SQL statements are slow", then you need to start with the usual analysis steps even before you get to troubleshooting.
1) What is "slow"? Why? Did it used to be different? How long ago? What is a list of everything that changed over that time? 2) What is "fast"? Why? Is that even reasonable (i.e. a full table scan of 25TB of data in 0.05 seconds is not reasonable... no matter how much someone wants it) 3) What hardware are you on right now? Keep coming back to this to get more detail, down to the particular spindles and what shares each element, as you work through the other aspects, until it's "fast enough". 4) What wait states are growing fastest when it's "slow"? "fast"? 5) What SQL statements are involved? All? Some? What do they have in common? Time of day based? 6) What else happens when it's "slow"? When it's "fast"? On the database? On the instance? On the hardware? On the network? On the SAN? On the user's machine?
There's a lot to look at and a lot to learn - any one "quick fix", whatever it is, will only work if that addresses most to all of your current issue. You may have a different current issue, or more than one.
Alternately, free up some budget and hire one of the many experts available, some of whom post here.
|
|
|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Today @ 6:58 PM
Points: 3,581,
Visits: 5,125
|
|
1) set database to read only during normal opps. Set it to read/write during your monthly update cycle (when other access is disabled) and then back to read only when complete.
2) Get professional help to tune the problematic queries (and mentor you on how to do the same in the future).
Best,
Kevin G. Boles SQL Server Consultant SQL MVP 2007-2012 TheSQLGuru at GMail
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: 2 days ago @ 11:55 AM
Points: 108,
Visits: 361
|
|
By setting the DB to readonly no Shared-Lock is requested anymore so there 's a performance benefit in doing that. and the syntax is so easy ALTER DATABASE [DB] SET READ_ONLY
Cheers , Pooyan D ________________________________________________ Microsoft Certified Technology Specialist : SQL Server 2008
|
|
|
|