文档解释
ORA-02380: profile string does not exist
Cause: Try to assign a user to a non-existant profile
Action: None
。
ORA-02380: profile string does not exist是 Oracle 数据库会报出的错误。
官方解释
常见案例
正常处理方法及步骤
1、检查要使用的 profile 是否存在,如不存在则使用 create profile 语句创建新的 profile 。
2、检查参数 SQL.PROFILE 设置的位置是否正确,参数 SQL.PROFILE 设置的位置格式如下:[schema.]profile_name
3、如上两步没有问题,则使用 ALTER PROFILE 语句修改 profile 设置: ALTER PROFILE schema_profile_name LIMIT [resource] resource_limit 其中 resource 是可以限制的系统资源,其对应的 resource_limit 表示允许的上限。