Hi Patel,
We do not have predefined support for this.
However, note that for SQL Server 2012 and above you can take advantage of the
SERVERPROPERTY (Transact-SQL). For example, you can use the following query to retrieve the DefaultDataPath and DefaultLogPath for the related instance:
Code: Select all
select
InstanceDefaultDataPath = serverproperty('InstanceDefaultDataPath'),
InstanceDefaultLogPath = serverproperty('InstanceDefaultLogPath')
So, you can create a query in the
SQL Query Tab that will set a property with the result.
Let me know if you need any help.
Best regards,
Dan