C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Performing Data Changes Audit Using Temporal Table
WhatsApp
Jim Lorinser
6y
3
k
0
5
Resource
0
SQL Server 2016 has introduced a feature called ‘System versioned temporal table’. Using a normal table, you can retrieve current data; while using a system-versioned temporal table, you can retrieve data which was deleted or updated in the past. To do that, a temporal table will create a history table. The history table will store old data with “
start_time
” and “
end_time
”. Which indicates a time period for which the record was active.
Learn More >>
SQL Server
MSSQL
Performance
Temporal Table