use 命令MongoDB 用 use + 数据库名称 的方式来创建数据库。use 会创建一个新的数据库,如果该数据库存在,则返回这个数据库。 语法格式use 语句的基本格式如下: use DATABASE_NAME 范例创建一个名为 的数据库,使用 use 语句如下: >use mydbswitched to db mydb使用命令 db 检查当前选定的数据库。 >dbmydb使用命令 show dbs 来检查数据库列表。
Start all the RAC nodes, login to RAC1 as the oracle user and start the Oracle installer./runInstallerUncheck the security updates checkbox and click the "Next" buttonAccept the "Create and configure a database" option by clicking the "Next" buttonAccept the "Server Class"
一旦连接上了 MySQL 服务器,就需要选择一个具体的用来运行的数据库。这是因为,有可能会有多个数据库挂接在MySQL服务器上。 利用命令行方式选择 MySQL 数据库通过 mysql> 提示符来选择数据库是一种非常简单的方法。可以使用 SQL 命令 use 来选择某个数据库。 范例下面这个范例展示了如何选择一个名为 TUTORIALS 的数据库。