We are building a system in our company which will need temporal tables in sql server and might need log shipping as well. I wanted to know if there are any unexpected impacts of log shipping on a temporal table that wouldn't happen on a normal table?
Temporal Tables and Log shipping
195 Views Asked by Waleed Ahmad At
2
There are 2 best solutions below
0
Ben Thul
On
I would expect no impact in either direction (that is, log song won't change the temporal table nor will the temporal table change log shipping). At its core, log shipping is just restoring transaction logs on another server. And temporal tables are (more or less) a trigger that maintains another table on data mutations. That extra work will be present in the log backup and will restore just fine at the log shipping secondary
Related Questions in SQL-SERVER
- Dynamic query creation with Array like implementation
- 'pyodbc.Cursor' object has no attribute 'callproc', mssql with django
- Driver com.microsoft.sqlserver.jdbc.SQLServerDriver claims to not accept jdbcUrl, ${SPRING_DATASOURCE_URL}: GitHub Actions
- PHP Laravel SQLServer could not find driver
- Upsert huge amount of data by EFCore.BulkExtensions
- How to locate relevant tables or columns in a SQL Server database
- Cannot delete SQL datafile (.mdf) as its currently in use
- Writing query in CTE returning the wrong output
- Group By Sum and without Group by sum Amount is different
- plan_handle is always different for each query in SQL Server Cache
- Adding a different string to a table fails
- The specified data type in the EF modelBuilder doesn't correspond to the one that is created
- SQL71561: SqlComputedColumn: When column selected
- How to Solve Error Associated with Trusted Authority
- SQL Server Data Model and Insert Performance
Related Questions in LOG-SHIPPING
- Filebeat | how to define a unique index for different log paths?
- AWS RDS slow task status update during native restore
- Having blocking on logshipping msdb.dbo.log_shipping_monitor_history_detail, when I am looking where it is initiated I only see SQL Server log shippin
- Is it possible to sync real-time 2 Database on 1 SQL Server?
- Transaction log shipping - Standby/Readonly database keeps getting stuck 'Restoring'
- How do I ship logs from SharePoint in almost real time to a fileshare using PowerShell?
- SQL Server Log Shipping: how to change a target database to stand by?
- Log shipping, logs are copied to the second server folder but not uploaded to the database
- The database is already fully recovered. RESTORE DATABASE is terminating abnormally
- Log Shipping, secondary server error. Error 5 - Error 3201
- Azure AKS in-container logs to Azure Logs/Azure Sentinel
- Is uncompressed transaction log file restore process faster then compressed in SQL SERVER
- Can you SQL replicate tables from a logged-shipped secondary DB to a separate third DB?
- Log shipping restore job failing after a couple successful runs
- Setting up PostgreSQL 13 log-shipping replication between 2 CentOS 8 vagrant boxes,
Related Questions in TEMPORAL-TABLES
- SQLAlchemy system-temporal ORM relationships
- Update TimeStamps in "normal" Table in a Temp-Table scenario
- ROW START and ROW END in SQL Server temporal tables
- Move data from System-versioned history tables out of database
- Applying a rename migration with a Temporal Table gets SqlException (0x80131904) mismatching number of BEGIN and COMMIT statements
- How to update a table only if the update results in a change of values?
- Can I restrict or constrain an SQL table with Start and End dates, to only allow one "active" row
- How to exclude some column from history table in temporal table
- How to add some metadata to Temporal table for saving in history table only
- SQL Server temporal tables - storing the user who deleted a row
- SQL Server: Temporal tables and adding computed columns at runtime
- Can I copy a temporal table in SQL Server?
- Upgrading 3.0 .net project to 6.0 and getting EF query error
- How to use FOR SYSTEM_TIME clause on a view in a TVF?
- Deploying dacpac: How to remove system versioning from table?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Previously in the company we used temporary tables, but when the volume of business data had to grow, we had to change the queries using WITH