tags:

views:

70

answers:

1

How can I get the path where SQL Server 2005 is installed in a system, through SQL command?

+2  A: 

select filename from master.sys.sysfiles where name = 'master'

Jk