2017-04-21 1219 views
0

我有一个包含以下部分的SQL脚本。GOTO语句引用标签'QuitWithRollBack',但标签尚未声明

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 @[email protected], @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 @[email protected], @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

mssql studio需要SQL Server代理,这就是为什么执行它的原因,但在WIX - 它不是一个SQL工作室,并没有一个SQL服务器代理..我认为你可以做的是解剖的语句,使其成为一个过程和调用它来自wix – maSTAShuFu

回答

0

你的脚本显然是在第一个GOTO之后分开的。所以从研究中,您可以将脚本保存为.sql文件,并使用WiX调用/执行它。 Reference

另一个应该使它工作的建议虽然不是首选的方法,但是可以删除GOTO或用ROLLBACK TRANSACTION替换GOTO。