单选题mysql的客户端mysqldump程序是用来()A删除数据库B备份数据库C还原数据库D创建数据库
单选题
mysql的客户端mysqldump程序是用来()
A
删除数据库
B
备份数据库
C
还原数据库
D
创建数据库
参考解析
解析:
暂无解析
相关考题:
下面的PHP程序运行结果是什么?( )?php$A=’hello’;function print_A(){$A = ‘php mysql!!’;Global $A;echo $A;}eho $A;print_A();? A.helloB.php mysql!!C.hello helloD.hello php mysql!!
关于DriverManager类下列哪些程序段是正确的?() A、Class.forName("org.gjt.mm.mysql.Driver");B、DriverManager.registerDriver(neworg.gjt.mm.mysql.Driver());C、Class.forName(neworg.gjt.mm.mysql.Driver());D、DriverManager.registerDriver("org.gjt.mm.mysql.Driver");E、以上说法都不对
下列哪个是MySQL的JDBC驱动程序()。 A、oracle.jdbc.driver.OracleDriverB、sun.jdbc.odbc.JdbcOdbcDriverC、com.microsoft.jdbc.sqlserver.SQLServerDriverD、com.mysql.jdbc.Driver
Mysqldump was used to create a single schema backup; Shell mysqldump –u root –p sakila sakila2013.sqlWhich two commands will restore the sakila database without interfering with other running database?()A.Mysql> USE sakila; LOAD DATA INFILE ‘sakila2013.sql‘;B.Shell> mysql –u root –p sakila sakila2013.sqlC.Shell> mysql import –u root –p sakila sakila2013.sqlD.Shell> mysql –u root -p –e ‘use sakila; source sakila2013.sql‘E.Shell> mysql –u root –p –silent < sakila2013.sql
在RHEL5系统中,使用mysql命令连接到mysql数据库以后,执行()操作可以用来查看当前服务器以有数据库列表。 A. USE mysql;B. SHOW DATABASES;C. SHOW TABLES;D. DESCRIBE mysql.db;
mysql_connect()与@mysql_connect()的区别是()。A、@mysql_connect()不会忽略错误,将错误显示到客户端B、mysql_connect()不会忽略错误,将错误显示到客户端C、没有区别D、功能不同的两个函数
Mysqldump was used to create a single schema backup; Shell mysqldump –u root –p sakila sakila2013.sql Which two commands will restore the sakila database without interfering with other running database?()A、Mysql> USE sakila; LOAD DATA INFILE 'sakila2013.sql';B、Shell> mysql –u root –p sakila sakila2013.sqlC、Shell> mysql import –u root –p sakila sakila2013.sqlD、Shell> mysql –u root -p –e 'use sakila; source sakila2013.sql'E、Shell> mysql –u root –p –silent < sakila2013.sql
导出数据库正确的方法为()。A、mysqldump 数据库名 文件名;B、mysqldump 数据库名 文件名;C、mysqldump 数据库名 文件名;D、mysqldump 数据库名 = 文件名;
在下面的选项中,对MySQL数据库描述不正确的是()。A、MySQL属于C/S结构软件B、在LAMP组合的开发平台中,MySQL用于保存网站中的内容数据C、可以使用PHP作为MySQL客户端程序连接并处理MySQL服务器D、MySQL服务器必须和Apache服务器及PHP应用服务器安装在同一台电脑中
配置LAMP环境时,源代码编译安装PHP程序在进行configure时:--prefix选项用来设置(),--with-apxs2选项设置PHP为apache服务器提供的模块的安装位置,--with-mysql选项设置mysql服务器程序的安装位置。
填空题配置LAMP环境时,源代码编译安装PHP程序在进行configure时:--prefix选项用来设置(),--with-apxs2选项设置PHP为apache服务器提供的模块的安装位置,--with-mysql选项设置mysql服务器程序的安装位置。
单选题在下面的选项中,对MySQL数据库描述不正确的是()。AMySQL属于C/S结构软件B在LAMP组合的开发平台中,MySQL用于保存网站中的内容数据C可以使用PHP作为MySQL客户端程序连接并处理MySQL服务器DMySQL服务器必须和Apache服务器及PHP应用服务器安装在同一台电脑中
多选题Mysqldump was used to create a single schema backup; Shell mysqldump –u root –p sakila sakila2013.sql Which two commands will restore the sakila database without interfering with other running database?()AMysql> USE sakila; LOAD DATA INFILE 'sakila2013.sql';BShell> mysql –u root –p sakila sakila2013.sqlCShell> mysql import –u root –p sakila sakila2013.sqlDShell> mysql –u root -p –e 'use sakila; source sakila2013.sql'EShell> mysql –u root –p –silent < sakila2013.sql
单选题mysql_connect()与@mysql_connect()的区别是()。A@mysql_connect()不会忽略错误,将错误显示到客户端Bmysql_connect()不会忽略错误,将错误显示到客户端C没有区别D功能不同的两个函数
单选题You have table 'apps','userdata' on server that uses MyISAM storage engine. You want to transfer this data to server but use InnoDB engine instead. You execute the following commands: ServerB commands: Shell> mysqldump –u root –h server –no-data apps userdata | mysql –u root –p apps Shell> mysql –u root –p –h server –e 'ALTER TABLE 'apps','userdata' ENGINE=InnoDB;' Shell> mysqldump –u root –p –h server –no-create-info –order-by-primary apps userdata | mysql –u root –p apps What effect does the – order-by-primary argument have on the mysqldump command?()AIt exports tables with the most indexes first to assist with import speedsBIt ensures that unique indexes have no conflicts when the data is dumpedCIt orders by primary key to assist in speeding up importing to InnoDB tablesDIt must be specified so index data is dumped correctly when –on-create-info is used