Sql SMO: How to get path of database physical file name? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T06:35:29Zhttp://stackoverflow.com/feeds/question/474498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/474498/sql-smo-how-to-get-path-of-database-physical-file-name1Sql SMO: How to get path of database physical file name?flayto2009-01-23T20:59:59Z2009-06-16T14:44:46Z
<p>I am trying to return the physical file path of a database's mdf/ldf files.</p>
<p>I have tried using the following code:</p>
<pre><code>Server srv = new Server(connection);
Database database = new Database(srv, dbName);
string filePath = database.PrimaryFilePath;
</code></pre>
<p>However this throws an exception "'database.PrimaryFilePath' threw an exception of type 'Microsoft.SqlServer.Management.Smo.PropertyNotSetException' - even though the database I'm running this against exists, and its mdf file is located in c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/474498/sql-smo-how-to-get-path-of-database-physical-file-name/474607#4746071Answer by Noah for Sql SMO: How to get path of database physical file name?Noah2009-01-23T21:20:49Z2009-01-30T18:31:23Z<p>Usually the problem is with the DefaultFile property being null. The default data file is where the data files are stored on the instance of SQL Server unless otherwise specified in the FileName property. If no other default location has been specified the property will return an empty string.</p>
<p>So, this property brings back nothing (empty string) if you didn't set the default location. </p>
<p>A workaround is to check the DefaultFile property, if it returns an empty string use SMO to get the master database then use the Database.PrimaryFilePath property to retrieve the Default Data File Location (since it hasn't changed)</p>
<p>Since you say the problem is with your PrimaryFilePath:</p>
<ul>
<li>Confirm that your connection is open </li>
<li>Confirm that other properties are available</li>
</ul>
http://stackoverflow.com/questions/474498/sql-smo-how-to-get-path-of-database-physical-file-name/734182#7341820Answer by Miki for Sql SMO: How to get path of database physical file name?Miki2009-04-09T13:19:16Z2009-04-09T13:19:16Z<p>Server srv = new Server(connection);
DatabaseCollection dbc = svr.Databases;
Database database = dbc["dbName"];
string filePath = database.PrimaryFilePath;</p>
http://stackoverflow.com/questions/474498/sql-smo-how-to-get-path-of-database-physical-file-name/1001951#10019510Answer by flipdoubt for Sql SMO: How to get path of database physical file name?flipdoubt2009-06-16T14:44:46Z2009-06-16T14:44:46Z<p>This is how I do it, prepared for multiple file names. Access database.LogFiles to get the same list of log file names:</p>
<pre><code>private static IList<string> _GetAttachedFileNames(Database database)
{
var fileNames = new List<string>();
foreach (FileGroup group in database.FileGroups)
foreach (DataFile file in group.Files)
fileNames.Add(file.FileName);
return fileNames;
}
</code></pre>