Viewing 15 posts - 181 through 195 (of 286 total)
ugo boy (1/28/2013)
I mean, if there are no searches done on the table
then you should DROP these indexes.
January 28, 2013 at 5:11 pm
Great job!
One more fix:
SELECT REPLACE(REPLACE(sch.name + '_' + t.name, '[', '_'), ']', '_') AS [tname] ,
' update statistics ' + QUOTENAME(sch.name)...
January 28, 2013 at 1:49 pm
Joechelad (1/25/2013)
The best solution is to assign the OS 20%
Very-very bad advice. 20% of 128GB is 25Gb, are you sure you want to allocate so much memory for OS?
January 25, 2013 at 4:19 pm
January 25, 2013 at 4:16 pm
ben.brugman (1/22/2013)
I do not think normal disk IO (SAN) can...
January 22, 2013 at 4:09 pm
I believe that the index you created is far away from perfect.
First you need to find the most selective condition, please post the results of the following queries:
DECLARE @CustAccount varchar(20),
@PriceDate...
December 20, 2012 at 1:47 pm
It looks like cardinality estimation error. Please update statistics WITH FULLSCAN on DataSource and Trade tables.
Also in the original query you can try to replace
INNER JOIN dbo.DataSource ON dbo.DataSource.DataSourceID=dbo.Trade.DataSourceID ...
December 20, 2012 at 1:19 pm
fluffydeadangel (12/20/2012)
fill factor 80%!
Very stupid advice.
December 20, 2012 at 11:12 am
What part of the error message you don't understand?
December 14, 2012 at 1:00 pm
fernandoxdurand (12/11/2012)
My goal is to monitor data for each SP every time one is called. Ideally, this data will be saved to a table.
Why do you need it?
December 11, 2012 at 1:23 pm
What part of the message you don't understand?
You have to put CreatedDate into keys of your index.
October 29, 2012 at 4:22 pm
As 2 LEFT JOINs to the same ZipCodes table.
October 29, 2012 at 4:18 pm
Do you mean that it useful when you want to create script with unpredictable result? Sure it is.
October 18, 2012 at 2:19 pm
Estimate the Size of a Full Database Backup
Before you implement a backup and restore strategy, you should estimate how much disk space a full database backup will use. The backup...
October 17, 2012 at 3:05 pm
Viewing 15 posts - 181 through 195 (of 286 total)