gpt4 book ai didi

sql - 原理Sql Server中不存在dbo

转载 作者:行者123 更新时间:2023-12-02 06:23:47 25 4
gpt4 key购买 nike

通过 SQL Server 中的存储过程获取数据时,我收到如下错误

Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission.

我仅在访问特定存储过程时收到此错误,而不是在访问所有 SP 时收到此错误。

最佳答案

为您的数据库指定一个有效的所有者。试试这个:

ALTER AUTHORIZATION 
ON DATABASE::[YourDatabaseName]
TO [LoginUser];

或者你可以尝试这样设置

USE [dbname]
GO
sp_changedbowner 'someLogin'

关于sql - 原理Sql Server中不存在dbo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37385021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com