How can we help you today? How can we help you today?

Determine the Backup Folder in TransactSQL

Can I retrieve the SQL Backup backup folder using TransactSQL with the SQBUtility or in some other way?
jimclark
0

Comments

1 comment

  • petey
    To get the default SQL Backup backup folder:
    DECLARE @value NVARCHAR(128)
    EXEC master..sqbutility 1014, 'BackupFolder', @value OUT
    SELECT @value
    
    To get the default SQL Server backup folder:
    DECLARE @value NVARCHAR(128)
    EXEC master..sqbutility 1013, @value OUT
    SELECT @value
    
    petey
    0

Add comment

Please sign in to leave a comment.