We have a client who has been providing us with full database backup of sql server 2016 database everyday. We asked them to send only one initial copy of full backup followed by transaction logs(one in every 30 minutes) so that we can have more recent data. On our side, we are using SQL Server 2017 version. We are able to restore the full backup and all subsequent T-logs only in NORECOVERY mode. But we need the database to be in STANDBY mode, so that we can do T-Log restore and also read data from the database. We cannot wait till all the T-logs restore finishes because there is no end to the T-log files, they keep on coming. The issue is we are not able to move the database into STANDBY mode. We are able to put it in either Restoration or RECOVERY modes only. I found from Microsoft doc. that STANDBY mode is supported only between same version of SQL Servers. Is there anyway of reading the data from Restoring database while restoring logs.
Not able to restore transaction logs in STANDBY mode in SQL server 2017
551 Views Asked by karunakar At
1
There are 1 best solutions below
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 LOGGING
- ModuleNotFoundError: No module named 'src' while importing logging
- How to get domains in Shadowsocks server log with Shadowsocks Android
- How to enable log to console Cosmos Client SDK requests
- pino-pretty logging special characters as literal
- unable to serialize JSON type logs In fluentd(logging-operator)
- How to configure different loggers separately in structlog?
- detect catalina.out log path from a running tomcat on non-Windows
- apache2 rotatelogs creates log file but its empty when deployed to azure web app
- Ubuntu:24.04 Container generating excessive logs
- Transform Load pipeline for a logs system: Apache Airflow or Kafka Connect?
- Deisred log is not rotating
- Purpose of setting debug="false" in log4j at configuration level
- RobotFramework hangs after xx lines of log
- logging in multiprocess writes to same log
- Masking in logback.xml with all request and responses
Related Questions in MODE
- Laravel Mailing Dark Mode changing IMG
- python seleniumwire and debugging mode result doesn't work
- Answer or Call by Phone App always through loudspeaker mode
- have error for fill column with conditional mode of another columns
- DAC/AMP & 'Audio Accessory Mode' in Samsung NOTE 8
- Mixed mode .NET 4.0 assembly refuses to load in Windows 10 Pro but loads fine in Windows 10 Home
- Access local storage data in iframe
- Injecting a testcontainer does not work as expected
- Error in Numba function: "tuple index out of range" when using custom class for sparse matrix
- Change H2 compatibility mode attribute only
- WPS running in silent Mode - is possible?
- How to put recovery mode on jetson xavier agx without interface?
- Working with multiple interface and single common field in Angular
- ZMQ not dequeuing when there is not a resource issue
- How can I set a "safe" running "mode" that determines the collective behavior of django model superclasses I created?
Related Questions in STANDBY
- Preventing Scheduled Task from Running During Modern Standby
- Sleep Modes with Modern Standby on new PCs (win32 api)
- How to prevent our service from running in Modern Standby
- Kafka standby replica clarity sought
- How can I do a Lua script for GHUB in order to switch my keyboard's lightning once my pc goes in stand by mode?
- How does one set the `idle sensitivity` of Windows 11?
- Need help for configuring standby DB with Oracle APEX
- STM32WB : Is it possible to wakeup standby mode via BLE?
- PostgreSQL Streaming Replication Reject Insert
- PostgreSQL Replication without DELETE , DROP queries
- Is it possible to put a Windows PC into standby if a specific program is terminated
- STM32 wake up from standby mode every 10 seconds
- Variables in low power modes
- Nuxt SSR on plesk have to restart every ≈5minutes
- Is it possible to apply archivelogs from standby DB to Production DB?
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?
No. The database must be upgraded before it can be read, and that happens after recovery.
You can always install an additional SQL 2016 instance on the server with version downgrade rights.