服务热线:022-26677809 , 13821206318
坚守“用户之友”的初心,做“专业的奋斗者”,始终坚持“持续创新”
首页 > 知识库 > 正文

打开收发存汇总提示数据库中已存在 temp_rdstyle 的对象

- 浏览:1280 - 发布时间:2007-07-26 09:54:00.0
问题版本: 36-用友通标准版10.1PLUS1 问题模块: 21-核算管理
所属行业: 0-通用 问题状态: 1-UU通注册用户
关 键 字: 收发存汇总表 适用产品: 用友通
补 丁 号: 开放状态: 0-UU通注册用户
原问题号: 提交时间: 2007-7-26 9:54:00
问题名称: 打开收发存汇总提示数据库中已存在 temp_rdstyle 的对象
问题现象: 打开收发存汇总表时候, 如果有选收发级次就会出现问题提示 数据库中已存在 temp_rdstyle 的对象
原因分析: 查询时会建立一临时表temp_rdstyle,如果数据库已存在此表导致建立时报错,解决:删除存在的临时表temp_rdstyle,SQL语句如下: if exists (select * from sysobjects where name='temp_rdstyle') drop table temp_rdstyle
解决方案: 查询时会建立一临时表temp_rdstyle,如果数据库已存在此表导致建立时报错,解决:删除存在的临时表temp_rdstyle,SQL语句如下: if exists (select * from sysobjects where name='temp_rdstyle') drop table temp_rdstyle