Skip to content

Commit 1d65e5b

Browse files
committed
#3499 sp_DatabaseRestore install warnings
Let them know that they'll need Ola's scripts. Closes #3499.
1 parent 2732585 commit 1d65e5b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

sp_DatabaseRestore.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
IF OBJECT_ID('dbo.CommandExecute') IS NULL
2+
BEGIN
3+
PRINT 'sp_DatabaseRestore is about to install, but you have not yet installed the Ola Hallengren maintenance scripts.'
4+
PRINT 'sp_DatabaseRestore will still install, but to use that stored proc, you will need to install this:'
5+
PRINT 'https://ola.hallengren.com'
6+
PRINT 'You will see a bunch of warnings below because the Ola scripts are not installed yet, and that is okay:'
7+
END
8+
GO
9+
10+
111
IF OBJECT_ID('dbo.sp_DatabaseRestore') IS NULL
212
EXEC ('CREATE PROCEDURE dbo.sp_DatabaseRestore AS RETURN 0;');
313
GO

0 commit comments

Comments
 (0)