I am trying to figure out a way to tell what LSN is associated with the creation of a database snapshot.sys.master_files seems useless and sys.database_files (in the snapshot ) is useless too.On MSSQL Server Internals it says:... The snapshot reflects when the CREATE DATABASE command is issued - that is, when the creation commences.SQL server checkpoints the source database and records a synchronization LSN in the source database.Is that checkpoint LSN the one that I should care about? I see no other LSN reported by fn_dblog.Is that LSN metadata queryable by any other means?
↧