最近用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 语句和快速大容量复制。


相关文章:

  • 2021-09-11
  • 2022-01-27
  • 2021-12-11
  • 2021-09-25
猜你喜欢
  • 2021-08-29
  • 2022-12-23
  • 2021-11-27
  • 2022-02-16
  • 2022-12-23
  • 2022-02-05
  • 2021-08-07
相关资源
相似解决方案