Viewing 15 posts - 15,526 through 15,540 (of 49,552 total)
First hit on google for "MEMORYCLERK_SQLBUFFERPOOL single page allocator"
And the BoL page for the DMV you're using
http://msdn.microsoft.com/en-us/library/ms175019%28v=sql.105%29.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 26, 2012 at 12:16 am
You can look at the execution plan, you're looking for the last arrow, the one pointing at the select operator. It is an estimate, not an actual, assuming stats are...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2012 at 12:12 pm
Move that table to a different database, set that DB to simple recovery. Logging cannot be disabled for an object.
Get more drive space (optimal)
Don't restrict your log file. When it...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 25, 2012 at 9:48 am
It can go straight to the data. The RID is a 8-byte combination of file ID, page number and slot array. The first 2 allow SQL to go straight to...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2012 at 10:48 am
A large log file does not in and of itself cause perforance problems. If a log file fills and has to grow, it will slow down any data modifications occuring...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2012 at 10:27 am
naga.rohitkumar (11/22/2012)
or after rebuilding the table wheter we have to rearrrange the colums of the table which previous ly having
Order of columns in a table has no meaning.
can we rebuild...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2012 at 2:09 am
I assume you mean the log file...
It does get truncated, every time a checkpoint runs. Truncate means make log space reusable, not make log file smaller. The only thing that...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 24, 2012 at 2:07 am
http://ola.hallengren.com/Versions.html
http://sqlfool.com/2011/06/index-defrag-script-v4-1/
Just 2 of the options available.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 1:48 pm
You also might mention that getting the wrong result fast is usually not acceptable to users. Most users would rather have the correct results, even if it does take slightly...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 12:39 pm
SET STATISTICS TIME ON.
And send them this http://blogs.msdn.com/b/davidlean/archive/2009/04/06/sql-server-nolock-hint-other-poor-ideas.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 12:15 pm
SQL_ME_RICH (11/23/2012)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 12:03 pm
Do feel free to test it out though
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 9:08 am
Can you have some patience? It's only been an hour, on a holiday weekend for the US.
If the largest index is 80 GB, then the peak usage of TempDB won't...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 8:30 am
Go rebuild all your indexes.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 5:05 am
sysdatabases is deprecated, included only for backward compatibility with SQL 2000 and should not be used in new development.
Replacement is sys.databases
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 23, 2012 at 5:02 am
Viewing 15 posts - 15,526 through 15,540 (of 49,552 total)