Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restore-AzSqlInstanceDatabase - fix "an" -> "a" #11279

Merged
merged 1 commit into from
Mar 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Sql/Sql/help/Restore-AzSqlInstanceDatabase.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,22 +130,22 @@ PS C:\> $GeoBackup | Restore-AzSqlInstanceDatabase -FromGeoBackup -TargetInstanc
The first command gets the geo-redundant backup for the database named Database01, and then stores it in the $GeoBackup variable.
The second command restores the backup in $GeoBackup to the instance database named Database01_restored.

### Example 4: Restore an deleted instance database from a point in time
### Example 4: Restore a deleted instance database from a point in time
```
PS C:\> $deletedDatabase = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName "ResourceGroup01" -InstanceName "managedInstance1" -DatabaseName "DB1"
PS C:\> Restore-AzSqlinstanceDatabase -Name $deletedDatabase.Name -InstanceName $deletedDatabase.ManagedInstanceName -ResourceGroupName $deletedDatabase.ResourceGroupName -DeletionDate $deletedDatabase.DeletionDate -PointInTime UTCDateTime -TargetInstanceDatabaseName "Database01_restored"
```

The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1'
The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1'.
The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored.

### Example 5: Restore an deleted instance database from a point in time
### Example 5: Restore a deleted instance database from a point in time
```
PS C:\> $deletedDatabase = Get-AzSqlDeletedInstanceDatabaseBackup -ResourceGroupName "ResourceGroup01" -InstanceName "managedInstance1" -DatabaseName "DB1"
PS C:\> Restore-AzSqlinstanceDatabase -InputObject $deletedDatabase[0] -PointInTime UTCDateTime -TargetInstanceDatabaseName "Database01_restored"
```

The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1'
The first command gets the deleted instance databases named 'DB1' on Instance 'managedInstance1'.
The second command restores the the fetched database, from the specified point-in-time backup to the instance database named Database01_restored using input object.

### Example 6: Restore a database from LTR backup.
Expand Down