This is a discussion on Question about optimization within the SQL Server forums, part of the Microsoft SQL Server category; --> Guys, I have a 40GB database being hosted on a NAS device (Network Appliance - http://www.netapp.com/) . The log ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Guys, I have a 40GB database being hosted on a NAS device (Network Appliance - http://www.netapp.com/). The log file for this database grows at a rate of 5GB per day. So I do a log cutting on this database on a weekly basis to free up space on my NAS device. I have created two separate Q-Trees on the NAS device and I store the main data file on one of the Q-Trees and the log file on the other Q-Tree. I ONLY have a PRIMARY FILEGROUP. Should I change this to optimize my database performance? I also have a table in the database with approximately 12 million records. The indexing on the table is well done - using covered index for better querying. The table gets defragged quite often. So I do defrag the Indexes on this table once a month (using DBCC DEFRAG). What else can I do better the performance of my database? Thank you, SR |
| |||
| "SR" <yosonu@socal.rr.com> wrote in message news:ba4c21f6.0310052349.283deaa@posting.google.co m... > Guys, > > I have a 40GB database being hosted on a NAS device (Network Appliance - > http://www.netapp.com/). The log file for this database grows at a rate of > 5GB per day. So I do a log cutting on this database on a weekly basis to > free up space on my NAS device. Not sure what you mean by "log cutting" Please explain. > > I have created two separate Q-Trees on the NAS device and I store the main > data file on one of the Q-Trees and the log file on the other Q-Tree. > Well, I'm not familiar with Q-Trees (should be by the end of this week ironically :-). But the real answer comes down to physical disks. > I ONLY have a PRIMARY FILEGROUP. Should I change this to optimize my > database performance? "Maybe". If your other filegroups would end up being on the same PHYSICAL disks (even if logically they appear different) then no, you probably would not notice a difference. (Assuming SQL 2000.) > > I also have a table in the database with approximately 12 million records. > The indexing on the table is well done - using covered index for better > querying. The table gets defragged quite often. So I do defrag the Indexes > on this table once a month (using DBCC DEFRAG). > > What else can I do better the performance of my database? Use Profiler, find out where any bottlenecks would be. It's hard to say how to improve performance when a) we don't know how slow it is now and how fast you need it to be, B) what other bottlenecks may be... disk I/O, CPU, memory, etc. > > Thank you, > > SR |
| ||||
| SR (yosonu@socal.rr.com) writes: > I have a 40GB database being hosted on a NAS device (Network Appliance - > http://www.netapp.com/). The log file for this database grows at a rate of > 5GB per day. So I do a log cutting on this database on a weekly basis to > free up space on my NAS device. Don't you backup the transaction log more frequently than that? > I also have a table in the database with approximately 12 million records. > The indexing on the table is well done - using covered index for better > querying. The table gets defragged quite often. So I do defrag the Indexes > on this table once a month (using DBCC DEFRAG). > > What else can I do better the performance of my database? As Greg said, since we don't know what you think is slow, and how fast you want it to be, it is difficult to say. But running Profiler to catch queries with duration > 1000 ms (or what may be suitable) could be a start. -- Erland Sommarskog, SQL Server MVP, sommar@algonet.se Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinf...2000/books.asp |