从别的地方偷了个数据库,郁闷!所有着权限不是DBO,用户怎么都无法访问,后来从网上查了查,才知道需要做以下配置: exec sp_configure 'allow updates','1'goreconfigure with overridegoupdate sysobjects set uid=1 where uid<>1 gosp_configure 'allow updates','0'goreconfigure with override 就可以将数据库的所有者改为DBO 相关文章: 2021-08-31 2021-11-25 2021-10-28 2022-12-23 2022-02-09 2022-12-23