Viewing 15 posts - 61 through 75 (of 468 total)
I know this is a really old thread, but I ran into this same problem again and wanted to share the solution I'm using. Essentially, what I did is...
July 19, 2013 at 8:03 am
NJ-DBA (10/24/2012)
October 24, 2012 at 12:21 pm
it sounds like the open transaction is holding a lock that is blocking the other transaction. You need to either commit, or rollback that first transaction to release the...
October 24, 2012 at 12:19 pm
A couple of problems here. First, oddly enough, it looks like sa doesnt have permissions in testdb... sa is a 'login' which doesnt have a user in the...
August 27, 2012 at 10:18 am
I decided I could use execution counts of the top 200 most costly queries (measured by delta total_worker_time daily) as a measure of the "work done" in a day. ...
August 9, 2012 at 12:08 pm
wolfkillj (8/9/2012)
NJ-DBA (8/1/2012)
August 9, 2012 at 12:06 pm
Erin Ramsay (8/8/2012)
So, you're looking for the number of commands SQL Server has processed between StartTime and EndTime? How does this help you?
Basically, yes. Essentially I'm looking to...
August 8, 2012 at 7:34 pm
Testing revealed that the primary factor influencing the duration of the “if exists” query is lack of an index with th filename column in the key. Particularly, this column should...
August 1, 2012 at 11:34 am
Testing revealed that the primary factor influencing the duration of the “if exists” query is lack of an index with th filename column in the key. Particularly, this column...
August 1, 2012 at 10:10 am
dbasql79 (8/1/2012)
Can you run the below query and post the output.select scheduler_id, runnable_tasks_count,status from sys.dm_os_schedulers where scheduler_id < 255
Sometimes, a busy CPU may give this wait type.
never goes above 0....
August 1, 2012 at 7:12 am
William Melcher (8/1/2012)
August 1, 2012 at 5:56 am
I really dont think it's stats or plan related. I was able to recreate the problem on another machine, taking a lot of variables out of the problem. ...
July 27, 2012 at 1:27 am
last one... I really should have waited and put this all as one post...
The app keeps the connection open for the duration of the run and does not do sp_reset_connection.
July 26, 2012 at 6:38 am
also, we are aware there is a missing index that would cover the "if exists" query, but I dont think a missing index would make the duration increase over time......
July 26, 2012 at 6:35 am
Viewing 15 posts - 61 through 75 (of 468 total)