解决方案: |
1、在U860版本中,可以通过以下脚本清除临时表(执行前请做好数据备份) declare @name varchar(50) declare @xtype varchar(2) declare Vou_cursor cursor for select name,xtype from sysobjects where name like 'tmp%qm%' open vou_cursor fetch next from vou_cursor into @name , @xtype WHILE @@FETCH_STATUS = 0 begin if @xtype='u' begin execute ('drop table ' + @name) end else if @xtype='v' begin execute ('drop view ' + @name) end fetch next from vou_cursor into @name,@xtype end Close vou_cursor deallocate vou_cursor 2、可以将软件升级到U860SP,可以解决此问题。 |