Viewing 15 posts - 331 through 345 (of 758 total)
GilaMonster (11/12/2012)
SQLSACT (11/12/2012)
When using in adding a correlation predicate is redundant?
Written correctly, just about all the time. Please read that blog post and maybe BoL on how the IN function...
November 12, 2012 at 12:50 pm
GilaMonster (11/12/2012)
--1
select T1.Col1 from T1
where exists
(select * from T2 where T2.Col1 = T1.Col1)
--2
select T1.Col1 from T1
where T1.Col1 ...
November 12, 2012 at 11:51 am
Sean Lange (11/9/2012)
select t1.Col1
from Tbl1 t1
join Tbl2 t2 on t1.Col1 = t2.Col2
where t1.Col1 = '52'
That to...
November 10, 2012 at 1:34 pm
GilaMonster (11/9/2012)
SQLSACT (11/9/2012)
I'm trying to understand what happens to clean pages in the buffer pool (when a select statement brings pages into the buffer pool).
What happens to the pages once...
November 10, 2012 at 7:44 am
capnhector (11/9/2012)
SQLSACT (11/9/2012)
GilaMonster (11/9/2012)
SQLSACT (11/9/2012)
I'm trying to understand what happens to clean pages in the buffer pool (when a select statement brings pages into the buffer pool).
What happens to the...
November 10, 2012 at 12:34 am
Roland Alexander STL (11/9/2012)
November 9, 2012 at 2:31 pm
GilaMonster (11/9/2012)
SQLSACT (11/9/2012)
I'm trying to understand what happens to clean pages in the buffer pool (when a select statement brings pages into the buffer pool).
What happens to the pages once...
November 9, 2012 at 12:05 pm
Joie Andrew (11/9/2012)
November 9, 2012 at 4:26 am
Bhuvnesh (11/9/2012)
SQLSACT (11/9/2012)
I'm trying to understand the behaviour of clean pages in the buffer pool
see this
"Dirty" pages are pages where data has been changed but has not yet...
November 9, 2012 at 3:34 am
Bhuvnesh (11/9/2012)
see these linkshttp://www.sqlservercentral.com/blogs/sql_server_dba/2011/11/28/sql-dirty-pages-/
http://msdn.microsoft.com/en-us/library/aa337560(v=sql.105).aspx
Thanks
Those articles deal with Dirty pages in the buffer pool
I'm trying to understand the behaviour of clean pages in the buffer pool
Thanks
November 9, 2012 at 2:59 am
George M Parker (11/7/2012)
Thanks for this
Do you know of a way to check if my an instance is experiecing a plan cache bloat? What I mean is, how can I...
November 7, 2012 at 12:17 pm
George M Parker (11/7/2012)
If you order by Virtual_memory_committed_kb, you should see MEMORYCLERK_SQLBUFFERPOOL as the largest consumer of memory.
select * FROM sys.dm_os_memory_clerks
order by Virtual_memory_committed_kb desc
I'm still trying...
November 7, 2012 at 12:10 pm
George M Parker (11/7/2012)
SQLSACT (11/7/2012)
kylesway (11/7/2012)
These are cached SQL statements or batches that aren't in stored procedures, functions and triggers. This includes any dynamic SQL or raw SELECT...
November 7, 2012 at 11:34 am
kylesway (11/7/2012)
These are cached SQL statements or batches that aren't in stored procedures, functions and triggers. This includes any dynamic SQL or raw SELECT statements sent to the...
November 7, 2012 at 10:56 am
GilaMonster (11/6/2012)
Yup. There are plenty of waits other than lock waits
Thanks
November 7, 2012 at 12:06 am
Viewing 15 posts - 331 through 345 (of 758 total)