SQL的存储过程里,其中一条语句出现错误,如何让整个存储过程都不执行

我建了一个存储过程,其中有6条insert语句.我想让它只要其中一条出错就不能执行整个存储过程.要怎么做?ALTERPROCEDURE[dbo].[Chejiaxinxi... 我建了一个存储过程,其中有6条insert语句.
我想让它 只要其中一条出错就不能执行整个存储过程.要怎么做?
ALTER PROCEDURE [dbo].[Chejiaxinxi]
@frameid int ,
@frametype smallint,
@dateT smalldatetime,
@HJ VArchar(5),
@WBZL char(1),
@NBZL char(1),
@HJGS int,
@ZP1 VArchar(5),
@ZP2 VArchar(5)=null,
@ZP3 VArchar(5)=null,
@ZP4 VArchar(5)=null,
@zpcount tinyint,
@ZPGS int ,
@XJ1 VArchar(5),
@XJ2 VArchar(5) = null ,
@xjcount tinyint,
@XJGS int
AS
begin
SET NOCOUNT ON;

INSERT INTO [banhandb].[Production].[ChejiaProductHeader]([FrameID],[FrametypeID],[Date])VALUES(@frameid,@Frametype,@datet)
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[OutsideQuality],[InsideQuality],[Count],[ManHour])VALUES(
@frameid,@hj,1,@wbzl,@nbzl,1,@hjgs )
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@FrameID,@zp1,2,@zpcount,@zpgs)
if @zp2 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@zp2,2,@zpcount,@zpgs)
end
if @zp3 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@zp3,2,@zpcount,@zpgs)
end
if @zp4 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@zp4,2,@zpcount,@zpgs)
end
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@xj1,3,@xjcount,@xjgs)
if @xj2 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@xj2,3,@xjcount,@xjgs)
-- Insert statements for procedure here
end
end
这回答也太简单了
展开
 我来答
YQo11
2009-07-21 · TA获得超过2127个赞
知道小有建树答主
回答量:492
采纳率:0%
帮助的人:530万
展开全部
要用禅卖到事务处理
你每执行一个操作都会有一个@@error的系统变量
所以你可以根据这个系统变量来判断你的语句执行是否成功。
若是成功则提交失误,否则回滚事物就渣纯可以了。

declare @error int
begin transaction
SQL语句
@error=@error+@@erorr
...
if @error>0
rollback transaction
else
commit transaction
GO

就是这样子贺梁逗了
光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
181027923
2009-07-21 · 超过27用户采纳过TA的回答
知道答主
回答量:199
采纳率:0%
帮助的人:96.6万
展开全部
begin transaction

每执行一条碧桥姿语句把错误号悔绝累加 在最后判消正断

if @@error <> 0
rollback transaction
else
commit transaction
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hemu780924
2009-07-21 · TA获得超过662个赞
知道小有建树答主
回答量:495
采纳率:0%
帮助的人:522万
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2c1f62e
2009-07-21 · TA获得超过1330个赞
知道小有建树答主
回答量:471
采纳率:0%
帮助的人:404万
展开全部
ALTER PROCEDURE [dbo].[Chejiaxinxi]
@frameid int ,
@frametype smallint,
@dateT smalldatetime,
@HJ VArchar(5),
@WBZL char(1),
@NBZL char(1),
@HJGS int,
@ZP1 VArchar(5),
@ZP2 VArchar(5)=null,
@ZP3 VArchar(5)=null,
@ZP4 VArchar(5)=null,
@zpcount tinyint,
@ZPGS int ,
@XJ1 VArchar(5),
@XJ2 VArchar(5) = null ,
@xjcount tinyint,
@XJGS int
AS
begin
SET NOCOUNT ON;

BEGIN TRAN
INSERT INTO [banhandb].[Production].[ChejiaProductHeader]([FrameID],[FrametypeID],[Date])VALUES(@frameid,@Frametype,@datet)
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[OutsideQuality],[InsideQuality],[Count],[ManHour])VALUES(
@frameid,@hj,1,@wbzl,@nbzl,1,@hjgs )

INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@FrameID,@zp1,2,@zpcount,@zpgs)

if @zp2 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@zp2,2,@zpcount,@zpgs)
end

if @zp3 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@zp3,2,@zpcount,@zpgs)
end
if @zp4 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@zp4,2,@zpcount,@zpgs)
end
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@xj1,3,@xjcount,@xjgs)

if @xj2 is not null
begin
INSERT INTO [banhandb].[Production].[ChejiaProductRegister]([FrameID],[PersonNumber],[OperationID],[Count],[ManHour])VALUES(
@frameid,@xj2,3,@xjcount,@xjgs)
-- Insert statements for procedure here
end
IF @@ERROR=0
COMMIT TRAN
ELSE
ROLLBACK TRAN
end
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b5d8592
2009-07-21 · TA获得超过157个赞
知道小有建树答主
回答量:202
采纳率:0%
帮助的人:171万
展开全部
事务日志
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式