Viewing 11 posts - 16 through 26 (of 26 total)
OK, I'm still experimenting and trying things and I finally got it to use my new Index...but does an index scan versus a seek...Not sure how to approach that. In...
February 22, 2017 at 12:34 pm
Below is the predicate...Ive created an index base on this column, then included all fields within the Output List (20 total) and no good. Tried making an index with the...
February 22, 2017 at 12:16 pm
Thanks for the confirmation. I'm going to dig a bit more and see if there is any refinement available on the AD side to link application to security group. I...
January 24, 2017 at 3:48 pm
TheSQLGuru (7/13/2016)
Glad you found a root cause, and were smart enough to look for other similar situations!Sounds like a use case for http://www.red-gate.com/products/dlm/dlm-dashboard/ :w00t:
Thank You...I am going to make a...
July 13, 2016 at 12:19 pm
Finally found the issue as a result of testing and monitoring as suggested by y'all. The Cartesian Join comment got me thinking...what could cause a TempDB to grow full...
July 13, 2016 at 11:35 am
Lynn Pettis (7/12/2016)
chris_barnhart (7/12/2016)
I've been monitoring the consumption using the first set of SQL, the second one...
July 12, 2016 at 11:10 am
I believe its the latter reason...he had backup jobs set up on the server, but not for this DB. It did in fact grow too large since I truncated...
July 12, 2016 at 11:03 am
Thanks for the advice...we have a contractor on the way, but not until Monday.
I've been monitoring the consumption using the first set of SQL, the second one shows me queued...
July 12, 2016 at 10:49 am
I apologize...i knew I would leave something important out. Error is below:
(Message 2528) DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Message...
July 12, 2016 at 10:39 am
I'm using the following 2 queries in conjunction with each other to actively monitor the problematic jobs:
SELECT
SUM (user_object_reserved_page_count)*8 as user_obj_kb,
SUM (internal_object_reserved_page_count)*8 as internal_obj_kb,
SUM (version_store_reserved_page_count)*8 as version_store_kb,
SUM (unallocated_extent_page_count)*8 as freespace_kb,
SUM...
July 12, 2016 at 10:25 am
Viewing 11 posts - 16 through 26 (of 26 total)