You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,15 @@ OK so you are all set now and you can start enjoying new stored procedures. You
41
41
42
42
For detailed description of what is each procedure doing behind the scenes look into [documentation file](docs/SQL%20Server%20Database%20Restore%20-%20documentation.pdf) or go through messages after its execution.
43
43
44
-
### Restore of database and set up autogrowth based on model database (@CheckModel since v1.2)
44
+
### Restore of database and set up autogrowth based on model database*
45
45
```
46
46
EXEC [master].[dbo].[RestoreDatabase]
47
47
@BackupFile = N'\\Path\To\BackupFile\Backup.bak',
48
48
@Database = N'TestDB',
49
49
@CheckModel = 'Y',
50
50
@LogToTable = 'Y'
51
51
```
52
+
*@CheckModel parameter avaialble since v1.2
52
53
53
54
### Restore of database that is joined in Availability Group
0 commit comments