[20180212]函式索引問題.txt
[20180212]函式索引問題.txt
--//11g下,如果函式索引,欄位出現重複,出現ORA-54015: Duplicate column expression was specified.
SCOTT@book> @ &r/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 empx as select * from emp;
SCOTT@book> create index if_empx_x on empx(upper(ename),Upper(ename));
create index if_empx_x on empx(upper(ename),Upper(ename))
*
ERROR at line 1:
ORA-54015: Duplicate column expression was specified
SCOTT@book> create index ix_empx_x on empx(ename,ename);
create index ix_empx_x on empx(ename,ename)
*
ERROR at line 1:
ORA-00957: duplicate column name
$ oerr ora 54015
54015, 0000, "Duplicate column expression was specified"
// *Cause: Expression of the virtual column being added/created conflicts
// with an existing/previously specified functional index expression
// or virtual column expression
// *Action: Change the expression of the virtual column os there are no
// duplicate expressions
--//10g,ok:
SCOTT@test> @ &r/ver1
PORT_STRING VERSION BANNER
------------------------------ -------------- ----------------------------------------------------------------
x86_64/Linux 2.4.xx 10.2.0.4.0 Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
create table empx as select * from emp;
SCOTT@test> create index if_empx_x on empx(upper(ename),Upper(ename));
Index created.
SCOTT@test> create index ix_empx_x on empx(ename,ename);
create index ix_empx_x on empx(ename,ename)
*
ERROR at line 1:
ORA-00957: duplicate column name
--//這樣錯誤很少見,至少說明11g更加進步.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2151072/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20180509]函式索引問題.txt函式索引
- 函式索引的問題函式索引
- [20190918]關於函式索引問題.txt函式索引
- 關於函式索引的問題?函式索引
- [20150803]使用函式索引注意的問題.txt函式索引
- 0427建立Extended Statistics函式索引問題函式索引
- 0429建立Extended Statistics函式索引問題函式索引
- [20120130]函式索引與取max值的問題1.txt函式索引
- [20120131]函式索引與取max值的問題2.txt函式索引
- [20120131]函式索引與取max值的問題3.txt函式索引
- [20120612]函式索引中使用substr函式.txt函式索引
- [20170402]函式索引standard_hash.txt函式索引
- 建立聯合函式索引解決top sql效能問題函式索引SQL
- 利用函式索引解決複雜的約束問題函式索引
- [20120201][補充]函式索引與取max值的問題1.txt函式索引
- [20190827]函式索引與選擇率.txt函式索引
- [20211231]函式索引測試.txt函式索引
- 函式索引陷阱函式索引
- oracle函式索引Oracle函式索引
- 函式索引使用細節——自定義函式的索引化函式索引
- [20171202]關於函式索引的狀態.txt函式索引
- 小問題-用分析函式求平均時間段的統計數.txt函式
- Oracle之函式索引Oracle函式索引
- 說說函式索引函式索引
- 索引中使用函式索引函式
- 關於Hash 函式 雜湊索引表 解決位置衝突的問題函式索引
- 函式呼叫棧的問題函式
- itoa函式的奇怪問題函式
- 基於函式的索引函式索引
- deterministic function 函式索引Function函式索引
- 函式索引的儲存函式索引
- SQL優化--函式索引SQL優化函式索引
- sequence 和索引函式呼叫索引函式
- [20241012]cursor_sharing=force與函式索引.txt函式索引
- 函式內部This的指向問題函式
- 關於scanf函式的問題函式
- 批量註冊事件處理函式索引總是最後一個問題解決事件函式索引
- [20180408]那些函式索引適合欄位的查詢.txt函式索引