如何在oracle 10G中创建数据库
我正在尝试使用查询
创建数据库 testdb
在 Oracle 10g 中创建 tabbase ,但它显示错误 CREATE DATABASE failed 数据库已安装
请帮助我..
I am trying to create tabase in Oracle 10g using query
Create database testdb
but it showing error CREATE DATABASE failed
database already mounted
Please help me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先使用“STARTUP NOMOUNT”。
请按照Oracle 文档中的说明进行操作。或者,更简单 - 使用DBCA(数据库配置助手)。
Use "STARTUP NOMOUNT" first.
Follow the directions in the Oracle docs. Or, much easier - use the DBCA (Database Configuration Assistant).
您的数据库实例已安装到数据库。为了创建数据库,您必须启动一个实例而不安装数据库,然后发出 create databse 命令。
Your database instance is already mounted to a database. In order to create a database you have to start an instance without mounting a database and then issue the create databse command.