OCP 1Z0 052 V8 02 177題
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
177. Which three statements are correct about temporary tables? (Choose three.)
A.Indexes and views can be created on temporary tables.
B.Both the data and the structure of temporary tables can be exported.
C.Temporary tables are always created in a user's temporary tablespace.
D.The data inserted into a temporary table in a session is available to other sessions.
E.Data manipulation language (DML) locks are never acquired on the data of temporary tables.
Answer: ACE
答案解析:
參考:http://blog.csdn.net/rlhua/article/details/13015519
在臨時表中可以建立索引、檢視及觸發器,還可以使用“Export and Import(匯出和匯入)”或“Data Pump(資料泵)”匯出和匯入臨時表的定義。但是,即使使用了ROWS 選項,也不會匯出資料。
A,可以對臨時表建立索引,檢視,觸發器,正確
B,可以用 export 和 import 工具匯入匯出表的定義和資料,錯誤,不能匯出資料。
C,一個使用者的臨時表就放在當前使用者的臨時表空間中,建立臨時表後並不產生任何 segments分配,與普通表不同,正確。
D,被插入臨時表的資料能被其他會話訪問,錯誤。臨時表中的資料是基於一個會話或者一個事務的,其他的會話不能訪問到。
E,在臨時表中,DML鎖永遠不需要,正確。
臨時表可專用於事務處理,也可專用於會話。對於專用於事務處理的臨時表而言,資料存在於事務處理期間;對於專用於會話的臨時表而言,資料存在於會話期間。在這兩種情況下,會話插入的資料專用於會話。每個會話僅可檢視和修改自己的資料。因此, 臨時表的 資料從不會獲得DML 鎖。