Viewing 9 posts - 1 through 9 (of 9 total)
You may check the size of the buffer pool and how memory is distributed. The following queries will give you this information.
-- how memory is distributed
selecttype, sum(multi_pages_kb) as mem_allocated_in_kb...
July 10, 2009 at 3:54 pm
Redgate offers a tool called Multi Script that is very useful.
http://www.red-gate.com/products/SQL_Multi_Script/index.htm?gclid=CN-ChK-TmZoCFShRagod9RpU9g
Thanks.
BJC
April 30, 2009 at 11:42 am
I would suggest setting up a DDL trigger and writing this to an audit table. If you are unsure how to implement this please let me know.
BJC
April 28, 2009 at 8:17 am
It may also be helpful to setup a virtual environment to experiment with these concepts.
BJC
April 27, 2009 at 7:47 am
I agree with the previous post. You need to ask a couple of basic questions.
Does a brand have multiple suppliers?
Does a supplier have multiple brands?
If the answer is yes...
April 16, 2009 at 8:31 am
Gert Drapers has some great insight into memory management. You can find the presentation and the examples at the following site:
http://www.sqldev.net/events.htm
SSDB352 Memory Management - Do You Have...
April 14, 2009 at 8:04 am
I would suggest starting with the tuning template provided in profiler. It will contain the basic information that you will need to begin identifying poorly performing code. I would also...
April 14, 2009 at 7:46 am
Viewing 9 posts - 1 through 9 (of 9 total)