用友T6软件打开收发存汇总提示数据库中已存在 temp_rdstyle 的对象

微信号:yyrjlls
技术咨询,有偿服务!
复制微信号
技术咨询,有偿服务!
复制微信号
打开收发存汇总提示数据库中已存在 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