create
table autolist_test (
id number(10)
, name varchar2(10)
,cycle number(6)
)partition
by list (
cycle
) automatic (
partition part_202011 values
(202011),
partition part_202012 values
(202012),
partition part_202101 values
(202101))
;
[oracle@efi
~]$ exp dbmtmt tables
=dbmt.autolist_test:part_202011
export: release
12.2
.0.1
.0- production on 星期一 12月 28
15:58:19
2020
1982
,2017
, oracle and
/or its affiliates.
all rights reserved.
連線到: oracle database
12c enterprise edition release
12.2
.0.1.0-
64bit production
已匯出 al32utf8 字符集和 al16utf16 nchar 字符集
即將匯出指定的表通過常規路徑...
exp-
00113: 功能 new composite partitioning method 不受支援。無法匯出 table dbmt.autolist_test
匯出成功終止, 但出現警告。
[oracle@efi
~]$
[oracle@efi
~]$ oerr exp 113
00113
,00000
,"feature %s is unsupported. %s %s.%s could not be exported"
// *cause: export does not contain the required support for this feature.
// *action: use oracle data pump utility
[oracle@efi
~]$
oracle@efi
~]$ expdp dbmt/dbmt directory=oracle_home tables
=dbmt.autolist_test:part_202011 dumpfile
=autolist_test%u.
dump
export: release
12.2
.0.1
.0- production on 星期一 12月 28
15:50:44
2020
1982
,2017
, oracle and
/or its affiliates.
all rights reserved.
連線到: oracle database
12c enterprise edition release
12.2
.0.1.0-
64bit production
啟動 "dbmt"
."sys_export_table_01": dbmt/**
****
** directory=oracle_home tables
=dbmt.autolist_test:part_202011 dumpfile
=autolist_test%u.
dump
處理物件型別 table_export/
table
/table_data
處理物件型別 table_export/
table
/statistics
/table_statistics
處理物件型別 table_export/
table
/statistics
/marker
處理物件型別 table_export/
table
/table
.. 匯出了 "dbmt"
."autolist_test":"part_202011"
6.007 kb 1 行
已成功載入/解除安裝了主表 "dbmt"
."sys_export_table_01"**
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
dbmt.sys_export_table_01 的轉儲檔案集為:
/u01/oracle/autolist_test01.
dump
作業 "dbmt"
."sys_export_table_01" 已於 星期一 12月 28
15:51:31
2020 elapsed 0
00:00:46 成功完成
mysql不支援 MySQL不支援的特性
mysql 1 不支援物化檢視。2 不支援位圖索引。3 不支援並行查詢。4 不支援雜湊關聯,mysql的所有關聯都是巢狀迴圈關聯。不過,可以通過建立乙個雜湊索引來曲線實現。5 不允許對同一表同時進行查詢和更新。報錯 update tb1 as outer tb1 set cnt select cou...
MySQL不支援動態表名
今天寫乙個資料遷移的儲存過程,用到了動態表名,發現mysql不支援直接使用變數做表名。然後就用下面的方式來做了。drop procedure if exists p transfer data delimiter create procedure p transfer data begin decl...
Hive的on不支援非等值連線解決,不支援or
oracle select a.b.id asb id,b.class as b class from lpx test a a left outer join lpx test b b on a.id b.id and a.class b.class 連線條件的第二個是非等值的,不能照搬上面 hi...