当前位置: 代码迷 >> Sybase >> sysbase中的select ino,该如何处理
  详细解决方案

sysbase中的select ino,该如何处理

热度:6777   发布时间:2013-02-26 00:00:00.0
sysbase中的select ino
表tab_tem已经存在  
SQL语句: select a.* into tab_tem from sysobjects_copy a,sysobjects_j b 
where a.type='U' and b.type='U' and a.name=b.name //and a.name='check_method_1'
group by a.name;执行后  
  错误:You can't run SELECT INTO in this database. Please check with the Database Owner.  
  不知是什么问题?

------解决方案--------------------------------------------------------
use master
go
sp_dboption 'dbname','select into',true
go
use dbname
go
checkpoint
go


dbname换为你的数据库的名字
  相关解决方案