在oracle 10g Express版中创建Schema

发布于 2024-09-13 16:07:35 字数 167 浏览 3 评论 0原文

我已经安装了oracle 10g Express Edition,但没有找到选项 创建模式..

是否有在 oracle 10g Express 版本中创建模式的选项 否则我必须安装其他oracle 10g..?

创建 Oracle 10g 架构 我必须安装...什么?

I have installed oracle 10g express edition and I did not find the option to
create schema..

Is there a option to create schema in oracle 10g express edition
or else I have to install other oracle 10g..?

To create schema which oracle 10g
I have to install... what?

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

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

发布评论

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

评论(3

尹雨沫 2024-09-20 16:07:35

您不需要显式创建模式,Oracle 会在您创建用户时自动创建模式(请参阅创建用户文档)。

如果您确实想要,可以使用 CREATE SCHEMA 语句并通过 Oracle Express Web 界面或从 SQL 提示符发出它。

You don't need to explicitly create schema, Oracle automatically creates a schema when you create a user (see CREATE USER documentation).

If you really want, you can use CREATE SCHEMA statement and issue it through Oracle Express web interface or from SQL prompt.

樱花坊 2024-09-20 16:07:35

CREATE SCHEMA 语句可以包括 CREATE TABLECREATE VIEWGRANT 语句。要发出 CREATE SCHEMA 语句,您必须具有发出所包含语句所需的权限。

CREATE SCHEMA AUTHORIZATION oe
   CREATE TABLE new_product 
      (color VARCHAR2(10)  PRIMARY KEY, quantity NUMBER) 
   CREATE VIEW new_product_view 
      AS SELECT color, quantity FROM new_product WHERE color = 'RED' 
   GRANT select ON new_product_view TO hr; 

The CREATE SCHEMA statement can include CREATE TABLE, CREATE VIEW, and GRANT statements. To issue a CREATE SCHEMA statement, you must have the privileges necessary to issue the included statements.

CREATE SCHEMA AUTHORIZATION oe
   CREATE TABLE new_product 
      (color VARCHAR2(10)  PRIMARY KEY, quantity NUMBER) 
   CREATE VIEW new_product_view 
      AS SELECT color, quantity FROM new_product WHERE color = 'RED' 
   GRANT select ON new_product_view TO hr; 
听你说爱我 2024-09-20 16:07:35

正如 zendar 所说,创建用户会自动创建他们的模式(在 Oracle 中,这些几乎是相同的概念)。

当您在 apex 中创建工作空间时,它会询问您是否要使用现有架构或创建新架构 - 这是您可以使用的另一个简单选项。

As zendar said, creating a user automatically creates their schema (in Oracle these are pretty much the same concept).

When you create a Workspace in apex, it will ask you if you want to use an existing schema or create a new one - so that's another easy option you could use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文