最近用sybase,在对表字段进行修改的时候出现一个错误:
sql:
alter table TestTable add value int
error:
the   'select   into'database   option   is   not   enabled   for   database XXX。。。
上网找到了解决方法:
use   master     
go   
sp_dboption   'Your   DBNAME','select   into/bulkcopy/pllsort',true   
go  
sp_dboption存储过程用于显示或更改数据库选项

select into/bulkcopy 当为 true 时,允许使用 SELECT INTO 语句和快速大容量复制。


posted on 2008-04-19 21:26  Dot-Boy  阅读(1124)  评论(0编辑  收藏  举报