隐藏 Oracle XE 数据库中的表
我正在使用 Oracle XE,但我想以用户身份登录,无法创建表、约束等,但无法查看所有其他系统表以及使用系统帐户登录时看到的内容。
我怎样才能实现这个目标?
I'm using Oracle XE but I would like to log in as a user than can create tables, contraints etc., but who cannot view all of the other system tables and stuff that you see when you log in with the system account.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个新用户:
从那里,为您想要授予该用户的权限发出 GRANT:
等等。
请参阅 SQL 参考文档,了解您可以使用的所有权限 授予。用户 xxx 将只能看到他们自己的对象以及他们已被授予权限的对象。
You need to create a new user with:
From there, issue GRANT for the privileges you want to give the user:
etc.
See the SQL Reference documentation for all the privileges you can grant. User xxx will only be able to see their own objects and objects they have been granted privileges on.