【问】打开门店系统报错:上传数据失败! | ||
【适用版本】专卖店9 | 【模块】门店系统 | 【点击数】149 |
【知识编号】Z2017090800007 | ||
【问题描述】![]() |
1、删除门店安装目录下sael.db和updatezmv9.ini文件重新联网升级登录后核实;
2、备份数据执行语句
—修复自增列
use isszmv9
godeclare @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
go3、将软件升级至最新版本核实。