博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle ORA-01045错误解决方法
阅读量:5861 次
发布时间:2019-06-19

本文共 618 字,大约阅读时间需要 2 分钟。

hot3.png

问题:

在用PL/SQL进行登录时,出现:”ora-01045 :user system lacks create session privilege; logon denied”。

原因:该用户没有创建session会话的权限

在Google找到这段的说明:

What does “ORA-01045: user USERNAME lacks CREATE SESSION privilege;

logon denied” mean?

It means that the username and password with which you tried to login are known and accepted by the server, but that the username doesn’t have permission to create a session. If you think this username should have permission to create sessions send mail to acisdba.

解决办法:

使用系统用户登录后,使用如下sql语句给出错用户赋权限

grant create session to UserName;(UserName是登录出错的用户名)

转载于:https://my.oschina.net/kkrgwbj/blog/212153

你可能感兴趣的文章
ACM 算法模板
查看>>
jQuery方法大全
查看>>
PAT Acute Stroke (30)
查看>>
CSS/块级元素与内联元素的深入理解
查看>>
什么是SSH
查看>>
随笔小绪
查看>>
用代理服务器做接口整合大大减少http请求
查看>>
Flutter官方文档动画示例小结
查看>>
记一次kubernetes集群异常:kubelet连接apiserver超时
查看>>
站内信设计总结
查看>>
SpringCloud(二):Ribbon-几种配置方式
查看>>
OC KVC总结
查看>>
jquery垂直滚动插件一个参数用于设置速度,兼容ie6
查看>>
CF1137E. Train Car Selection(可删堆)
查看>>
前端 --> CSS基础
查看>>
状态模式(State Pattern)
查看>>
bzoj2989&&4170数列——二进制分组+主席树
查看>>
洛谷P1595 信封问题
查看>>
IO基本操作的注意事项
查看>>
charles抓包报错:No request was made. Possibly the SSL certificate was rejected.
查看>>