<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Find Largest Supported DML Operation &#8211; Question to You</title>
	<atom:link href="http://blog.sqlauthority.com/2010/06/16/sql-server-find-largest-supported-dml-operation-question-to-you/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2010/06/16/sql-server-find-largest-supported-dml-operation-question-to-you/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sat, 25 May 2013 01:31:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQLAuthority News – A Monthly Round Up of SQLAuthority Blog Posts Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2010/06/16/sql-server-find-largest-supported-dml-operation-question-to-you/#comment-78219</link>
		<dc:creator><![CDATA[SQLAuthority News – A Monthly Round Up of SQLAuthority Blog Posts Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 01:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9263#comment-78219</guid>
		<description><![CDATA[[...] How do one measure what is the largest operation of the SQL Server: SQL SERVER – Find Largest Supported DML Operation – Question to You [...]]]></description>
		<content:encoded><![CDATA[<p>[...] How do one measure what is the largest operation of the SQL Server: SQL SERVER – Find Largest Supported DML Operation – Question to You [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aasim Abdullah</title>
		<link>http://blog.sqlauthority.com/2010/06/16/sql-server-find-largest-supported-dml-operation-question-to-you/#comment-76635</link>
		<dc:creator><![CDATA[Aasim Abdullah]]></dc:creator>
		<pubDate>Thu, 17 Jun 2010 09:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9263#comment-76635</guid>
		<description><![CDATA[Delete all (*) operation on  largest table of database would be the most largest DML operation. So The log size must be at least twice the size of largest table size.

Table physical size can be obtained by...

SELECT LEFT(OBJECT_NAME(id), 30) AS [Table],dpages AS PagesUsed,
CAST(CAST(reserved * 8192 AS DECIMAL(10,1)) / 1000000.0 AS DECIMAL(10,1)) AS &#039;Allocated (in M)&#039;,
CAST(CAST(dpages * 8192 AS DECIMAL(10,1)) / 1000000.0 AS DECIMAL(10,1)) AS &#039;Used (in M)&#039;,
CAST(CAST((reserved - dpages) * 8192 AS DECIMAL(10,1)) / 1000000.0 AS DECIMAL(10,1)) AS &#039;Unused (in M)&#039;,
rowcnt AS &#039;Row Count (approx.)&#039;
FROM sysindexes
WHERE indid IN (0, 1) AND OBJECT_NAME(id) NOT LIKE &#039;sys%&#039; AND OBJECT_NAME(id) NOT LIKE &#039;dt%&#039;
AND reserved * 8192 &gt;= 5000000
ORDER BY reserved DESC, LEFT(OBJECT_NAME(id), 30)]]></description>
		<content:encoded><![CDATA[<p>Delete all (*) operation on  largest table of database would be the most largest DML operation. So The log size must be at least twice the size of largest table size.</p>
<p>Table physical size can be obtained by&#8230;</p>
<p>SELECT LEFT(OBJECT_NAME(id), 30) AS [Table],dpages AS PagesUsed,<br />
CAST(CAST(reserved * 8192 AS DECIMAL(10,1)) / 1000000.0 AS DECIMAL(10,1)) AS &#8216;Allocated (in M)&#8217;,<br />
CAST(CAST(dpages * 8192 AS DECIMAL(10,1)) / 1000000.0 AS DECIMAL(10,1)) AS &#8216;Used (in M)&#8217;,<br />
CAST(CAST((reserved &#8211; dpages) * 8192 AS DECIMAL(10,1)) / 1000000.0 AS DECIMAL(10,1)) AS &#8216;Unused (in M)&#8217;,<br />
rowcnt AS &#8216;Row Count (approx.)&#8217;<br />
FROM sysindexes<br />
WHERE indid IN (0, 1) AND OBJECT_NAME(id) NOT LIKE &#8216;sys%&#8217; AND OBJECT_NAME(id) NOT LIKE &#8216;dt%&#8217;<br />
AND reserved * 8192 &gt;= 5000000<br />
ORDER BY reserved DESC, LEFT(OBJECT_NAME(id), 30)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramdas</title>
		<link>http://blog.sqlauthority.com/2010/06/16/sql-server-find-largest-supported-dml-operation-question-to-you/#comment-76534</link>
		<dc:creator><![CDATA[Ramdas]]></dc:creator>
		<pubDate>Wed, 16 Jun 2010 17:39:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9263#comment-76534</guid>
		<description><![CDATA[Would this be based on the size of the largest insert into a table(s) multiplied by the number of records during a given timeframe. Really interested to know the answer(s).]]></description>
		<content:encoded><![CDATA[<p>Would this be based on the size of the largest insert into a table(s) multiplied by the number of records during a given timeframe. Really interested to know the answer(s).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renju</title>
		<link>http://blog.sqlauthority.com/2010/06/16/sql-server-find-largest-supported-dml-operation-question-to-you/#comment-76442</link>
		<dc:creator><![CDATA[Renju]]></dc:creator>
		<pubDate>Wed, 16 Jun 2010 04:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9263#comment-76442</guid>
		<description><![CDATA[In the performance lab of my company we had done a DML operation (data correction script) over 1 billion records over sql server 2008. Thats one of the biggest DML operation i had done. Normally our data correction script will have reverse option but here we done without that to reduce overhead.]]></description>
		<content:encoded><![CDATA[<p>In the performance lab of my company we had done a DML operation (data correction script) over 1 billion records over sql server 2008. Thats one of the biggest DML operation i had done. Normally our data correction script will have reverse option but here we done without that to reduce overhead.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
