【问】门店上传数据到CS单据就死机。 | ||
【适用版本】商业之星7 | 【模块】连锁配送 | 【点击数】61 |
【知识编号】P2013082300009 | ||
【问题描述】门店上传数据到CS单据就死机。 |
go
declare @tablename varchar(100)
declare test_cur cursor for
select object_name(id) from syscolumns
where status=128
open test_cur
fetch test_cur into @tablename
while @@fetch_status=0
begin
DBCC CHECKIDENT (@tablename, RESEED)
fetch test_cur into @tablename
end
close test_cur
deallocate test_cur
gouse hbposv7_branch
go
truncate table t_da_discount_daysum