<?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; Shrinking NDF and MDF Files &#8211; Readers’ Opinion</title>
	<atom:link href="http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%E2%80%99%C2%A0opinion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Wed, 22 May 2013 19:03:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Venkata Suresh Raavi</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-471601</link>
		<dc:creator><![CDATA[Venkata Suresh Raavi]]></dc:creator>
		<pubDate>Wed, 08 May 2013 22:00:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-471601</guid>
		<description><![CDATA[Looks like the you are on the assumption that a Primary Data File must have a .mdf extension, and a Secondary Data File must have a .ndf extension, which is wrong.

SQL Server DO NOT enforce the .mdf/.ndf/.ldf File Name extensions.
For more info, please refer:
http://sqlserverzest.com/2011/11/23/can-a-database-have-more-than-one-primary-data-mdf-file/]]></description>
		<content:encoded><![CDATA[<p>Looks like the you are on the assumption that a Primary Data File must have a .mdf extension, and a Secondary Data File must have a .ndf extension, which is wrong.</p>
<p>SQL Server DO NOT enforce the .mdf/.ndf/.ldf File Name extensions.<br />
For more info, please refer:<br />
<a href="http://sqlserverzest.com/2011/11/23/can-a-database-have-more-than-one-primary-data-mdf-file/" rel="nofollow">http://sqlserverzest.com/2011/11/23/can-a-database-have-more-than-one-primary-data-mdf-file/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Addie</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-253468</link>
		<dc:creator><![CDATA[Addie]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 10:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-253468</guid>
		<description><![CDATA[No! TruncateOnly does not rearrange the pages it just releases the unallocated space at the end of the file to the operating system and hence the file appears to be shrunk.


whereas NoTruncate rearranges all the pages and brings unallocated pages to the end of the file but DOES NOT release the free space back to the operating system.(***file does not appear to have shrunk, it remains the same size)

BEAR IN MIND

TRUNCATEONLY:- NO REARRANGE just Release empty space at the end of the file

NOTRUNCATE:- ONLY REARRANGE but does not release space to the OS. the size of the file remains the same..



so do a NOTRUNCATE to get the free pages to the end of the file and then do a TRUNCATEONLY to release the space back to the OS(i mean..SHRINK THE FILE PHYSICALLY)]]></description>
		<content:encoded><![CDATA[<p>No! TruncateOnly does not rearrange the pages it just releases the unallocated space at the end of the file to the operating system and hence the file appears to be shrunk.</p>
<p>whereas NoTruncate rearranges all the pages and brings unallocated pages to the end of the file but DOES NOT release the free space back to the operating system.(***file does not appear to have shrunk, it remains the same size)</p>
<p>BEAR IN MIND</p>
<p>TRUNCATEONLY:- NO REARRANGE just Release empty space at the end of the file</p>
<p>NOTRUNCATE:- ONLY REARRANGE but does not release space to the OS. the size of the file remains the same..</p>
<p>so do a NOTRUNCATE to get the free pages to the end of the file and then do a TRUNCATEONLY to release the space back to the OS(i mean..SHRINK THE FILE PHYSICALLY)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coy Bernardo</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-252931</link>
		<dc:creator><![CDATA[Coy Bernardo]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 20:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-252931</guid>
		<description><![CDATA[Thank you Addie, that makes sense and I definitely hear your warning about shrinking.  

So to my understanding, if I do a DBCC SHRINKFILE without a NOTRUNCATE or a TRUNCATEONLY it will both rearrange the pages and release the space at the end of the file?  Is that correct?

Thanks again.  Your input really helped us out.

Coy]]></description>
		<content:encoded><![CDATA[<p>Thank you Addie, that makes sense and I definitely hear your warning about shrinking.  </p>
<p>So to my understanding, if I do a DBCC SHRINKFILE without a NOTRUNCATE or a TRUNCATEONLY it will both rearrange the pages and release the space at the end of the file?  Is that correct?</p>
<p>Thanks again.  Your input really helped us out.</p>
<p>Coy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Addie</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-252847</link>
		<dc:creator><![CDATA[Addie]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 14:08:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-252847</guid>
		<description><![CDATA[Hi Coy,

The command you are using to shrinkfile only returns free space at the end of the file to the operating system, so it is possible that the database does not have any free space at the end of the file.

instead the data file may have free space(unallocated pages) at the beginning or in the middle of the file, so in order to get this free space to the end of the file we have to do a 

DBCC SHRINKFILE(*****,*****, NOTRUNCATE)

We have to use the NOTRUNCATE option to get the free space to the end of the data file.

NOTRUNCATE  rearranges all the objects in the database and pushes the unallocated pages to the end of the file

After you do a NOTRUNCATE you then run the following Command to release the free space at the end of the file to the OS

DBCC SHRINKFILE(****,****,TRUNCATEONLY)

***Please note SHRINKFILE(***,***,NOTRUNCATE) is not advisable as it rearranges all the pages in a database (actually shriking is not advisable!!)

***NOTRUNCATE option is also only applicable to Data file not Log files.

NOTE:-I would advise you to rebuild all your indices(index&#039;s) after you perform this.

bear in mind  shrink NOTRUNCATE would take loads of time as it rearranges all the pages in a database ....]]></description>
		<content:encoded><![CDATA[<p>Hi Coy,</p>
<p>The command you are using to shrinkfile only returns free space at the end of the file to the operating system, so it is possible that the database does not have any free space at the end of the file.</p>
<p>instead the data file may have free space(unallocated pages) at the beginning or in the middle of the file, so in order to get this free space to the end of the file we have to do a </p>
<p>DBCC SHRINKFILE(*****,*****, NOTRUNCATE)</p>
<p>We have to use the NOTRUNCATE option to get the free space to the end of the data file.</p>
<p>NOTRUNCATE  rearranges all the objects in the database and pushes the unallocated pages to the end of the file</p>
<p>After you do a NOTRUNCATE you then run the following Command to release the free space at the end of the file to the OS</p>
<p>DBCC SHRINKFILE(****,****,TRUNCATEONLY)</p>
<p>***Please note SHRINKFILE(***,***,NOTRUNCATE) is not advisable as it rearranges all the pages in a database (actually shriking is not advisable!!)</p>
<p>***NOTRUNCATE option is also only applicable to Data file not Log files.</p>
<p>NOTE:-I would advise you to rebuild all your indices(index&#8217;s) after you perform this.</p>
<p>bear in mind  shrink NOTRUNCATE would take loads of time as it rearranges all the pages in a database &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coy Bernardo</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-252655</link>
		<dc:creator><![CDATA[Coy Bernardo]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 01:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-252655</guid>
		<description><![CDATA[Hello,

We are trying to shrink our database from 2.4TB to 1.5TB.  Most of the data is on one data file.  We ran the operation below and we specify using TRUNCATEONLY so that the shrink operation doesn&#039;t get logged.

The operation completed but the OS or SQL Server has not given back the space.  

Any feedback on why the SHRINK operation would not fully complete?  

We&#039;ve investigated many angles, but still haven&#039;t been able to find the bottleneck.

Thanks,

Coy Bernardo

USE [UMG_GIMM_EDW]
GO
DBCC SHRINKFILE (N&#039;UMG_GIMM_EDW_FG1_Dat1&#039; , 2331220, TRUNCATEONLY)
GO]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>We are trying to shrink our database from 2.4TB to 1.5TB.  Most of the data is on one data file.  We ran the operation below and we specify using TRUNCATEONLY so that the shrink operation doesn&#8217;t get logged.</p>
<p>The operation completed but the OS or SQL Server has not given back the space.  </p>
<p>Any feedback on why the SHRINK operation would not fully complete?  </p>
<p>We&#8217;ve investigated many angles, but still haven&#8217;t been able to find the bottleneck.</p>
<p>Thanks,</p>
<p>Coy Bernardo</p>
<p>USE [UMG_GIMM_EDW]<br />
GO<br />
DBCC SHRINKFILE (N&#8217;UMG_GIMM_EDW_FG1_Dat1&#8242; , 2331220, TRUNCATEONLY)<br />
GO</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr. Dweeb</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-193162</link>
		<dc:creator><![CDATA[Dr. Dweeb]]></dc:creator>
		<pubDate>Fri, 11 Nov 2011 13:24:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-193162</guid>
		<description><![CDATA[Shrinking database partitions to reclaim space is not arbitrarily bad as you and your ilk happily seem to suggest.There are some very good reasons to do it as soon as you get beyond the trivial world where most of your readers live.

When using partitions in a circular rotation, it is desirable to shrink emptied partitions to a minimum size until they are next in the rotation. I my test example I have 12 partitions (1 per month). I only wish to keep 3-4 months of data online, deleting 1 day at a time and shrinking the partition when it is empty (where is TRUNCATE table (partition_id) when you need it? MIA and no where in sight - what else should one expect from MS). This approach reduces the physical disk space requirements by ca. 2/3.

My issue now is that in my long running test scenario, it is now in fact impossible to shrink some of the empty partititions, and I am left with wasted space that I cannot reclaim. For some reason the ability to reclaim space has broken in this test database. 

I am running 2008R2 (10.50.1797)

If you have any clues why an empty partition might not shrink other than SQLServer being broken, I would be happy to hear them.]]></description>
		<content:encoded><![CDATA[<p>Shrinking database partitions to reclaim space is not arbitrarily bad as you and your ilk happily seem to suggest.There are some very good reasons to do it as soon as you get beyond the trivial world where most of your readers live.</p>
<p>When using partitions in a circular rotation, it is desirable to shrink emptied partitions to a minimum size until they are next in the rotation. I my test example I have 12 partitions (1 per month). I only wish to keep 3-4 months of data online, deleting 1 day at a time and shrinking the partition when it is empty (where is TRUNCATE table (partition_id) when you need it? MIA and no where in sight &#8211; what else should one expect from MS). This approach reduces the physical disk space requirements by ca. 2/3.</p>
<p>My issue now is that in my long running test scenario, it is now in fact impossible to shrink some of the empty partititions, and I am left with wasted space that I cannot reclaim. For some reason the ability to reclaim space has broken in this test database. </p>
<p>I am running 2008R2 (10.50.1797)</p>
<p>If you have any clues why an empty partition might not shrink other than SQLServer being broken, I would be happy to hear them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-148002</link>
		<dc:creator><![CDATA[Glenn]]></dc:creator>
		<pubDate>Wed, 13 Jul 2011 13:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-148002</guid>
		<description><![CDATA[What about space that is made available with a delete? Is this space not used by SQL until such time as a shrink is done?]]></description>
		<content:encoded><![CDATA[<p>What about space that is made available with a delete? Is this space not used by SQL until such time as a shrink is done?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Database Worst Practices – New Town and New Job and New Disasters Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-147568</link>
		<dc:creator><![CDATA[SQL SERVER – Database Worst Practices – New Town and New Job and New Disasters Journey to SQLAuthority]]></dc:creator>
		<pubDate>Tue, 12 Jul 2011 01:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-147568</guid>
		<description><![CDATA[[...] Shrinking NDF and MDF Files – Readers’ Opinion [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Shrinking NDF and MDF Files – Readers’ Opinion [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uziel</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-126143</link>
		<dc:creator><![CDATA[Uziel]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 22:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-126143</guid>
		<description><![CDATA[Zoran,

The .ndf extension is suggested by microsoft as a easy way to identify your secondary data files from primary data files (.mdf), you can use any extension you want in those files, always trying to be consistent.

In my humble opinion i recommend you to use the &quot;standard&quot; extensions (.mdf, .ndf, .ldf) for your DB files in case of any other DBA get his hands on them, that will be easier to undestand.]]></description>
		<content:encoded><![CDATA[<p>Zoran,</p>
<p>The .ndf extension is suggested by microsoft as a easy way to identify your secondary data files from primary data files (.mdf), you can use any extension you want in those files, always trying to be consistent.</p>
<p>In my humble opinion i recommend you to use the &#8220;standard&#8221; extensions (.mdf, .ndf, .ldf) for your DB files in case of any other DBA get his hands on them, that will be easier to undestand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sunil Raghav</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-82815</link>
		<dc:creator><![CDATA[Sunil Raghav]]></dc:creator>
		<pubDate>Tue, 03 Aug 2010 06:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-82815</guid>
		<description><![CDATA[Is a very good explanation about Shrinking DataBase and how it works]]></description>
		<content:encoded><![CDATA[<p>Is a very good explanation about Shrinking DataBase and how it works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zoran</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-79886</link>
		<dc:creator><![CDATA[Zoran]]></dc:creator>
		<pubDate>Mon, 12 Jul 2010 12:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-79886</guid>
		<description><![CDATA[When adding this extra files, should DBA name the secondary files .ndf, or does the RDBMS do this automatically....?

I am experimenting with one of our (critical and huge) databases that initially was created with two physical files, .mdf and ldf. But now I wanted to split the things up a bit, and I added several logical/physical files, both in the same filegroup, and in additional filegroup. When adding those files, I chose their extensions to be .mdf, and there are several .mdf files and one .ldf file now - no .ndf&#039;s.

I would also like to post a question about the possibilities for partitioning a database (i.e. spread it across several physical files) - I experimented with partitioning some tables, but that seems to be too complicated...

Thanks in advance!

Regards, Zoran]]></description>
		<content:encoded><![CDATA[<p>When adding this extra files, should DBA name the secondary files .ndf, or does the RDBMS do this automatically&#8230;.?</p>
<p>I am experimenting with one of our (critical and huge) databases that initially was created with two physical files, .mdf and ldf. But now I wanted to split the things up a bit, and I added several logical/physical files, both in the same filegroup, and in additional filegroup. When adding those files, I chose their extensions to be .mdf, and there are several .mdf files and one .ldf file now &#8211; no .ndf&#8217;s.</p>
<p>I would also like to post a question about the possibilities for partitioning a database (i.e. spread it across several physical files) &#8211; I experimented with partitioning some tables, but that seems to be too complicated&#8230;</p>
<p>Thanks in advance!</p>
<p>Regards, Zoran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: krishna</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-79183</link>
		<dc:creator><![CDATA[krishna]]></dc:creator>
		<pubDate>Thu, 08 Jul 2010 08:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-79183</guid>
		<description><![CDATA[i am able to export data to text file in sql server 2005  using  cmd shell command. but i am not able to export clomns please help me]]></description>
		<content:encoded><![CDATA[<p>i am able to export data to text file in sql server 2005  using  cmd shell command. but i am not able to export clomns please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sango</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-79101</link>
		<dc:creator><![CDATA[sango]]></dc:creator>
		<pubDate>Wed, 07 Jul 2010 16:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-79101</guid>
		<description><![CDATA[this was great I didnt know that !
as m new with ms sql]]></description>
		<content:encoded><![CDATA[<p>this was great I didnt know that !<br />
as m new with ms sql</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swetha</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-78249</link>
		<dc:creator><![CDATA[swetha]]></dc:creator>
		<pubDate>Wed, 30 Jun 2010 06:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-78249</guid>
		<description><![CDATA[Thanks for the wonderful article.
It was very informative and clear....!!!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the wonderful article.<br />
It was very informative and clear&#8230;.!!!</p>
]]></content:encoded>
	</item>
	<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/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-78220</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:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-78220</guid>
		<description><![CDATA[[...] also received couple of excellent guest blog posts as well. Imran Mohammed &#8211; SQL SERVER – Shrinking NDF and MDF Files – Readers’ Opinion and Jacob Sebastian SQLAuthority News – Guest Post – SELECT * FROM XML – Jacob Sebastian [...]]]></description>
		<content:encoded><![CDATA[<p>[...] also received couple of excellent guest blog posts as well. Imran Mohammed &#8211; SQL SERVER – Shrinking NDF and MDF Files – Readers’ Opinion and Jacob Sebastian SQLAuthority News – Guest Post – SELECT * FROM XML – Jacob Sebastian [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: normant</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-77439</link>
		<dc:creator><![CDATA[normant]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 15:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-77439</guid>
		<description><![CDATA[Great Article !]]></description>
		<content:encoded><![CDATA[<p>Great Article !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dileep</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-77187</link>
		<dc:creator><![CDATA[Dileep]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 18:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-77187</guid>
		<description><![CDATA[great job imran]]></description>
		<content:encoded><![CDATA[<p>great job imran</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naresh R. Shriramoju</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-77147</link>
		<dc:creator><![CDATA[Naresh R. Shriramoju]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 10:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-77147</guid>
		<description><![CDATA[Thanks For this article , it will helps lot to me...]]></description>
		<content:encoded><![CDATA[<p>Thanks For this article , it will helps lot to me&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-76611</link>
		<dc:creator><![CDATA[chris]]></dc:creator>
		<pubDate>Thu, 17 Jun 2010 06:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-76611</guid>
		<description><![CDATA[Thanks for the tutorial.
I gained a lot while reading this.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial.<br />
I gained a lot while reading this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramdas</title>
		<link>http://blog.sqlauthority.com/2010/06/15/sql-server-shrinking-ndf-and-mdf-files-readers%e2%80%99%c2%a0opinion/#comment-76370</link>
		<dc:creator><![CDATA[Ramdas]]></dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:00:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=9256#comment-76370</guid>
		<description><![CDATA[Great writeup from Imran and you, nicely laid out concepts about .mdf,.ndf,.ldf and shrinking files. There have been discussions about how shrink options need to be made more restricitve that make it available at a click of a buttion. This can solve lot of problems associated with shrinking.]]></description>
		<content:encoded><![CDATA[<p>Great writeup from Imran and you, nicely laid out concepts about .mdf,.ndf,.ldf and shrinking files. There have been discussions about how shrink options need to be made more restricitve that make it available at a click of a buttion. This can solve lot of problems associated with shrinking.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
