- 19
- 0
- 约5.07千字
- 约 6页
- 2016-12-29 发布于重庆
- 举报
Cshis 酒店系统问题集
有关CSHIS 主界面的问题
为何在cshis 界面中进入任何所有带房态图的功能时速度都很慢?
这是由于用户使用了新房态图的前台,收银,客房,问询程序,以上四个程序的日期在1999/9/13之前有一个BUG ,会自动将房态图中的错误记录到table : rmerrlog 中,当rmerrlog 中的记录数增长到一定的数量级后,将会影响到进入房态图模块的速度
解决办法: 将 rmerrlog 这张表清空,并换上1999/9/13之后的前台程序: htlfront.exe, 客房程序: house.exe 收银程序:casher.exe 问询程序: inquire.exe
注意:当 rmerrlog 中的记录数超过 3 万条的时候,请不要用delete 命令清除,请使用以下脚本:
/****** Object: Table dbo.rmerrlog Script Date: 99-9-14 9:06:28 ******/
if exists (select * from sysobjects where id = object_id(dbo.rmerrlog) and sysstat 0xf = 3)
drop table dbo.rmerrlog
GO
/****** Object: Table dbo
原创力文档

文档评论(0)