USE [msdb] GO BEGIN TRANSACTION /************* Provide the Powershell Script location in this Block ********************************** Example: DECLARE @script_location sysname ='C:\Logshippingscripts\Logshipping_Restore.ps1' */ DECLARE @script_location sysname ='C:\Logshippingscripts\Logshipping_Restore.ps1' --- Replace the file location /********************************* End of Input Details *****************************************/ DECLARE @job_name sysname = 'Logshipping_RDS_Secondary_Restore' DECLARE @owner_login_name sysname ='sa' DECLARE @step_name sysname ='Restore_Secondary' DECLARE @schedule_id NVARCHAR(250) DECLARE @ReturnCode INT SELECT @ReturnCode = 0 DECLARE @command NVARCHAR(max)=N'$ErrorActionPreference ="Stop" try { powershell.exe "'+@script_location+'" } Catch{ Throw }' IF NOT EXISTS (SELECT name FROM msdb.dbo.syscategories WHERE name=N'[Uncategorized (Local)]' AND category_class=1) BEGIN EXEC @ReturnCode = msdb.dbo.sp_add_category @class=N'JOB', @type=N'LOCAL', @name=N'[Uncategorized (Local)]' IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback END DECLARE @jobId BINARY(16) EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=@job_name, @enabled=1, @notify_level_eventlog=0, @notify_level_email=0, @notify_level_netsend=0, @notify_level_page=0, @delete_level=0, @description=N'No description available.', @category_name=N'[Uncategorized (Local)]', @owner_login_name=@owner_login_name, @job_id = @jobId OUTPUT IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=@step_name, @step_id=1, @cmdexec_success_code=0, @on_success_action=1, @on_success_step_id=0, @on_fail_action=2, @on_fail_step_id=0, @retry_attempts=0, @retry_interval=0, @os_run_priority=0, @subsystem=N'PowerShell', @command=@command, @database_name=N'master', @flags=0 EXEC msdb.dbo.sp_add_jobschedule @job_id=@jobId, @name=N'Scheule_1', @enabled=1, @freq_type=4, @freq_interval=1, @freq_subday_type=4, @freq_subday_interval=15, @freq_relative_interval=0, @freq_recurrence_factor=1, @active_start_date=20220311, @active_end_date=99991231, @active_start_time=0, @active_end_time=235959, @schedule_id = @schedule_id OUTPUT IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback EXEC @ReturnCode = msdb.dbo.sp_update_job @job_id = @jobId, @start_step_id = 1 IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback EXEC @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @jobId, @server_name = N'(local)' IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback COMMIT TRANSACTION GOTO EndSave QuitWithRollback: IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION EndSave: GO