create table進階學習系列(八)
create table進階學習系列(八)
繼續學習create table table_properties子句
繼續學習create table table_properties子句
語法:
SQL> select cache from user_tables where table_name='T_PROP';
SQL> select cache from user_tables where table_name='T_PROP';
CACHE
----------------------------------------
N
----------------------------------------
N
SQL> drop table t_prop purge;
Table dropped.
SQL> create table t_prop(a int) cache;
Table created.
SQL> select cache from user_tables where table_name='T_PROP';
CACHE
----------------------------------------
Y
----parallel選項的值=cpu個數*parallel_thread_per_cpu,一般不用配置此值,由oracle自動計算得到
PARALLEL Specify PARALLEL if you want Oracle to select a degree of parallelism equal to the number of CPUs
available on all participating instances times the value of the PARALLEL_THREADS_PER_CPU initialization parameter.
SQL> create table t_prop(a int);
----------------------------------------
Y
----parallel選項的值=cpu個數*parallel_thread_per_cpu,一般不用配置此值,由oracle自動計算得到
PARALLEL Specify PARALLEL if you want Oracle to select a degree of parallelism equal to the number of CPUs
available on all participating instances times the value of the PARALLEL_THREADS_PER_CPU initialization parameter.
SQL> create table t_prop(a int);
Table created.
SQL> select degree from user_tables where table_name='T_PROP';
DEGREE
----------------------------------------------------------------
----------------------------------------------------------------
1
SQL> drop table t_prop purge;
Table dropped.
SQL> create table t_prop(a int) parallel 3;
Table created.
SQL> select degree from user_tables where table_name='T_PROP';
DEGREE
----------------------------------------------------------------
----------------------------------------------------------------
3
SQL> create table t_prop(a int);
Table created.
SQL> select dependencies from user_tables where table_name='T_PROP';
DEPENDENCIES
----------------
DISABLED
----------------
DISABLED
SQL> drop table t_prop purge;
Table dropped.
---rowdependences用於高階複製環境,increases the size of each row by 6 bytes
SQL> create table t_prop(a int) rowdependencies;
SQL> create table t_prop(a int) rowdependencies;
Table created.
SQL> select dependencies from user_tables where table_name='T_PROP';
DEPENDENCIES
----------------
ENABLED
----------------
ENABLED
語義:
測試:
後記:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-753075/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- create table進階學習系列(五)
- create table進階學習系列(七)
- create table進階學習系列(九)
- create table進階學習系列(十一)之cluster
- create table進階學習(一)
- create table進階學習(三)
- create table進階學習(四)
- create table進階學習系列(十一)之cluster_續(二)
- create table進階學習(二)_全域性臨時表_global temporary table
- create table進階學習(二)_dba_free_temp_space_v$tempseg_usage_v$sort_segment
- JUnit5學習之八:綜合進階(終篇)
- Node進階學習
- oracle create table官方手冊如何快速檢視學習方法Oracle
- Java進階容器學習Java
- [Docker 系列]docker 學習八,Docker 網路Docker
- create table of mysql databaseMySqlDatabase
- Go 進階學習筆記Go筆記
- Java學習路線·進階Java
- c++學習進階之路
- Swift進階學習筆記Swift筆記
- Git進階學習筆記Git筆記
- JavaScript學習8:DOM進階JavaScript
- Pytorch系列:(八)學習率調整方法PyTorch
- create a partition table using a exsit table
- Go語言核心36講(Go語言進階技術八)--學習筆記Go筆記
- Oracle Create Table as SelectOracle
- 讀懂深度學習,走進“深度學習+”階段深度學習
- Android進階系列:八、自定義View之音訊抖動動效AndroidView音訊
- linux進階命令學習一Linux
- Rust build.rs進階學習RustUI
- Python學習路線·進階Python
- 學習python的進階之路Python
- linux書籍進階學習Linux
- Xcode快捷鍵進階學習XCode
- U-Net學習與進階
- SCO UNIX學習寶典 高階進階(轉)
- 高階前端進階系列 - webview前端WebView
- 【webpack 系列】進階篇Web