Viewing 15 posts - 61 through 75 (of 78 total)
Brandie Tarvin (8/18/2014)
First, let's try approaching this problem as if it has nothing to do with the VLFs issue, okay?
Okay.
What is the schedule (if any) of your snapshot agent?
No schedule
How...
August 19, 2014 at 9:42 am
I didn't use a token so I can't say for sure.
Because of the VLFs issue, I'm assuming it was the log reader.
August 17, 2014 at 7:00 am
Brandie Tarvin (8/15/2014)
What type of replication?
What is the latency / timing?
Approximately how many subscriptions do...
August 16, 2014 at 6:19 am
Changing to 8000 instead of 8GB will most likely help.
I'll will do that. But why? What is this based on?
August 15, 2014 at 2:32 am
I pregrow the files to an appropriate size (sounds like 256GB may need to be considered). But I avoid the multiples of 4GB and will go with 4000MB or 8000MB...
August 14, 2014 at 1:47 am
arnipetursson (8/13/2014)
What is the Autogrowth increment on the log file?Have you double checked?
Triple checked. Definitely 8192 MB.
Just changed it to 8000 MB.
August 14, 2014 at 1:10 am
Thanks for responding.
253952.230 is the size we wanted. (To avoid log growths)
Has been great for a long time.
But the log needed to grow this morning.
253952 / 8192 = 31 growths
277494...
August 13, 2014 at 8:12 am
anthony.green (8/7/2014)
August 7, 2014 at 7:27 am
You get a phone call. The person on the phone says the database is slow. What do you do?
Go to SQLServerCentral.com/forums (Skip Google)
Post the question
Bump every 10 mins until...
August 6, 2014 at 2:14 am
To get an idea on the rows sizes, something like this will help.
SELECTT.Name, SUM(Max_Length) [Aproximate row size in bytes]
FROMsys.Columns C
INNER JOIN sys.Tables T
ON C.[object_id] = T.[object_id]
WHERET.name IN ('Tbl1', 'Tbl2', 'Tbl3',...
August 5, 2014 at 4:23 am
Thanks for the reply Gazareth.
Jes Schultz Borland's[/url] article says you can have OR in filtered indexes, but in the comments Aaron Bertrand corrects this. Apart from your comment I have...
July 29, 2014 at 12:32 am
Great article!
This helped me find a bunch of overlapping indexes.
Besides the is_Disabled flag, I'd also include the has_filter flag and filter_definition as well.
Most of the duplicates I found had filters.
When...
June 17, 2014 at 8:42 am
Thanks for the input guys.
Sorry for the late post back. Priorities shift a lot here.
(Haven't even starting testing backups yet! Sorry Grant. I'll get to it. I promise.)
I'd...
June 13, 2014 at 8:55 am
Jonathans query only returns 8 queries.
OptimizationLvlSubTreeCostusecountssize_in_bytes
FULL250.4238131072
FULL11.585498673728
FULL909.892473728
FULL25.4864163840
FULL112.03424106496
FULL364.273561131072
FULL402.357308229376
FULL231.654594483328
Looks like I need to start tweaking.
Thinking MAXDOP 5, Threshold 10
Maybe a simple question, but how can I best measure the changes?
Can I make...
May 9, 2014 at 2:35 am
Thanks for help guys.
Jack Corbett (5/2/2014)
May 3, 2014 at 6:15 am
Viewing 15 posts - 61 through 75 (of 78 total)