<?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 the Size of Database File &#8211; Find the Size of Log File</title>
	<atom:link href="http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: zabed</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-461902</link>
		<dc:creator><![CDATA[zabed]]></dc:creator>
		<pubDate>Tue, 23 Apr 2013 05:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-461902</guid>
		<description><![CDATA[Recovery Model: Simple
DB Size: 70 GB
Server Free Space: 145 GB
Every evening when we leave office LOG File is 20-30 GB or Less. But at midnight the log file size grows and takes all free space. The applications stops. In morning we shrink the log file down to 1 MB. All the day it works ok. We don’t run any process at midnight. Please advice how to handle the situation]]></description>
		<content:encoded><![CDATA[<p>Recovery Model: Simple<br />
DB Size: 70 GB<br />
Server Free Space: 145 GB<br />
Every evening when we leave office LOG File is 20-30 GB or Less. But at midnight the log file size grows and takes all free space. The applications stops. In morning we shrink the log file down to 1 MB. All the day it works ok. We don’t run any process at midnight. Please advice how to handle the situation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sukhee</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-458325</link>
		<dc:creator><![CDATA[sukhee]]></dc:creator>
		<pubDate>Thu, 18 Apr 2013 02:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-458325</guid>
		<description><![CDATA[Thank you!]]></description>
		<content:encoded><![CDATA[<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseer</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-445396</link>
		<dc:creator><![CDATA[Naseer]]></dc:creator>
		<pubDate>Wed, 27 Mar 2013 14:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-445396</guid>
		<description><![CDATA[Hi Pinal-
Actually I just wanted to know only the user database information. For that I just tweak your query a bit. 
SELECT Distinct DB.name As DatabaseName,
	   DB.recovery_model,
	   mf.name as logical_name,
	   mf.physical_name,
	  (size*8)/1024 SizeMB
FROM sys.master_files mf
join sys.databases DB 
on mf.database_id = DB.database_id
WHERE  mf.database_id &gt; 4
The reason I put WHERE  mf.database_id &gt; 4 is to get only user databases list.First 4 database_id’s are for system databases.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal-<br />
Actually I just wanted to know only the user database information. For that I just tweak your query a bit.<br />
SELECT Distinct DB.name As DatabaseName,<br />
	   DB.recovery_model,<br />
	   mf.name as logical_name,<br />
	   mf.physical_name,<br />
	  (size*8)/1024 SizeMB<br />
FROM sys.master_files mf<br />
join sys.databases DB<br />
on mf.database_id = DB.database_id<br />
WHERE  mf.database_id &gt; 4<br />
The reason I put WHERE  mf.database_id &gt; 4 is to get only user databases list.First 4 database_id’s are for system databases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhishek</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-424988</link>
		<dc:creator><![CDATA[Abhishek]]></dc:creator>
		<pubDate>Thu, 21 Feb 2013 07:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-424988</guid>
		<description><![CDATA[Can you provide me a query that will list all the DBnames that have log file size more than 10 GB?]]></description>
		<content:encoded><![CDATA[<p>Can you provide me a query that will list all the DBnames that have log file size more than 10 GB?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #015 &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-419686</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #015 &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 09 Feb 2013 01:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-419686</guid>
		<description><![CDATA[[...] Find the Size of Database File – Find the Size of Log File A simple straight to the script blog post! [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Find the Size of Database File – Find the Size of Log File A simple straight to the script blog post! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Conficker</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-382652</link>
		<dc:creator><![CDATA[Conficker]]></dc:creator>
		<pubDate>Wed, 28 Nov 2012 15:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-382652</guid>
		<description><![CDATA[Hi Pinal,

Putting new steps towards DBA very good script, Thank You.

Just quick question, The &#039;growth&#039; field in &#039;sys.master_files&#039; table, does it stamp date or time as well, like growth of the TestDatabase since this time ??

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Putting new steps towards DBA very good script, Thank You.</p>
<p>Just quick question, The &#8216;growth&#8217; field in &#8216;sys.master_files&#8217; table, does it stamp date or time as well, like growth of the TestDatabase since this time ??</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harsha</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-378110</link>
		<dc:creator><![CDATA[harsha]]></dc:creator>
		<pubDate>Wed, 21 Nov 2012 14:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-378110</guid>
		<description><![CDATA[Please prefer to use either sys.database_files or sys.sysfiles to get the db sizes. Try to avoid using sys.master_files dmv.. 

To answer why .. See the results below ..

USE tempdb
GO

SELECT SUM(SIZE)/128 FROM SYS.DATABASE_FILES;
-- 29754 MB

SELECT SUM(SIZE)/128 FROM SYS.master_files
WHERE database_id = DB_ID(&#039;TEMPDB&#039;)
-- 18432 MB]]></description>
		<content:encoded><![CDATA[<p>Please prefer to use either sys.database_files or sys.sysfiles to get the db sizes. Try to avoid using sys.master_files dmv.. </p>
<p>To answer why .. See the results below ..</p>
<p>USE tempdb<br />
GO</p>
<p>SELECT SUM(SIZE)/128 FROM SYS.DATABASE_FILES;<br />
&#8211; 29754 MB</p>
<p>SELECT SUM(SIZE)/128 FROM SYS.master_files<br />
WHERE database_id = DB_ID(&#8216;TEMPDB&#8217;)<br />
&#8211; 18432 MB</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gp</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-377984</link>
		<dc:creator><![CDATA[gp]]></dc:creator>
		<pubDate>Wed, 21 Nov 2012 09:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-377984</guid>
		<description><![CDATA[If doing in ver. 8 (wait, what?), change database_id to dbid, and sys.master_files to master.dbo.sysaltfiles.]]></description>
		<content:encoded><![CDATA[<p>If doing in ver. 8 (wait, what?), change database_id to dbid, and sys.master_files to master.dbo.sysaltfiles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BaluK</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-324125</link>
		<dc:creator><![CDATA[BaluK]]></dc:creator>
		<pubDate>Fri, 03 Aug 2012 10:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-324125</guid>
		<description><![CDATA[CREATE TABLE #f
(
name VARCHAR(255),
rows INT ,
reserved varchar(255),
data varchar(255),
index_size varchar(255),
unused varchar(255)
)


INSERT into #f

EXEC sp_MSForEachtable &#039;sp_spaceused &#039;&#039;?&#039;&#039;&#039;

SELECT * FROM #f

DROP TABLE #f
// Hope this will help]]></description>
		<content:encoded><![CDATA[<p>CREATE TABLE #f<br />
(<br />
name VARCHAR(255),<br />
rows INT ,<br />
reserved varchar(255),<br />
data varchar(255),<br />
index_size varchar(255),<br />
unused varchar(255)<br />
)</p>
<p>INSERT into #f</p>
<p>EXEC sp_MSForEachtable &#8216;sp_spaceused &#8221;?&#8221;&#8217;</p>
<p>SELECT * FROM #f</p>
<p>DROP TABLE #f<br />
// Hope this will help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-323143</link>
		<dc:creator><![CDATA[vijay]]></dc:creator>
		<pubDate>Wed, 01 Aug 2012 17:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-323143</guid>
		<description><![CDATA[Can you please give me the script to get the table wise size]]></description>
		<content:encoded><![CDATA[<p>Can you please give me the script to get the table wise size</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-285910</link>
		<dc:creator><![CDATA[Jim]]></dc:creator>
		<pubDate>Fri, 18 May 2012 23:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-285910</guid>
		<description><![CDATA[This script is great. I am new to learning DBA role. Is the output for file size reflected in Kilobytes or Megabytes?]]></description>
		<content:encoded><![CDATA[<p>This script is great. I am new to learning DBA role. Is the output for file size reflected in Kilobytes or Megabytes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-282358</link>
		<dc:creator><![CDATA[matt]]></dc:creator>
		<pubDate>Sun, 06 May 2012 09:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-282358</guid>
		<description><![CDATA[we have sap server on msssql 2005 , 4 datafile (DATA1,DATA2...DATA4) with 26,880 MB each , unrestricted growth by 60 MB .Free space on Disk is 67,224 MB.Outof  four data file , Three file status show &#039;NO FREE SPACE IN FILE&quot; and one shows autogrown with enough space to grow.
Free space on these datafiles shows (PCT_FREE) - 0.

Please advice why this message ,as our all data  file are - autoextend enabled.
what would be the max. size of datafile .whats the work around for this....

thanks]]></description>
		<content:encoded><![CDATA[<p>we have sap server on msssql 2005 , 4 datafile (DATA1,DATA2&#8230;DATA4) with 26,880 MB each , unrestricted growth by 60 MB .Free space on Disk is 67,224 MB.Outof  four data file , Three file status show &#8216;NO FREE SPACE IN FILE&#8221; and one shows autogrown with enough space to grow.<br />
Free space on these datafiles shows (PCT_FREE) &#8211; 0.</p>
<p>Please advice why this message ,as our all data  file are &#8211; autoextend enabled.<br />
what would be the max. size of datafile .whats the work around for this&#8230;.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rmerriam</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-279837</link>
		<dc:creator><![CDATA[rmerriam]]></dc:creator>
		<pubDate>Thu, 26 Apr 2012 14:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-279837</guid>
		<description><![CDATA[This list the files and sizes for all attached databases on server ...

SELECT db.name AS [DB Name]
      ,dbf.[physical_name] AS [File Name]
      ,dbf.[size] AS [File Size]
      ,db.[create_date] AS [Create Date]
      ,ss.[Last User Event]
      ,ss.[Last User Update]
FROM sys.[databases] AS db
   LEFT OUTER JOIN sys.[master_files] AS dbf ON [db].[database_id] = [dbf].[database_id]
   LEFT OUTER JOIN (SELECT database_id,max(last_user_update) AS [Last User Update], ISNULL(ISNULL(max(last_user_update),max([last_user_seek])),max([last_user_lookup])) AS [Last User Event]
 FROM sys.[dm_db_index_usage_stats] GROUP BY database_id) AS ss ON ss.[database_id] = db.[database_id]
 ORDER BY db.[name],dbf.[physical_name]]]></description>
		<content:encoded><![CDATA[<p>This list the files and sizes for all attached databases on server &#8230;</p>
<p>SELECT db.name AS [DB Name]<br />
      ,dbf.[physical_name] AS [File Name]<br />
      ,dbf.[size] AS [File Size]<br />
      ,db.[create_date] AS [Create Date]<br />
      ,ss.[Last User Event]<br />
      ,ss.[Last User Update]<br />
FROM sys.[databases] AS db<br />
   LEFT OUTER JOIN sys.[master_files] AS dbf ON [db].[database_id] = [dbf].[database_id]<br />
   LEFT OUTER JOIN (SELECT database_id,max(last_user_update) AS [Last User Update], ISNULL(ISNULL(max(last_user_update),max([last_user_seek])),max([last_user_lookup])) AS [Last User Event]<br />
 FROM sys.[dm_db_index_usage_stats] GROUP BY database_id) AS ss ON ss.[database_id] = db.[database_id]<br />
 ORDER BY db.[name],dbf.[physical_name]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rod Merritt</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-264932</link>
		<dc:creator><![CDATA[Rod Merritt]]></dc:creator>
		<pubDate>Mon, 19 Mar 2012 16:13:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-264932</guid>
		<description><![CDATA[As usual, big help finding something fast when I need it! Thanks.]]></description>
		<content:encoded><![CDATA[<p>As usual, big help finding something fast when I need it! Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hiren</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-255541</link>
		<dc:creator><![CDATA[Hiren]]></dc:creator>
		<pubDate>Thu, 23 Feb 2012 05:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-255541</guid>
		<description><![CDATA[To check log space:

dbcc sqlperf (logspace);]]></description>
		<content:encoded><![CDATA[<p>To check log space:</p>
<p>dbcc sqlperf (logspace);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uday</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-254937</link>
		<dc:creator><![CDATA[Uday]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 18:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-254937</guid>
		<description><![CDATA[very helpful..Thank You]]></description>
		<content:encoded><![CDATA[<p>very helpful..Thank You</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mary</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-252051</link>
		<dc:creator><![CDATA[Mary]]></dc:creator>
		<pubDate>Mon, 13 Feb 2012 13:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-252051</guid>
		<description><![CDATA[Hi,

What is the equivalent in SQL 2000?]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What is the equivalent in SQL 2000?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tsawm</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-218310</link>
		<dc:creator><![CDATA[Tsawm]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 07:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-218310</guid>
		<description><![CDATA[Thank you very much]]></description>
		<content:encoded><![CDATA[<p>Thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-182957</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 24 Oct 2011 16:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-182957</guid>
		<description><![CDATA[Also make sure to know about implicit convertions
http://beyondrelational.com/blogs/madhivanan/archive/2008/01/16/beware-of-implicit-conversions.aspx]]></description>
		<content:encoded><![CDATA[<p>Also make sure to know about implicit convertions<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2008/01/16/beware-of-implicit-conversions.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2008/01/16/beware-of-implicit-conversions.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Troy</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-181317</link>
		<dc:creator><![CDATA[Troy]]></dc:creator>
		<pubDate>Thu, 20 Oct 2011 22:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-181317</guid>
		<description><![CDATA[And if you alter it just a little bit, you can have them summed by database:

SELECT DB_NAME(database_id) AS DatabaseName,
	SUM((size*8)/1024) SizeMB
FROM sys.master_files
group by DB_NAME(database_id)
order by DB_NAME(database_id)]]></description>
		<content:encoded><![CDATA[<p>And if you alter it just a little bit, you can have them summed by database:</p>
<p>SELECT DB_NAME(database_id) AS DatabaseName,<br />
	SUM((size*8)/1024) SizeMB<br />
FROM sys.master_files<br />
group by DB_NAME(database_id)<br />
order by DB_NAME(database_id)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erika</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-163676</link>
		<dc:creator><![CDATA[Erika]]></dc:creator>
		<pubDate>Tue, 30 Aug 2011 17:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-163676</guid>
		<description><![CDATA[Thanks for your help and for taking the time to help others, Greetings from Merida, Yucatan, Mexico, Erika Gamboa]]></description>
		<content:encoded><![CDATA[<p>Thanks for your help and for taking the time to help others, Greetings from Merida, Yucatan, Mexico, Erika Gamboa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: basava</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-134557</link>
		<dc:creator><![CDATA[basava]]></dc:creator>
		<pubDate>Mon, 16 May 2011 06:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-134557</guid>
		<description><![CDATA[hi can you please help me for configuring mirroring through script.]]></description>
		<content:encoded><![CDATA[<p>hi can you please help me for configuring mirroring through script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-125916</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 06:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-125916</guid>
		<description><![CDATA[Also read this post
http://beyondrelational.com/blogs/madhivanan/archive/2008/01/16/beware-of-implicit-conversions.aspx]]></description>
		<content:encoded><![CDATA[<p>Also read this post<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2008/01/16/beware-of-implicit-conversions.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2008/01/16/beware-of-implicit-conversions.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brass</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-125080</link>
		<dc:creator><![CDATA[Brass]]></dc:creator>
		<pubDate>Sat, 26 Mar 2011 05:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-125080</guid>
		<description><![CDATA[It&#039;s not clear in my earlier comment, but the period at the end of my sentence is supposed to be a decimal point.  Let me try again: &quot;(size*8)/1024.0&quot;.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s not clear in my earlier comment, but the period at the end of my sentence is supposed to be a decimal point.  Let me try again: &#8220;(size*8)/1024.0&#8243;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brass</title>
		<link>http://blog.sqlauthority.com/2010/02/08/sql-server-find-the-size-of-database-file-find-the-size-of-log-file/#comment-125079</link>
		<dc:creator><![CDATA[Brass]]></dc:creator>
		<pubDate>Sat, 26 Mar 2011 05:53:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7954#comment-125079</guid>
		<description><![CDATA[You have some integer math up there.  It should be:  (size*8)/1024.]]></description>
		<content:encoded><![CDATA[<p>You have some integer math up there.  It should be:  (size*8)/1024.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
