如何在Oracle 11g中激活hr模式

发布于 2024-12-25 12:40:21 字数 259 浏览 2 评论 0原文

我正在学习 PL/SQL 并使用 SQL Developer,因为我使用 hr 模式创建了许多用户。但是,当用户登录 SQL Developer 时,会出现“用户无效”之类的错误。但是当我使用系统用户时,它工作正常,但没有 hr 模式。

那么:

  • 如何在系统用户中激活 hr 模式
  • 如何创建一个用户以在 SQL 开发人员中使用。

我正在使用 Oracle 11g Express

I am learning PL/SQL and am using SQL Developer cause I created many users with hr schema. But when a user logs in to SQL Developer give an error like the users is invalid. but When I use the system user, it works perfectly but without hr schema.

So:

  • How can I activate the hr schema in system user or
  • How can I make a user for use in SQL developer.

I am using Oracle 11g express

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

爱的故事 2025-01-01 12:40:21
ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;

然后,输入此命令

CONNECT HR/HR

ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;

Then, enter this command

CONNECT HR/HR

祁梦 2025-01-01 12:40:21

这可能有帮助

更改由 hr 帐户解锁识别的用户 hr;

将 CONNECT、资源授予 hr;

更改用户 oe,由 OE 帐户解锁识别;

向 OE 授予连接、资源;

This may help

ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;

GRANT CONNECT, RESOURCE to hr;

ALTER USER oe IDENTIFIED BY OE ACCOUNT UNLOCK;

GRANT CONNECT, RESOURCE to OE;

你在我安 2025-01-01 12:40:21

不确定这是否应该是一个答案,因为这个问题不太了解具体细节,但您需要向新用户授予数据库的适当权限,以便他们可以使用。

例如,您需要授予用户“创建会话”权限,以便能够连接并对用户应有权访问的表进行适当的访问。

那么用户就有了正确的权限,你应该可以很好地使用 SQL Developer。

您可以找到一个示例,可以帮助您通过

Not sure this should even be an answer since the question is kind of light on concrete details, but you need to grant the appropriate privileges on the database to the new users for them to be usable.

For example you need to grant "create session" for the user to be able to connect and appropriate access to the tables the users should have access to.

Then the users have the correct privileges, you should be fine using SQL developer.

You can find a sample that may help you setting up a user correctly over here but setting up permissions on the database is a bit dependent on how you want the security to work (ie read-only, stored procedures, access to certain tables restricted...)

听闻余生 2025-01-01 12:40:21
ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;
GRANT CONNECT, RESOURCE to hr;
CONNECT HR/hr;
Password : hr
ALTER USER hr IDENTIFIED BY hr ACCOUNT UNLOCK;
GRANT CONNECT, RESOURCE to hr;
CONNECT HR/hr;
Password : hr
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文