#whole

ORA-28664: a partitioned table may not be coalesced as a whole

文档解释ORA-28664:apartitionedtablemaynotbecoalescedasawholeCause:UserattemptedtocoalesceapartitionedIOTusingALTERTABLECOALESCEstatement,whichisillegalAction:Coales...

ORA-28671: UPDATE BLOCK REFERENCES may not be used on a partitioned index as a whole

文档解释ORA-28671:UPDATEBLOCKREFERENCESmaynotbeusedonapartitionedindexasawholeCause:UserattemptedtoUPDATEBLOCKREFERENCESonapartitionedindexusingALTERINDEXUPDATEBLOC...

ORA-08111: a partitioned index may not be coalesced as a whole

文档解释ORA-08111:apartitionedindexmaynotbecoalescedasawholeCause:UserattemptedtocoalesceapartitionedindexusingALTERINDEXCOALESCEstatement,whichisillegalAction:Coal...

ORA-08112: a composite partition may not be coalesced as a whole

文档解释ORA-08112:acompositepartitionmaynotbecoalescedasawholeCause:UserattemptedtocoalesceacompositepartitionAction:Coalescetheindexasubpartitionatatime(usingALTER...

ORA-14086: a partitioned index may not be rebuilt as a whole

文档解释ORA-14086:apartitionedindexmaynotberebuiltasawholeCause:UserattemptedtorebuildapartitionedindexusingALTERINDEXREBUILDstatement,whichisillegalAction:Rebuildt...

gcc链接参数--whole-archive的作用

// a.hextern void foo(); // a.cpp#include <stdio.h> void foo(){    printf("foo");} //&nbs...

rdynamic和-whole-archive

遇到如下情况,主程序通过dlopen来打开.so文件,但是.so用到了主程序的log函数。编译so时,通过引用主程序头文件来编译通过,头文件有log函数声明: extern"C"{   voidprint() }在主程序的.c文件里有函数的具体实现。 但是dl...
代码星球 ·2020-04-02

gcc和ld 中的参数 --whole-archive 和 --no-whole-archive

首先--whole-archive和--no-whole-archive是ld专有的命令行参数,gcc并不认识,要通gcc传递到ld,需要在他们前面加-Wl,字串。--whole-archive可以把在其后面出现的静态库包含的函数和变量输出到动态库,--no-whole-archive则关掉这个特性。比如你要把liba...