show/hide this revision's text 2 deleted 3 characters in body; edited title

How to identify and get the datafiles path in sqlserver data files filepath

Hi

I am afraid that i am unable to locate the absolute path of SQLSERVER datafilesthe SQL SERVER data files.

I have tried using like thisto so do by doing the following.

    foreach( Database db in srv.Databases)
     string filepath=db.PrimaryFilepath;
     string name=db.Name;
     abspth=filepath+"//"+name+".mdf";

Like this i have workaround.But is there is any alternative to get the absolute path.

But in case of logfiles it gives absolute path.......

Help me in this regard...

Thanks in Advance.

show/hide this revision's text 1

How to get the datafiles path in sqlserver

Hi

I am afraid that i am unable to locate the absolute path of SQLSERVER datafiles.

I have tried using like this.

        foreach( Database db in srv.Databases)
         string filepath=db.PrimaryFilepath;
         string name=db.Name;
         abspth=filepath+"//"+name+".mdf";

Like this i have workaround.But is there is any alternative to get the absolute path.

But in case of logfiles it gives absolute path.......

Help me in this regard...

Thanks in Advance.