[20210418]ORA-14767 Cannot specify this interval with existing high bounds.txt
[20210418]ORA-14767 Cannot specify this interval with existing high bounds.txt
--//連結
--//重複測試:
1.環境:
SCOTT@book> @ ver1
PORT_STRING VERSION BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx 11.2.0.4.0 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
CREATE TABLE test(
RUN_DATE DATE,
MY_NBR NUMBER(4)
)
PARTITION BY RANGE (RUN_DATE)
INTERVAL (NUMTOYMINTERVAL(1, 'MONTH'))
(
PARTITION data_p1 VALUES LESS THAN (TO_DATE('01/29/2017', 'MM/DD/YYYY'))
);
*
ERROR at line 1:
ORA-14767: Cannot specify this interval with existing high bounds
--//因為2月份可能沒有29號。執行如下ok。
CREATE TABLE test(
RUN_DATE DATE,
MY_NBR NUMBER(4)
)
PARTITION BY RANGE (RUN_DATE)
INTERVAL (NUMTOYMINTERVAL(1, 'MONTH'))
(
PARTITION data_p1 VALUES LESS THAN (TO_DATE('01/28/2017', 'MM/DD/YYYY'))
);
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2768588/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Interval
- 2.3.4 Migration of an Existing ApplicationAPP
- leetcode–57–Insert IntervalLeetCode
- Please specify (single) host string for connection:
- LeetCode之Insert Interval(Kotlin)LeetCodeKotlin
- [20210418]CBC latch再討論3.txt
- [20210418]開啟多個程式執行.txt
- [20210418]查詢v$檢視問題.txt
- 巧妙設定job的interval
- ORA-65122: Pluggable database GUID conflicts with the GUID of an existingDatabaseGUI
- oracle interval日期函式的bug!Oracle函式
- 如何實現一個Interval HookHook
- [LeetCode] 57. Insert Interval 插入區間LeetCode
- Performance and High-Availability OptionsORMAI
- High Availability (HA) in SQL ServerAISQLServer
- You can‘t specify target table ‘Person‘ for update in FROM clause
- flask 裝飾器 AssertionError: View function mapping is overwriting an existing endpoint functionFlaskErrorViewFunctionAPP
- oracle的interval時間格式的總結Oracle
- The connection to the server 10.10.0.2:6443 was refused - did you specify the right host or port?Server
- mysql中You can’t specify target table for update in FROM clMySql
- AT_arc166_d [ARC166D] Interval Counts
- High precision grasp pose detection in dense clutter
- An Overview of High Performance Computing and Responsibly Reckless AlgorithmsViewORMGo
- HDFS High Availability(HA)高可用配置AI
- [20181017]ORA-01873 the leading precision of the interval is too small.txt
- Oracle查詢Interval partition分割槽表內資料Oracle
- 如何在React中優雅的使用Interval(輪詢)React
- ERROR: Cannot uninstall ‘PyYAML‘. It is a distutils installed project and thus we cannot accuratelyErrorYAMLProject
- Elasticsearch Java High Level REST Client(入門)ElasticsearchJavaRESTclient
- Elasticsearch Java High Level REST Client(Exists API)ElasticsearchJavaRESTclientAPI
- Elasticsearch Java High Level REST Client(Delete API)ElasticsearchJavaRESTclientdeleteAPI
- dvwa-暴力破解(low-high)
- 解決cannot find module providing package或cannot find main modulePackageAI
- SAP WM中階之儲存型別上架策略I(Adding to existing stock)型別
- xxx cannot be resolved to a type
- diskgroup "DATADG" cannot be mounted
- cannot instantiate QtProjectEngine objectQTProjectObject
- SpringBoot:Java High Level REST Client 搜尋 APISpring BootJavaRESTclientAPI