我有一个包含以下部分的SQL脚本。
BEGIN TRANSACTION
DECLARE @ReturnCode INT
SELECT @ReturnCode = 0
/****** Object: JobCategory [[Uncategorized (Local)]] Script Date: 3/30/2017 1:07:04 PM ******/
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=N'PurgeArchivedData_test24X7_ARCHIVE',
@enabled=1,
@notify_level_eventlog=0,
@notify_level_email=0,
@notify_level_netsend=0,
@notify_level_page=0,
@delete_level=0,
@description=N'This job will purge the archived data which are older than N number of days. N can be provided as a parameter and the detault value is 180 days.',
@category_name=N'[Uncategorized (Local)]',
@owner_login_name=N'sa', @job_id = @jobId OUTPUT
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
/****** Object: Step [Delete Old Data] Script Date: 3/30/2017 1:07:04 PM ******/
EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'Delete Old Data',
@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'TSQL',
@command=N'EXEC [dbo].[usp_PurgeArchive] @Days = 180;',
@database_name=N'test24X7_ARCHIVE',
@flags=0
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_jobschedule @job_id=@jobId, @name=N'Purge Weekly',
@enabled=1,
@freq_type=8,
@freq_interval=1,
@freq_subday_type=1,
@freq_subday_interval=0,
@freq_relative_interval=0,
@freq_recurrence_factor=1,
@active_start_date=20170330,
@active_end_date=99991231,
@active_start_time=0,
@active_end_time=235959,
@schedule_uid=N'a3f53c17-0e55-44c1-b237-cd2650371225'
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
当我从WiX自定义操作执行此脚本时,我收到以下显示的错误。但是当我从SQL Management Studio手动执行脚本时,不会发生此错误。
Calling custom action CDSMCustomActions!CDSMCustomActions.CustomActions.InstallDatabase
Begin InstallDatabase
MX4-ERROR : CDSM InstallDB : A GOTO statement references the label 'QuitWithRollback' but the label has not been declared.
A GOTO statement references the label 'QuitWithRollback' but the label has not been declared.
A GOTO statement references the label 'QuitWithRollback' but the label has not been declared.
A GOTO statement references the label 'QuitWithRollback' but the label has not been declared.
A GOTO statement references the label 'QuitWithRollback' but the label has not been declared.
A GOTO statement references the label 'QuitWithRollback' but the label has not been declared.
我在这里做错了什么?脚本中没有其他部分使用GOTO语句。任何帮助将不胜感激。
答案 0 :(得分:0)
在第一个GOTO之后,您的脚本显然已经分离了。因此,通过研究,您可以将脚本保存为.sql文件,并使用WiX调用/执行它。 Reference
另一个应该使其工作的建议,虽然不是首选方法,但是要删除GOTO或用ROLLBACK TRANSACTION替换GOTO。