网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
假设需要导出某个表table1,只导出表结构,不导出数据,可以使用如下()命令。
A

EXP user/pwd tables=(name,table1)file=export.dmp Rows=y

B

EXP user1/pwd table table1 file=extable1.dmp

C

EXP user/pwd tables=(name,table1)file=export.dmp Rows=n

D

EXP user1/pwd table=table1 file=extable1.dmp Rows=n


参考答案

参考解析
解析: 暂无解析
更多 “单选题假设需要导出某个表table1,只导出表结构,不导出数据,可以使用如下()命令。A EXP user/pwd tables=(name,table1)file=export.dmp Rows=yB EXP user1/pwd table table1 file=extable1.dmpC EXP user/pwd tables=(name,table1)file=export.dmp Rows=nD EXP user1/pwd table=table1 file=extable1.dmp Rows=n” 相关考题
考题 当需要描述一个表table1对象结构时,可以使用() A.DEStable1B.DESCtable1C.DESCRtable1D.DESCRIBtable1

考题 假设用户user1的temp1表分区为PART1、PART2和PART3,需要导出整个表及其分区,可以使用如下()命令。 A.EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1,part1,part2,part3)B.EXP SYSTEM/MANAGER FILE=EXPDAT.DMPC.EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1)D.EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1,full)

考题 有Table1,Table2两表,Table2是Table1的从表,Table1表有字段head_id(主键)和head_name,Table2表有字段Line_id(主键),head_id(外键),line_name,现要求查询统计出有那些hand_name在Table2表中有2条以上的数据。请写出你的SQL语句。

考题 数据库应用系统在运行过程中,发现随着数据量的不断增加,有部分查询业务和数据更新业务执行耗时越来越长。经分析,这些业务都与表Table1有关。假设Table1有30多个字段,分别为(Key,A1,A2,...Am,B1,B2,...Bn)。执行频度较高的查询业务都只用到A1,A2,...Am中的大部分属性,因此,DBA决定将表Table1分解为Table2(Key,A1,A2,...Am)和Table3(Key,B1,B2,...Bn)。为了使所有对Table1的查询程序不必修改,应该(请作答此空);为了使对Table1的更新业务能正确执行,应该( );这样实现了( )。A.修改所有对Tabel1的查询程序 B.创建视图Table1,为Ttable2和Table3的自然连接 C.只修改使用A1,A2,...Am中属性的程序 D.只修改使用B1,B2,...Bn中属性的程序

考题 数据库应用系统在运行过程中,发现随着数据量的不断增加,有部分查询业务和数据更新业务执行耗时越来越长。经分析,这些业务都与表Table1有关。假设Table1有30多个字段,分别为(Key,A1,A2,...Am,B1,B2,...Bn)。执行频度较高的查询业务都只用到A1,A2,...Am中的大部分属性,因此,DBA决定将表Table1分解为Table2(Key,A1,A2,...Am)和Table3(Key,B1,B2,...Bn)。为了使所有对Table1的查询程序不必修改,应该( );为了使对Table1的更新业务能正确执行,应该(请作答此空);这样实现了( )。A.修改所有对Table1更新的事务程序 B.创建视图Table1,为Table2和Table3的自然连接 C.只修改对A1,A2,...Am中属性更新的事务程序 D.只修改对B1,B2,...Bn中属性更新的事务程序

考题 数据库应用系统在运行过程中,发现随着数据量的不断增加,有部分查询业务和数据更新业务执行耗时越来越长。经分析,这些业务都与表Table1有关。假设Table1有30多个字段,分别为(Key,A1,A2,...Am,B1,B2,...Bn)。执行频度较高的查询业务都只用到A1,A2,...Am中的大部分属性,因此,DBA决定将表Table1分解为Table2(Key,A1,A2,...Am)和Table3(Key,B1,B2,...Bn)。为了使所有对Table1的查询程序不必修改,应该( );为了使对Table1的更新业务能正确执行,应该( );这样实现了(请作答此空)。A.数据的逻辑独立性 B.数据的物理独立性 C.程序的逻辑独立性 D.程序的物理独立性

考题 下列正确的标识符有()A、my tableB、my_tableC、123D、[123]E、table1

考题 用户user1和user2同属于users组,user1有一个文件file1,需要user2能修改user2的file1文件,改文件需要拥有什么样的权限A、646B、746C、744D、664

考题 假定表table1中phone列有空值,则select count(*) from table1与select count(phone) from table1相等吗? ()A、相等B、不相等

考题 当需要描述一个表table1对象结构时,可以使用()。A、DES table1B、DESC table1C、DESCR table1D、DESCRIB table1

考题 You have a computer that runs Windows XP Professional. Two users named User1 and User2 share the computer. User1 and User2 encrypt files on the computer. User1 encrypts a file named file1. doc. You need ensure that both User1 and User2 can view the contents of file1. doc. What should you instruct User1 to do?() A、Add the certificate of User2 to file1. doc. B、Assign User2 the Full Control NTFS permission on file1. doc. C、Copy file1. doc the %systemroot%/documents and settings/all users/ folder.D、Move file1. doc to the %systemroot%/documents and settings/all users/ folder. 

考题 有如下定义 TABLE1 DD 0,1,2,3 TABLE2 DB 30H, 31H, 32H, 33H 则下列指令中,()项是正确的。A、MOV AX,TABLE1B、MOV BX,TABLE2C、MOV AX,WORD PTR TABLE1D、MOV BX,BYTE PTR TABLE1

考题 myTable=New System.Data.DataTable(),myTable的名称是Table1。

考题 触发器可引用视图或临时表,并产生两个特殊的表是()。A、Deleted、InsertedB、Delete、InsertC、View、TableD、View1、table1

考题 假设需要导出某个表table1,只导出表结构,不导出数据,可以使用如下()命令。A、EXP user/pwd tables=(name,table1)file=export.dmp Rows=yB、EXP user1/pwd table table1 file=extable1.dmpC、EXP user/pwd tables=(name,table1)file=export.dmp Rows=nD、EXP user1/pwd table=table1 file=extable1.dmp Rows=n

考题 假设用户user1的temp1表分区为PART1、PART2和PART3,需要导出整个表及其分区,可以使用如下()命令。A、EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1,part1,part2,part3)B、EXP SYSTEM/MANAGER FILE=EXPDAT.DMPC、EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1)D、EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1,full)

考题 你正在SQL SERVER 2005 服务器上一个名为DB1的数据库上进行着工作。你发现由于对DB1中Table1表的扫描导致了查询执行缓慢。已知,Table是一个使用频繁而且非常巨大的表,同时你又确定了查询中包含如下的语句:SELECT col1,col2 FROM table1 WHERE col3 = 。在表保持对所有用户有效的情况下,为了最大化的提高查询性能,你应该怎么做?()A、更新DB1数据库中表Table1的所有统计信息B、在DB1数据库中,使用CREATE STATISTICS 语句为表Table1的列col3创建缺少的统计信息C、设置优先值提升选项的值为1D、执行如下语句:USE DB1 GO CREATE INDEX index1 ON table1(col3) INCLUDE(col1, col2) WITH (ONLINE = ON) GOE、执行如下语句 USE DB1GOCREATE INDEX index1 ON table1(col3, col2,col1)

考题 You work with a database named DB1, which is located on a SQL Server 2005 computer. You discover that a table scan on Table1 in DB1 causes a slow query. Table1 is a very large table that is used frequently. You ascertain that the query contains the following statement. SELECT col1, col2 FROM table1 WHERE col3 =  You need to provide maximum query performance. Table1 must remain available to users. What should you do?()A、Update all statistics on Table1 in DB1.B、Use the CREATE STATISTICS statement in DB1 to create missing statistics on col3of Table1.C、Set the priority boost server option to 1.D、Execute the following statement.USE DB1GOCREATE INDEX index1 ON table1(col3)INCLUDE(col1, col2) WITH (ONLINE = ON)GO

考题 Excel 2010的默认工作表分别命名为()。A、Sheetl,Sheet2,Sheet3B、Book1,Book2,Book3C、Table1,Table2,Table3D、List1,List2,List3

考题 单选题假设用户user1的temp1表分区为PART1、PART2和PART3,需要导出整个表及其分区,可以使用如下()命令。A EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1,part1,part2,part3)B EXP SYSTEM/MANAGER FILE=EXPDAT.DMPC EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1)D EXP SYSTEM/MANAGER FILE=EXPDAT.DMP TABLES=(user1.temp1,full)

考题 单选题触发器可引用视图或临时表,并产生两个特殊的表是()。A Deleted、InsertedB Delete、InsertC View、TableD View1、table1

考题 单选题You work with a database named DB1, which is located on a SQL Server 2005 computer. You discover that a table scan on Table1 in DB1 causes a slow query. Table1 is a very large table that is used frequently. You ascertain that the query contains the following statement. SELECT col1, col2 FROM table1 WHERE col3 =  You need to provide maximum query performance. Table1 must remain available to users. What should you do?()A Update all statistics on Table1 in DB1.B Use the CREATE STATISTICS statement in DB1 to create missing statistics on col3of Table1.C Set the priority boost server option to 1.D Execute the following statement.USE DB1GOCREATE INDEX index1 ON table1(col3)INCLUDE(col1, col2) WITH (ONLINE = ON)GO

考题 单选题当需要描述一个表table1对象结构时,可以使用()。A DES table1B DESC table1C DESCR table1D DESCRIB table1

考题 单选题你正在SQL SERVER 2005 服务器上一个名为DB1的数据库上进行着工作。你发现由于对DB1中Table1表的扫描导致了查询执行缓慢。已知,Table是一个使用频繁而且非常巨大的表,同时你又确定了查询中包含如下的语句:SELECT col1,col2 FROM table1 WHERE col3 = 。在表保持对所有用户有效的情况下,为了最大化的提高查询性能,你应该怎么做?()A 更新DB1数据库中表Table1的所有统计信息B 在DB1数据库中,使用CREATE STATISTICS 语句为表Table1的列col3创建缺少的统计信息C 设置优先值提升选项的值为1D 执行如下语句:USE DB1 GO CREATE INDEX index1 ON table1(col3) INCLUDE(col1, col2) WITH (ONLINE = ON) GOE 执行如下语句 USE DB1GOCREATE INDEX index1 ON table1(col3, col2,col1)

考题 单选题假设需要导出某个表table1,只导出表结构,不导出数据,可以使用如下()命令。A EXP user/pwd tables=(name,table1)file=export.dmp Rows=yB EXP user1/pwd table table1 file=extable1.dmpC EXP user/pwd tables=(name,table1)file=export.dmp Rows=nD EXP user1/pwd table=table1 file=extable1.dmp Rows=n

考题 判断题myTable=New System.Data.DataTable(),myTable的名称是Table1。A 对B 错

考题 单选题You have a computer that runs Windows XP Professional. Two users named User1 and User2 share the computer. User1 and User2 encrypt files on the computer. User1 encrypts a file named file1. doc. You need ensure that both User1 and User2 can view the contents of file1. doc. What should you instruct User1 to do?()A Add the certificate of User2 to file1. doc. B Assign User2 the Full Control NTFS permission on file1. doc. C Copy file1. doc the %systemroot%/documents and settings/all users/ folder.D Move file1. doc to the %systemroot%/documents and settings/all users/ folder. 

考题 单选题假定表table1中phone列有空值,则select count(*) from table1与select count(phone) from table1相等吗? ()A 相等B 不相等