【问】在软件中点击每个大模块时会出现卡的状态。(如从基本档案切换到零售管理) | ||
【适用版本】专卖店9 | 【模块】基础业务 | 【点击数】27 |
【知识编号】Z2016010800008 | ||
【问题描述】在软件中点击每个大模块时会出现卡的状态。(如从基本档案切换到零售管理) |
—修复索引
use isszmv9
go
declare @tablename varchar(100)
declare test_cur cursor for
select object_name(id) from sysobjects
where type =’U’
open test_cur
fetch test_cur into @tablename
while @@fetch_status=0
begin
DBCC DBREINDEX(@tablename)
fetch test_cur into @tablename
end
close test_cur
deallocate test_cur
go–修复自增列
use isszmv9
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
go
2,若客户版本较旧,未做过客户化的话,请到我司官网重新下载安装包与升级包,删除总部后台安装目录,同时删除C:\Program Files\InstallShield Installation Information目录下文件夹,
重装客户端后升级至最新版本再试试!
3,如以上仍不行,请检查数据库是否损坏,如有损坏,请先修复后再试试!