上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 84 下一页
摘要: Identify three situations in which you would NOT be able to drop a tablespace. (Choose three.)A.when the tablespace is onlineB.when the tablespace has 阅读全文
posted @ 2017-12-14 13:41 巴啦啦大魔王 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Examine the commands executed in a DBA session:SQL> CREATE BIGFILE TABLESPACE MRKT2 DATAFILE '/u01/app/oracle/oradata/orcl/mrkt.dbf' size 10M LOGGING3 阅读全文
posted @ 2017-12-14 13:40 巴啦啦大魔王 阅读(92) 评论(0) 推荐(0) 编辑
摘要: You execute the following command to change the status of the SALES tablespace:SQL> ALTER TABLESPACE sales OFFLINE;Which statements describe the effec 阅读全文
posted @ 2017-12-14 13:32 巴啦啦大魔王 阅读(141) 评论(0) 推荐(0) 编辑
摘要: You execute a command to resize a data file, sales.dbf, of size 200 MB in your database:ALTER DATABASE DATAFILE '/remorse/sales.dbf' RESIZE 150M;Which 阅读全文
posted @ 2017-12-14 13:27 巴啦啦大魔王 阅读(142) 评论(0) 推荐(0) 编辑
摘要: --关联查询时爆了a.id无效然后测试了一下 --错误 select a.id, b.id, c.id from t1 a ,t2 b left join t3 c on c.id=a.id where a.id=b.id --正确 select a.id, b.id, c.id from t1 a left join t3 c on c.id=a.id , t2 b where a... 阅读全文
posted @ 2017-12-14 10:43 巴啦啦大魔王 阅读(124) 评论(0) 推荐(0) 编辑
摘要: a、row_number() over() row_number()over(partition by col1 order by col2)表示根据col1分组,在分组内部根据col2排序,而此函数计算的值就表示每组内部排序后的顺序编号(组内连续的唯一的)。 与rownum的区别在于:使用rown 阅读全文
posted @ 2017-12-14 09:50 巴啦啦大魔王 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Which tablespaces are mandatory in an Oracle database for it to be operational? (Choose all that apply.)A.Undo tablespaceB.USERS tablespaceC.SYSAUX ta 阅读全文
posted @ 2017-12-13 15:45 巴啦啦大魔王 阅读(145) 评论(0) 推荐(0) 编辑
摘要: Identify two situations in which the block header grows in a data block. (Choose two.)A.when row directories need more row entriesB.when there is row 阅读全文
posted @ 2017-12-13 15:42 巴啦啦大魔王 阅读(114) 评论(0) 推荐(0) 编辑
摘要: Which two statements are true regarding a tablespace? (Choose two.)A.It can span multiple databases.B.It can consist of multiple data files.C.It can c 阅读全文
posted @ 2017-12-13 15:37 巴啦啦大魔王 阅读(128) 评论(0) 推荐(0) 编辑
摘要: Your database is configured in shared server mode. However, your senior DBA asks you to modify the value of the PRIVATE_SGA limit in the profile of th 阅读全文
posted @ 2017-12-13 15:31 巴啦啦大魔王 阅读(165) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 84 下一页