Viewing 15 posts - 3,166 through 3,180 (of 5,843 total)
Profiler to local disk files, then load into database for analytics. Do it all the time. Very light weight going to disk. All you need is tsql/rpc...
November 2, 2011 at 3:33 pm
1) this looks like it could be a VERY complex undertaking and thus is not really appropriate for a forum question. People here volunteer their time and involved questions...
November 1, 2011 at 11:26 am
For the query that is taking 3 seconds, show the Actual Execution Plan when you run it and then let us know what the Estimated and Actual row counts for...
October 31, 2011 at 8:41 am
1) don't try to return this much data to a client tool. just won't work
2) you best have a VERY large and VERY fast tempdb IO subsystem to throw...
October 31, 2011 at 8:38 am
Ninja's_RGR'us (10/27/2011)
GilaMonster (10/27/2011)
Ninja's_RGR'us (10/27/2011)
Note to the <non hiring> op. Both these 2 seem to love using knives while...
October 27, 2011 at 9:15 am
To the OP: you can spend days or even weeks trying to hunt down performance issues if you aren't trained/skilled/experienced at doing so. Or you can do as others...
October 27, 2011 at 7:52 am
Lavanyasri (10/26/2011)
Thanks for the update .
I think u r right , it might a problem with Cursors. I ran a profiler with rpc completed ,sp:stmt completed ,SQL...
October 26, 2011 at 10:01 am
chewelson (10/24/2011)
hi guys,anyone can advise?
thanks
As has been said already, DBCC memorystatus will give you detailed output on memory usage. It is officially semi-documented online.
October 25, 2011 at 7:21 am
You can use dbcc memorystatus (officially documented online) to get detailed information about memory use in SQL Server.
It is quite exceptional for SQL Server to be CPU bound instead of...
October 25, 2011 at 7:08 am
Partitioning is an ADVANCED feature and you will very likely get yourself into unfortunate situations/scenarios if you ask for a few pointers on a forum, read a blog post or...
October 3, 2011 at 6:34 am
I believe Books Online has good instructions on how to enable AWE and large memory access on 32 bit systems. I would also look at dbcc memorystatus (documented online)...
September 22, 2011 at 6:52 am
Here is a blog post from Jonathan Kehayias with some interesting testing: http://sqlskills.com/blogs/jonathan/post/Does-Index-Fragmentation-Matter-with-SSDe28099s.aspx
September 12, 2011 at 6:10 am
Check out SQL Sentry's Event Manager.
And for the actual maintenance itself you absolutely should use ola.hallengren.com's scripts.
Tell them both that TheSQLGuru sent you! 🙂
September 12, 2011 at 6:05 am
never, ever use maintenance plans! get the awesome free and fully documented maintenance suite from ola.hallengren.com.
September 5, 2011 at 8:57 am
Additional guidance can be found here (http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx)
September 2, 2011 at 7:55 am
Viewing 15 posts - 3,166 through 3,180 (of 5,843 total)