|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 10:53 AM
Points: 2,
Visits: 38
|
|
I'm relatively new to SQL server development in a non-collegiate scenario, so i will try to be as concise as possible.
Our production server handles a lot of queries every day from many sources(sales dept.,our website, amazon, reporting, etc...). When the server begins to noticeably slow we have found that the server resources aren't maxing out. The data choke point seems to be the hard drive read/write speed.
(This is how it was explained to me, and I have been given the task of researching this possible solution.)
My question is: can you use transactional replication to replicate a database on another hard drive within the same server? We want to do this to offload all our reporting to the separate hard drive so the main hard drive is only handling orders without replacing hardware or building a second server. Sort of like an internal data warehouse.
Any help is much appreciated.
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 9:55 AM
Points: 6,713,
Visits: 11,747
|
|
There really is not enough info to say for sure what would be best for you, but one misconception I picked up is "choke point is read/write speed of disk" and I think it might be worth keying on to start a dialogue. Data is not read directly from disk unless the data required to satisfy a query is not present in memory, i.e. all data that is returned to satisfy a query is first loaded from disk to the buffer pool unless it is already in memory. The goal for SQL Server is to keep as much of the most-used data in memory as possible because it will result in better performance. If the problem traces back to the fact that data needs to be loaded from disk on a regular basis then tuning your queries and indexes so less data needs to be read to satisfy your queries, or the hardware solution of adding memory, is more likely to give you a higher return on investment than doing what you're talking about with adding another disk and replication.
__________________________________________________________________________________________________ There are no special teachers of virtue, because virtue is taught by the whole community. --Plato
Believe you can and you're halfway there. --Theodore Roosevelt
Everything Should Be Made as Simple as Possible, But Not Simpler --Albert Einstein
The significant problems we face cannot be solved at the same level of thinking we were at when we created them. --Albert Einstein
1 apple is not exactly 1/8 of 8 apples. Because there are no absolutely identical apples. --Giordy
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 10:53 AM
Points: 2,
Visits: 38
|
|
I had a chat with my superior regarding your enlightening reply, and with that in mind he has decided to "...research an alternative solution."
Thank you for your helpful response, and thank you for being patient with my novice questions.
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 9:55 AM
Points: 6,713,
Visits: 11,747
|
|
Anytime. Thanks for the feedback.
__________________________________________________________________________________________________ There are no special teachers of virtue, because virtue is taught by the whole community. --Plato
Believe you can and you're halfway there. --Theodore Roosevelt
Everything Should Be Made as Simple as Possible, But Not Simpler --Albert Einstein
The significant problems we face cannot be solved at the same level of thinking we were at when we created them. --Albert Einstein
1 apple is not exactly 1/8 of 8 apples. Because there are no absolutely identical apples. --Giordy
|
|
|
|