Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
SQL Server
Azure SQL Managed Instance
Returns the complete path for the latest snapshot generated for a publication. This stored procedure is executed at the Publisher on the publication database.
Transact-SQL syntax conventions
sp_browsesnapshotfolder
[ @publication = ] N'publication'
[ , [ @subscriber = ] N'subscriber' ]
[ , [ @subscriber_db = ] N'subscriber_db' ]
[ , [ @publisher = ] N'publisher' ]
[ ; ]
The name of the publication that contains the article. @publication is sysname, with no default.
The name of the Subscriber. @subscriber is sysname, with a default of NULL
.
The name of the subscription database. @subscriber_db is sysname, with a default of NULL
.
Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.
0
(success) or 1
(failure).
Column name | Data type | Description |
---|---|---|
snapshot_folder |
nvarchar(512) | Full path to the snapshot directory. |
sp_browsesnapshotfolder
is used in snapshot replication and transactional replication.
If the @subscriber and @subscriber_db fields are left NULL
, the stored procedure returns the snapshot folder of the most recent snapshot it can find for the publication. If the @subscriber and @subscriber_db fields are specified, the stored procedure returns the snapshot folder for the specified subscription. If a snapshot hasn't been generated for the publication, an empty result set is returned.
If the publication is set up to generate snapshot files in both the Publisher working directory and Publisher snapshot folder, the result set contains two rows. The first row contains the publication snapshot folder and the second row contains the publisher working directory. sp_browsesnapshotfolder
is useful for determining the directory where snapshot files are generated.
Only members of the sysadmin fixed server role or db_owner fixed database role can execute sp_browsesnapshotfolder
.
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today