How can we help you today? How can we help you today?
Eddie D
Thank you for your into the forum. I am little puzzled by your question: I need to put some objects on the destination server, but are not yet currently on the source server. I am assuming you mean destination database and source database. SQL Server will not allow you to create new objects on the log shipped destination database. In a Log Shipping setup, the transaction log backups are restored to the destination database using one of the two recovery states: WITH NORECOVERY - Database is non-operational. When the log restore is complete, the database is not returned to ready operational status and it cannot be used for normal operations. You can continue to restore transaction log backup files. Therefore you will be unable to create new objects on the database. WITH STANDBY - Database is in a Read Only condition. This is similar to the non-operational condition with some exceptions. When the restore process ends, the database is placed nto Read-Only mode. It is available to accept additional transaction log backups. In Read-only mode you can query the database but you cannot modify the database or add new objects to the database. If you create new objects in the source database, these actions are recorded in the Transaction Log which is log shipped for restore to the destination database. When you recover the target database and make it operational these new objects will be available in the destination database. To summarise the above, you cannot create new objects and modify or delete existing objects in the destination database in a Log Shipping set-up. Many Thanks Eddie / comments
Thank you for your into the forum. I am little puzzled by your question: I need to put some objects on the destination server, but are not yet currently on the source server. I am assuming you ...
0 votes
Thank you for your reply. The answer to your question is no. The SQL Backup download will remain at V6.2.0.134 until the release of SQL backup V6.3 and therefore will not be part of the 'Check for updates' process. Many Thanks Eddie / comments
Thank you for your reply. The answer to your question is no. The SQL Backup download will remain at V6.2.0.134 until the release of SQL backup V6.3 and therefore will not be part of the 'Check for...
0 votes