Skip to content

Commit

Permalink
#3499 sp_DatabaseRestore install warnings
Browse files Browse the repository at this point in the history
Let them know that they'll need Ola's scripts. Closes #3499.
  • Loading branch information
BrentOzar committed Apr 19, 2024
1 parent 2732585 commit 1d65e5b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sp_DatabaseRestore.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
IF OBJECT_ID('dbo.CommandExecute') IS NULL
BEGIN
PRINT 'sp_DatabaseRestore is about to install, but you have not yet installed the Ola Hallengren maintenance scripts.'
PRINT 'sp_DatabaseRestore will still install, but to use that stored proc, you will need to install this:'
PRINT 'https://ola.hallengren.com'
PRINT 'You will see a bunch of warnings below because the Ola scripts are not installed yet, and that is okay:'
END
GO


IF OBJECT_ID('dbo.sp_DatabaseRestore') IS NULL
EXEC ('CREATE PROCEDURE dbo.sp_DatabaseRestore AS RETURN 0;');
GO
Expand Down

0 comments on commit 1d65e5b

Please sign in to comment.