在oracle 10g Express版中创建Schema
我已经安装了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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不需要显式创建模式,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.CREATE SCHEMA
语句可以包括CREATE TABLE
、CREATE VIEW
和GRANT
语句。要发出CREATE SCHEMA
语句,您必须具有发出所包含语句所需的权限。The
CREATE SCHEMA
statement can includeCREATE TABLE
,CREATE VIEW
, andGRANT
statements. To issue aCREATE SCHEMA
statement, you must have the privileges necessary to issue the included statements.正如 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.