To continue reading for free, register below or login
To read more you must become a member of SearchSQLServer.com
');
// -->

The current size of the data files can be found within the SQL Server. You can use the sysaltfiles table (system view in SQL Server 2005 and up) to see how large each file is.
SELECT name, filename, (size*8)/1024
FROM sysaltfiles.
|