Comments on: Minimal-downtime migrations using Invoke-DbaLogShipping https://dbatools.io/logshipping/ the community's sql powershell module Fri, 20 Mar 2020 08:27:41 +0000 hourly 1 https://wordpress.org/?v=5.3.4 By: Wasim Sayyad https://dbatools.io/logshipping/#comment-79789 Fri, 20 Mar 2020 08:27:41 +0000 https://dbatools.io/?p=7362#comment-79789 What if someone don’t want to keep monitoring servers? I think monitoring servers are getting configured by Invoke-DbaLogShipping command though mentioned ‘$false’

]]>
By: Wasim Sayyad https://dbatools.io/logshipping/#comment-79788 Fri, 20 Mar 2020 08:20:07 +0000 https://dbatools.io/?p=7362#comment-79788 What if someone don’t want to keep log shipping monitoring servers? I think monitor servers are mandatory to provide in Invoke-DbaLogShipping command.

]]>
By: Vikram https://dbatools.io/logshipping/#comment-11079 Thu, 09 Aug 2018 03:35:33 +0000 https://dbatools.io/?p=7362#comment-11079 can we use azure blob for storing and restoring backups

]]>
By: Chrissy LeMaire https://dbatools.io/logshipping/#comment-5987 Wed, 30 May 2018 08:43:58 +0000 https://dbatools.io/?p=7362#comment-5987 heyy thanks so much! I updated the post

]]>
By: Riaan https://dbatools.io/logshipping/#comment-5954 Tue, 29 May 2018 20:01:10 +0000 https://dbatools.io/?p=7362#comment-5954 So, this took me a minute or 10 to figure out, but… Both your UseExistingFullBackup and GenerateFullBackup has the exact same code 😛

GenerateFullBackup section:
$params = @{
SourceSqlInstance = ‘sql1’
DestinationSqlInstance = ‘sql2’
Database = ‘db1’
GenerateFullBackup = $true
BackupNetworkPath = ‘\\sql1\logshipping’
BackupLocalPath = ‘D:\Data\logshipping’
CompressBackup = $true
Force = $true
}

]]>