Viewing 15 posts - 21,556 through 21,570 (of 59,072 total)
nwtsqlserv (2/11/2015)
I already have a spitter function mate...please have a read through my question again...thanks.
Could you post the code for your splitter, please?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 6:47 pm
lfajardo (2/11/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 4:43 pm
mark.worthen (2/11/2015)
CELKO (2/11/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 4:08 pm
CELKO (2/11/2015)
{snip}
You talk about the bugs as a hierarchy. Since...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 3:59 pm
mark.worthen (2/11/2015)
I created a table which takes the table and self-joins it nine times giving me up-to 10 generations of duplicates in...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 1:11 pm
Yes. It makes sense.
So, just to clarify... if we did a search for all rows in this table where the "parent" ID was NOT contained in the "child" column...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 9:05 am
mark.worthen (2/11/2015)
Jeff Moden (2/10/2015)
Is it an absolutely true parent/child relationship where no child can be it's own parent and that each child has one and only one parent?
Yes. No...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 8:31 am
Sean Lange (2/11/2015)
admin 31599 (2/11/2015)
--Current queriesSELECT
r.session_id,
s.TEXT,
r.[status],
r.blocking_session_id,
r.cpu_time,
r.total_elapsed_time
FROM sys.dm_exec_requests r
CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS s
Find blocking_session_id or heavy one and then
kill #
If using this script very often the next step is...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 8:22 am
Mighty (2/6/2015)
Jeff Moden (2/6/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 8:01 am
It would be nice to remove unused indexes but it does take a bit to prove that they're truly unused. Unless you have a monster index that we can...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2015 at 7:54 am
halifaxdal (1/19/2015)
Jeff Moden (1/19/2015)
To add to that, you're grouping by the wrong column. You need to group by the BOX TYPE column.
I am not grouping on the wrong column,...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 10, 2015 at 8:30 pm
WhiteLotus (2/10/2015)
the fragmentation level for the first index is very high : 98.77 %
and the second one is : 3.93 %
the fragmentation level will impact on the index...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 10, 2015 at 6:42 pm
dwain.c (2/10/2015)
Jeff Moden (2/10/2015)
Is it an absolutely true parent/child relationship where no child can be it's own parent and that each child has one and only one parent?
Why do I...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 10, 2015 at 6:27 pm
WhiteLotus (2/10/2015)
Thanks for you reply
The largest index is PK_Index1 , size : 15 GB , Pages : 2.051.264
it is clustered Index
The second largest is PK_Index2 ,...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 10, 2015 at 5:48 pm
WhiteLotus (2/10/2015)
My current disk drive has 4 GB free only . Total : 60 GB
It has 1 DB that has 40 GB mdf file and 15 GB ldf...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 10, 2015 at 5:08 pm
Viewing 15 posts - 21,556 through 21,570 (of 59,072 total)