oracle-Expdp/impdp命令
建立逻辑路径
create or replace directory dumpdir as 'c:\';
grant read,write on directory dumpdir to scott;
倒入/出
expdp newdr/123456@hncrm directory=test dumpfile=test_score1.dmp
logfile=tes
t.log parallel=2 schemas=newdr
错误
ORA-00054
resource
busy and acquire with NOWAIT specified
资源正忙,要求指定NOWAIT
ORA-00600
internal
error code,arguments:[num],[?],[?],[?],[?]
产生原因:这种错误通常为ORACLE的内部错误,只对OSS和ORACLE开发有用。ORA-600的错误经常伴随跟踪文件的状态转储(系统状态和进程状态),系统状态存储将包括ORACLE RDBMS持有的当前对象的信息,进程状态转储则将显示特殊进程持有的对象,当进程符合了某错误条件时,经常是由于一些信息取自它持有的一个块,如果我们知道这些错误进程持有的块,就容易跟踪问题的来源。
解决方法:一般来说出现这个错误我们本身是无法解决的,只有从提高系统本身各方面来解决这个内部问题,如增加硬件设备,调整系统性能,使用OPS(当然OPS从某种意义上说并不是一种好的解决方式)等。ORA-600错误的第一个变量用于标记代码中错误的位置(代码中的每个部分的第一变量都不一样),从第二个到第五个变量显示附加信息,告诉OSS代码在哪里出现了错误。
一个报错例子如下:
ORA-00600:
internal error code, arguments: [1237], [], [], [], [], [], [], []
相应的英文如下:
Cause:This
is a catchall(包罗万象的) internal error message for Oracle program exceptions.It
indicates that a process has met a low-level,unexpected condition.Various
causes of this message include:
Time-outs(超时)
File
corruption(文件太老)
Failed
data checks in memory(内存检索失败)
Hardware,memory,or
I/O errors(硬件、内存或者磁盘错误)
Incorrectly
restored files(错误的重建文件)
Ora-600 Base |
Functionality |
Description |
||||||||||||||||||||||||||||||||||||||||||||||||
1 |
Service Layer |
The service layer has within it a variety of Note : vos - Virtual Operating System
|
||||||||||||||||||||||||||||||||||||||||||||||||
2000 |
Cache Layer |
Where errors are generated in this area, it is Note : rcv indicates recovery. It is
It is important to consider when the error |
||||||||||||||||||||||||||||||||||||||||||||||||
4000 |
Transaction Layer |
Primarily the transaction layer is involved with
It is important to try and determine what the |
||||||||||||||||||||||||||||||||||||||||||||||||
6000 |
Data Layer |
The data layer is responsible for maintaining and
Again, it is important to try and determine what |
||||||||||||||||||||||||||||||||||||||||||||||||
12000 |
User/Oracle Interface & SQL |
This layer governs the user interface with the
You should try and repeat the issue and with the |
||||||||||||||||||||||||||||||||||||||||||||||||
14000 |
System Dependent Component |
This layer manages interaction with the OS.
|
||||||||||||||||||||||||||||||||||||||||||||||||
15000 |
security/dac, |
local user access validation; challenge / |
||||||||||||||||||||||||||||||||||||||||||||||||
15100 |
dict/sqlddl |
this component manages operations associated with |
||||||||||||||||||||||||||||||||||||||||||||||||
15160 |
optim/cbo |
cost based optimizer layer is used to determine |
||||||||||||||||||||||||||||||||||||||||||||||||
15190 |
optim/cbo |
cost based optimizer layer. Used in the |
||||||||||||||||||||||||||||||||||||||||||||||||
15200 |
dict/shrdcurs |
used to in creating sharable context area |
||||||||||||||||||||||||||||||||||||||||||||||||
15230 |
dict/sqlddl |
manages the compilation of triggers |
||||||||||||||||||||||||||||||||||||||||||||||||
15260 |
dict/dictlkup |
dictionary lookup and library cache access |
||||||||||||||||||||||||||||||||||||||||||||||||
15400 |
server/drv |
manages alter system and alter session operations |
||||||||||||||||||||||||||||||||||||||||||||||||
15410 |
progint/if |
manages compilation of pl/sql packages and |
||||||||||||||||||||||||||||||||||||||||||||||||
15500 |
dict/dictlkup |
performs dictionary lookup to ensure semantics |
||||||||||||||||||||||||||||||||||||||||||||||||
15550 |
sqlexec/execsvc |
hash join execution management; |
||||||||||||||||||||||||||||||||||||||||||||||||
15600 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
15620 |
repl/snapshots |
manages the creation of snapshot or materialized |
||||||||||||||||||||||||||||||||||||||||||||||||
15640 |
repl/defrdrpc |
layer containing various functions for examining |
||||||||||||||||||||||||||||||||||||||||||||||||
15660 |
jobqs/jobq |
manages the operation of the Job queue background |
||||||||||||||||||||||||||||||||||||||||||||||||
15670 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
15700 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
15800 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
15810 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
15820 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
15850 |
sqlexec/execsvc |
component provides support for the execution of |
||||||||||||||||||||||||||||||||||||||||||||||||
15860 |
sqlexec/pq |
component provides support for Parallel Query |
||||||||||||||||||||||||||||||||||||||||||||||||
16000 |
loader |
sql Loader direct load operation; |
||||||||||||||||||||||||||||||||||||||||||||||||
16150 |
loader |
this layer is used for 'C' level call outs to |
||||||||||||||||||||||||||||||||||||||||||||||||
16200 |
dict/libcache |
this is part of library Cache operation. Amongst |
||||||||||||||||||||||||||||||||||||||||||||||||
16230 |
dict/libcache |
this component is responsible for managing access |
||||||||||||||||||||||||||||||||||||||||||||||||
16300 |
mts/mts |
this component relates to MTS (Multi Threaded |
||||||||||||||||||||||||||||||||||||||||||||||||
16400 |
dict/sqlddl |
this layer contains functionality which allows |
||||||||||||||||||||||||||||||||||||||||||||||||
16450 |
dict/libcache |
this layer layer provides support for |
||||||||||||||||||||||||||||||||||||||||||||||||
16500 |
dict/rowcache |
this layer provides support to load / cache |
||||||||||||||||||||||||||||||||||||||||||||||||
16550 |
sqlexec/fixedtab |
this component maps data structures maintained in |
||||||||||||||||||||||||||||||||||||||||||||||||
16600 |
dict/libcache |
this layer performs management of data structures |
||||||||||||||||||||||||||||||||||||||||||||||||
16651 |
dict/libcache |
this layer performs management of dictionary |
||||||||||||||||||||||||||||||||||||||||||||||||
16701 |
dict/libcache |
this layer provides library Cache support to |
||||||||||||||||||||||||||||||||||||||||||||||||
17000 |
dict/libcache |
this is the main library Cache manager. This |
||||||||||||||||||||||||||||||||||||||||||||||||
17090 |
generic/vos |
this layer implementations error management |
||||||||||||||||||||||||||||||||||||||||||||||||
17100 |
generic/vos |
Heap manager. The Heap manager manages the |
||||||||||||||||||||||||||||||||||||||||||||||||
17200 |
dict/libcache |
this component deals with loading remote library |
||||||||||||||||||||||||||||||||||||||||||||||||
17250 |
dict/libcache |
more library cache errors ; functionality for |
||||||||||||||||||||||||||||||||||||||||||||||||
17270 |
dict/instmgmt |
this component manages instantiations of |
||||||||||||||||||||||||||||||||||||||||||||||||
17300 |
generic/vos |
manages certain types of memory allocation |
||||||||||||||||||||||||||||||||||||||||||||||||
17500 |
generic/vos |
relates to various I/O operations. These relate |
||||||||||||||||||||||||||||||||||||||||||||||||
17625 |
dict/libcache |
additional library Cache supporting functions |
||||||||||||||||||||||||||||||||||||||||||||||||
17990 |
plsql |
plsql 'standard' package related issues |
||||||||||||||||||||||||||||||||||||||||||||||||
18000 |
txn/lcltx |
transaction and savepoint management |
||||||||||||||||||||||||||||||||||||||||||||||||
19000 |
optim/cbo |
cost based optimizer related operations |
||||||||||||||||||||||||||||||||||||||||||||||||
20000 |
ram/index |
bitmap index and index related errors. |
||||||||||||||||||||||||||||||||||||||||||||||||
20400 |
ram/partnmap |
operations on partition related objects |
||||||||||||||||||||||||||||||||||||||||||||||||
20500 |
server/rcv |
server recovery related operation |
||||||||||||||||||||||||||||||||||||||||||||||||
21000 |
repl/defrdrpc, |
replication related features |
||||||||||||||||||||||||||||||||||||||||||||||||
23000 |
oltp/qs |
AQ related errors. |
||||||||||||||||||||||||||||||||||||||||||||||||
24000 |
dict/libcache |
operations associated with managing stored |
||||||||||||||||||||||||||||||||||||||||||||||||
25000 |
server/rcv |
tablespace management operations |
Internal Errors Categorised by mnemonic
The following table details mnemonics error stems which are possible. If
you have encountered : ora-600[kkjsrj:1] for example, you should look
down the Error Mnemonic column (errors in alphabetical order) until you find
the matching stem. In this case, kkj indicates that something unexpected
has occurred in job queue operation.
Error Mnemonic(s) |
Functionality |
Description |
ain ainp |
ram/index |
ain - alter index; ainp - alter index |
apacb |
optim/rbo |
used by optimizer in connect by processing |
atb atbi atbo ctc ctci cvw |
dict/sqlddl |
alter table , create table (IOT) or cluster |
dbsdrv |
sqllang/parse |
alter / create database operation |
ddfnet |
progint/distrib |
various distributed operations on remote |
delexe |
sqlexec/dmldrv |
manages the delete statement operation |
dix |
ram/index |
manages drop index or validate index |
dtb |
dict/sqlddl |
manages drop table operation |
evaa2g evah2p evaa2g |
dbproc/sqlfunc |
various functions involves in evaluating operand |
expcmo expgon |
dbproc/expreval |
handles expression evaluation with respect to two |
gra |
security/dac |
manages the granting and revoking of privilege |
gslcsq |
plsldap |
support for operations with an LDAP server |
insexe |
sqlexec/dmldrv |
handles the insert statement operation |
jox |
progint/opi |
functionality associated with the Java compiler |
k2c k2d |
progint/distrib |
support for database to database operation in |
k2g k2l |
txn/disttx |
support for the 2 phase commit protocol protocol |
k2r k2s k2sp |
progint/distrib |
k2r - user interface for managing distributed |
k2v |
txn/disttx |
handles distributed recovery operation |
kad |
cartserv/picklercs |
handles OCIAnyData implementation |
kau |
ram/data |
manages the modification of indexes for inserts, |
kcb kcbb kcbk kcbl kcbs kcbt kcbw |
cache |
manages Oracle's buffer cache operation as well |
kcc kcf |
rcv |
manages and coordinates operations on the control |
kcit |
context/trigger |
internal trigger functionality |
kck |
rcv |
compatibility related checks associated with the |
kcl |
cache |
background lck process which manages locking in a |
kco kcq kcra kcrf kcrfr kcrfw |
rcv |
various buffer cache operation such as quiesce |
kd |
ram/data |
support for row level dependency checking and |
kda |
ram/analyze |
manages the analyze command and collection of |
kdbl kdc kdd |
ram/data |
support for direct load operation, cluster space |
kdg |
ram/analyze |
gathers information about the underlying data and |
kdi kdibc3 kdibco kdibh kdibl |
ram/index |
support of the creation of indexes on tables an |
kdl kdlt |
ram/object |
lob and temporary lob management |
kdo |
ram/data |
operations on data such as inserting a row piece |
kdrp |
ram/analyze |
underlying support for operations provided by the |
kds kdt kdu |
ram/data |
operations on data such as retrieving a row and |
kdv kdx |
ram/index |
functionality for dumping index and managing |
kfh kfp kft |
rcv |
support for writing to file header and |
kgaj kgam kgan kgas kgat kgav |
argusdbg/argusdbg |
support for Java Debug Wire Protocol (JDWP) and |
kgbt kgg kgh kghs kghx kgkp |
vos |
kgbt - support for BTree operations; kgg - |
kgl kgl2 kgl3 kgla kglp kglr kgls |
dict/libcache |
generic library cache operation |
kgm kgmt |
ilms |
support for inter language method services - or |
kgrq kgsk kgski kgsn kgss |
vos |
support for priority queue and scheduling; |
kgupa kgupb kgupd0 kgupf kgupg |
vos |
Service related activities activities associated |
kgxp |
vos |
inter process communication related functions |
kjak kjat kjb kjbl kjbm kjbr kjcc |
ccl/dlm |
dlm related functionality ; associated with RAC |
kjxgf kjxgg kjxgm kjxgn kjxgna |
ccl/cgs |
provides communication & synchronisation |
kjxt |
ccl/dlm |
DLM request message management |
kjzc kjzd kjzf kjzg kjzm |
ccl/diag |
support for diagnosibility amongst OPS related |
kkb |
dict/sqlddl |
support for operatoins which load/change table |
kkbl kkbn kkbo |
objsupp/objddl |
support for tables with lobs , nested tables and |
kkdc kkdl kkdo |
dict/dictlkup |
support for constraints, dictionary lookup and |
kke |
optim/cbo |
query engine cost engine; provides support |
kkfd |
sqlexec/pq |
support for performing parallel query operation |
kkfi |
optim/cbo |
optimizer support for matching of expressions |
kkfr kkfs |
sqlexec/pq |
support for rowid range handling as well as for |
kkj |
jobqs/jobq |
job queue operation |
kkkd kkki |
dict/dbsched |
resource manager related support. Additionally, |
kklr |
dict/sqlddl |
provides functions used to manipulate LOGGING |
kkm kkmi |
dict/dictlkup |
provides various semantic checking |
kkn |
ram/analyze |
support for the analyze command |
kko kkocri |
optim/cbo |
Cost based Optimizer operation : generates |
kkpam kkpap |
ram/partnmap |
support for mapping predicate keys expressions to |
kkpo kkpoc kkpod |
dict/partn |
support for creation and modification of |
kkqg kkqs kkqs1 kkqs2 kkqs3 kkqu |
optim/vwsubq |
query rewrite operation |
kks kksa kksh kksl kksm |
dict/shrdcurs |
support for managing shared cursors/ shared sql |
kkt |
dict/sqlddl |
support for creating, altering and dropping |
kkxa |
repl/defrdrpc |
underlying support for dbms_defer_query package |
kkxb |
dict/sqlddl |
library cache interface for external tables |
kkxl |
dict/plsicds |
underlying support for the dbms_lob package |
kkxm |
progint/opi |
support for inter language method services |
kkxs |
dict/plsicds |
underlying support for the dbms_sys_sql |
kkxt |
repl/trigger |
support for replication internal trigger |
kkxwtp |
progint/opi |
entry point into the plsql compiler |
kky |
drv |
support for alter system/session commands |
kkz kkzd kkzf kkzg kkzi kkzj kkzl |
repl/snapshot |
support for snapshots or Materialized View |
kla klc klcli klx |
tools/sqlldr |
support for direct path sql loader operation |
kmc kmcp kmd kmm kmr |
mts/mts |
support for Multi Threaded server operation (MTS) |
knac knafh knaha knahc knahf |
repl/apply |
replication apply operation associated with |
kncc |
repl/repcache |
support for replication related information |
kncd knce |
repl/defrdrpc |
replication related enqueue and dequeue of |
kncog |
repl/repcache |
support for loading replicaiton object group |
kni |
repl/trigger |
support for replication internal trigger |
knip knip2 knipi knipl knipr |
repl/intpkg |
support for replication internal package |
kno |
repl/repobj |
support for replication objects |
knp knpc knpcb knpcd knpqc |
repl/defrdrpc |
operations assocaied with propagating |
knst |
repl/stats |
replication statistics collection |
knt kntg kntx |
repl/trigger |
support for replication internal trigger |
koc |
objmgmt/objcache |
support for managing ADTs objects in the OOCI |
kod |
objmgmt/datamgr |
support for persistent storage for objects : for |
koh |
objmgmt/objcache |
object heap manager provides memory allocation |
koi |
objmgmt/objmgr |
support for object types |
koka |
objsupp/objdata |
support for reading images, inserting images, |
kokb kokb2 |
objsupp/objsql |
support for nested table objects |
kokc |
objmgmt/objcache |
support for pinning , unpinning and freeing |
kokd |
objsupp/datadrv |
driver on the server side for managing objects |
koke koke2 koki |
objsupp/objsql |
support for managing objects |
kokl |
objsupp/objdata |
lob access |
kokl2 |
objsupp/objsql |
lob DML and programmatic interface support |
kokl3 |
objsupp/objdata |
object temporary LOB support |
kokle kokm |
objsupp/objsql |
object SQL evaluation functions |
kokn |
objsupp/objname |
naming support for objects |
koko |
objsupp/objsup |
support functions to allow oci/rpi to communicate |
kokq koks koks2 koks3 koksr |
objsupp/objsql |
query optimisation for objects , semantic |
kokt kokt2 kokt3 |
objsupp/objddl |
object compilation type manager |
koku kokv |
objsupp/objsql |
support for unparse object operators and object |
kol kolb kole kolf kolo |
objmgmt/objmgr |
support for object Lob buffering , object lob |
kope2 kopi2 kopo kopp2 kopu |
objmgmt/pickler |
8.1 engine implementation, implementation |
kos |
objsupp/objsup |
object Stream interfaces for images/objects |
kot kot2 kotg |
objmgmt/typemgr |
support for dynamic type operations to create, delete, and update |
koxs koxx |
objmgmt/objmgt |
object generic image Stream routines and |
kpcp kpcxlt |
progint/kpc |
Kernel programmatic connection pooling and kernel |
kpki |
progint/kpki |
kernel programatic interface support |
kpls |
cartserv/corecs |
support for string formatting operations |
kpn |
progint/kpn |
support for server to server communication |
kpoal8 kpoaq kpob kpodny kpodp |
progint/kpo |
support for programmatic operations |
kpor |
progint/opi |
support for streaming protocol used by |
kposc |
progint/kpo |
support for scrollable cursors |
kpotc |
progint/opi |
oracle side support functions for setting up |
kpotx kpov |
progint/kpo |
support for managing local and distributed |
kpp2 kpp3 |
sqllang/parse |
kpp2 - parse routines for dimensions; |
kprb kprc |
progint/rpi |
support for executing sql efficiently on the |
kptsc |
progint/twotask |
callback functions provided to all streaming |
kpu kpuc kpucp |
progint/kpu |
Oracle kernel side programmatic user |
kqan kqap kqas |
argusdbg/argusdbg |
server-side notifiers and callbacks for debug |
kql kqld kqlp |
dict/libcache |
SQL Library Cache manager - manages the sharing |
kqr |
dict/rowcache |
row cache management. The row cache consists of a |
krbi krbx krby krcr krd |
rcv |
Backup and recovery related operations : |
krvg krvt |
rcv/vwr |
krvg - support for generation of redo associated |
ksa ksdp ksdx kse ksfd ksfh ksfq |
vos |
support for various kernel associated |
ksx |
sqlexec/execsvc |
support for query execution associated with |
ksxa ksxp ksxr |
vos |
support for various kernel associated |
kta |
space/spcmgmt |
support for DML locks and temporary tables |
ktb ktbt ktc |
txn/lcltx |
transaction control operations at the block level |
ktec ktef ktehw ktein ktel kteop |
space/spcmgmt |
support for extent management operations : |
ktf |
txn/lcltx |
flashback support |
ktfb ktfd ktft ktm |
space/spcmgmt |
ktfb - support for bitmapped space manipulation |
ktp ktpr ktr ktri |
txn/lcltx |
ktp - support for parallel transaction operation; |
ktsa ktsap ktsau ktsb ktscbr ktsf |
space/spcmgmt |
support for checking and verifying space usage |
ktu ktuc ktur ktusm |
txn/lcltx |
internal management of undo and rollback segments |
kwqa kwqi kwqic kwqid kwqie kwqit |
oltp/qs |
support for advanced queuing : |
kwrc kwre |
oltp/re |
rules engine evaluation |
kxcc kxcd kxcs |
sqllang/integ |
constraint processing |
kxdr |
sqlexec/dmldrv |
DML driver entrypoint |
kxfp kxfpb kxfq kxfr kxfx |
sqlexec/pq |
parallel query support |
kxhf kxib |
sqlexec/execsvc |
khhf- support for hash join file and memory |
kxs |
dict/instmgmt |
support for executing shared cursors |
kxti kxto kxtr |
dbproc/trigger |
support for trigger operation |
kxtt |
ram/partnmap |
support for temporary table operations |
kxwph |
ram/data |
support for managing attributes of the segment of |
kza |
security/audit |
support for auditing operations |
kzar |
security/dac |
support for application auditing |
kzck |
security/crypto |
encryption support |
kzd |
security/dac |
support for dictionary access by security related |
kzec |
security/dbencryption |
support inserting and retrieving encrypted |
kzfa kzft |
security/audit |
support for fine grained auditing |
kzia |
security/logon |
identification and authentication operations |
kzp kzra kzrt kzs kzu kzup |
security/dac |
security related operations associated with |
msqima msqimb |
sqlexec/sqlgen |
support for generating sql statments |
ncodef npi npil npixfr |
progint/npi |
support for managing remote network connection |
oba |
sqllang/outbufal |
operator buffer allocate for various types of |
ocik |
progint/oci |
OCI oracle server functions |
opiaba opidrv opidsa opidsc |
progint/opi |
OPI Oracle server functions - these are at the |
orlr |
objmgmt/objmgr |
support for C langauge interfaces to |
orp |
objmgmt/pickler |
oracle's |
pesblt pfri pfrsqc |
plsql/cox |
pesblt - pl/sql built in interpreter; pfri - |
piht |
plsql/gen/utl |
support for pl/sql implementation of utl_http |
pirg |
plsql/cli/utl_raw |
support for pl/sql implementation of utl_raw |
pism |
plsql/cli/utl_smtp |
support for pl/sql implementation of utl_smtp |
pitcb |
plsql/cli/utl_tcp |
support for pl/sql implementation of utl_tcp |
piur |
plsql/gen/utl_url |
support for pl/sql implementation of utl_url |
plio |
plsql/pkg |
pl/sql object instantiation |
plslm |
plsql/cox |
support for NCOMP processing |
plsm pmuc pmuo pmux |
objmgmt/pol |
support for pl/sql handling of collections |
prifold priold |
plsql/cox |
support to allow rpc forwarding to an older |
prm |
sqllang/param |
parameter handling associated with sql layer |
prsa prsc prssz |
sqllang/parse |
prsa - parser for alter cluster command; prsc - |
psdbnd psdevn |
progint/dbpsd |
psdbnd - support for managing bind variables; |
psdicd |
progint/plsicds |
small number of ICD to allow pl/sql to call into |
psdmsc psdpgi |
progint/dbpsd |
psdmsc - pl/sql system dependent miscellaneous |
psf |
plsql/pls |
pl/sql service related functions for |
qbadrv qbaopn |
sqllang/qrybufal |
provides allocation of buffer and control |
qcdl qcdo |
dict/dictlkup |
qcdl - query compile semantic analysis; qcdo - |
qci |
dict/shrdcurs |
support for SQL language parser and semantic |
qcop qcpi qcpi3 qcpi4 qcpi5 |
sqllang/parse |
support for query compilation parse phase |
qcs qcs2 qcs3 qcsji qcso |
dict/dictlkup |
support for semantic analysis by SQL compiler |
qct qcto |
sqllang/typeconv |
qct - query compile type check operations; qcto |
qcu |
sqllang/parse |
various utilities provided for sql compilation |
qecdrv |
sqllang/qryedchk |
driver performing high level checks on sql |
qerae qerba qerbc qerbi qerbm |
sqlexec/rowsrc |
row source operators : |
qes3t qesa qesji qesl qesmm |
sqlexec/execsvc |
run time support for sql execution |
qkacon qkadrv qkajoi qkatab qke |
sqlexec/rwsalloc |
SQL query dynamic structure allocation routines |
qks3t |
sqlexec/execsvc |
query execution service associated with temp |
qksmm qksmms qksop |
sqllang/compsvc |
qksmm - memory management services for the |
qkswc |
sqlexec/execsvc |
support for temp table transformation associated |
qmf |
xmlsupp/util |
support for ftp server; implements processing of |
qmr qmrb qmrs |
xmlsupp/resolver |
support hierarchical resolver |
qms |
xmlsupp/data |
support for storage and retrieval of XOBs |
qmurs |
xmlsupp/uri |
support for handling URIs |
qmx qmxsax |
xmlsupp/data |
qmx - xml support; qmxsax - support for handling |
qmxtc |
xmlsupp/sqlsupp |
support for ddl and other operators related |
qmxtgx |
xmlsupp |
support for transformation : ADT -> XML |
qmxtsk |
xmlsupp/sqlsupp |
XMLType support functions |
qsme |
summgmt/dict |
summary management expression processing |
qsmka qsmkz |
dict/dictlkup |
qsmka - support to analyze request in order to |
qsmp qsmq qsmqcsm qsmqutl |
summgmt/dict |
qsmp - summary management partition processing; |
qsms |
summgmt/advsvr |
summary management advisor |
qxdid |
objsupp/objddl |
support for domain index ddl operations |
qxidm |
objsupp/objsql |
support for extensible index dml operations |
qxidp |
objsupp/objddl |
support for domain index ddl partition operations |
qxim |
objsupp/objsql |
extensible indexing support for objects |
qxitex qxopc qxope |
objsupp/objddl |
qxitex - support for create / drop indextype; |
qxopq qxuag qxxm |
objsupp/objsql |
qxopq - support for queries with user-defined |
rfmon rfra rfrdb rfrla rfrm |
drs |
implements 9i data guard broker monitor |
rnm |
dict/sqlddl |
manages rename statement operation |
rpi |
progint/rpi |
recursive procedure interface which handles the |
rwoima |
sqlexec/rwoprnds |
row operand operations |
rwsima |
sqlexec/rowsrc |
row source implementation/retrieval according to |
sdbima |
sqlexec/sort |
manages and performs sort operation |
selexe |
sqlexec/dmldrv |
handles the operation of select statement |
skgm |
osds |
platform specific memory management rountines |
smbima sor |
sqlexec/sort |
manages and performs sort operation |
sqn |
dict/sqlddl |
support for parsing references to sequences |
srdima srsima stsima |
sqlexec/sort |
manages and performs sort operation |
tbsdrv |
space/spcmgmt |
operations for executing create / alter / drop |
ttcclr ttcdrv ttcdty ttcrxh |
progint/twotask |
two task common layer which provides high level |
uixexe ujiexe updexe upsexe |
sqlexec/dmldrv |
support for : index maintenance operations, the |
vop |
optim/vwsubq |
view optimisation related functionality |
xct |
txn/lcltx |
support for the management of transactions and |
xpl |
sqlexec/expplan |
support for the explain plan command |
xty |
sqllang/typeconv |
type checking functions |
zlke |
security/ols/intext |
label security error handling component |
oracle-Expdp/impdp命令的更多相关文章
- Oracle简单常用的数据泵导出导入(expdp/impdp)命令举例(上)
<Oracle简单常用的数据泵导出导入(expdp/impdp)命令举例(上)> <Oracle简单常用的数据泵导出导入(expdp/impdp)命令举例(下)> 目的:指导项 ...
- Oracle简单常用的数据泵导出导入(expdp/impdp)命令举例(下)
<Oracle简单常用的数据泵导出导入(expdp/impdp)命令举例(上)> <Oracle简单常用的数据泵导出导入(expdp/impdp)命令举例(下)> 目的:指导项 ...
- oracle expdp/impdp 用法详解
http://hi.baidu.com/hzfsai/item/4a4b3fc4b1cf7e51ad00efbd oracle expdp/impdp 用法详解 Data Pump 反映了整个导出/导 ...
- ORACLE expdp/impdp详解
ORCALE10G提供了新的导入导出工具,数据泵.Oracle官方对此的形容是:Oracle DataPump technology enables Very High-Speed movement ...
- ORACLE expdp/impdp详解(转)
ORCALE10G提供了新的导入导出工具,数据泵.Oracle官方对此的形容是:Oracle DataPump technology enables Very High-Speed movement ...
- oracle expdp/impdp/可传输表空间
oracle expdp/impdp/可传输表空间/及一些参数 Oracle data pump 导出操作能够将表.索引.约束.权限.PLSQL包.同义词等对象从数据库导出,并将它们保存在一种非文本格 ...
- Oracle expdp/impdp导出导入命令及数据库备份
使用EXPDP和IMPDP时应该注意的事项: EXP和IMP是客户端工具程序,它们既可以在客户端使用,也可以在服务端使用. EXPDP和IMPDP是服务端的工具程序,他们只能在ORACLE服务端使用, ...
- Oracle expdp/impdp导出导入命令及数据库备份(转)
使用EXPDP和IMPDP时应该注意的事项: EXP和IMP是客户端工具程序,它们既可以在客户端使用,也可以在服务端使用. EXPDP和IMPDP是服务端的工具程序,他们只能在ORACLE服务端使用, ...
- Oracle数据导入导出imp/exp命令 10g以上expdp/impdp命令
Oracle数据导入导出imp/exp就相当于oracle数据还原与备份.exp命令可以把数据从远程数据库服务器导出到本地的dmp文件,imp命令可以把dmp文件从本地导入到远处的数据库服务器中. 利 ...
- oracle expdp impdp 导入导出备份
数据库导入导出: 使用EXPDP和IMPDP时应该注意的事项: EXP和IMP是客户端工具程序,它们既可以在客户端使用,也可以在服务端使用. EXPDP和IMPDP是服务端的工具程序,他们只能在ORA ...
随机推荐
- MyBatis配置文件(三)--typeAliases别名
因为类的全限定名一般包括包名,显得很长,在使用过程中不是很方便,所以MyBatis中允许我们使用一种简写的方式来代替全限定名,这就是别名.这就相当于我们在玩微信的时候,有些人的昵称很长很难记,怎么办? ...
- 016-WebDriver API(2)
1. 多表单切换 WebDriver只能在一个页面上对元素进行识别和定位,无法直接定位frame/iframe表单内嵌页面上的元素,这是就需要通过switch_to.frame()方法将当前定位的主体 ...
- 1.开始Springboot 基本配置和helloworld
1 pom.xml 首先引入两个xml节点 <!--这里面继承了springboot很多相关依赖--> <parent> <groupId>org.springfr ...
- Chrome 地址栏如何设置显示 http/https 和 www
首先在 chrome 地址栏输入以下地址 chrome://flags/#omnibox-ui-hide-steady-state-url-scheme-and-subdomains 然后使用 Ctr ...
- IDEA设置使空格处显示小点
- LUOGU P1290 欧几里德的游戏
题目描述 欧几里德的两个后代Stan和Ollie正在玩一种数字游戏,这个游戏是他们的祖先欧几里德发明的.给定两个正整数M和N,从Stan开始,从其中较大的一个数,减去较小的数的正整数倍,当然,得到的数 ...
- mac 终端 常用命令,MacOS 常用终端命令大全,mac 在当前目录打开终端
MacOS 常用终端命令大全:目录操作dircmp——比较两个目录的内容——dircmp dir1 dir2文件操作pg分页格式化显示文件内容——pg filenameod——显示非文本文件的内容—— ...
- 关于python的列表操作(二):排序,统计
# 列表操作 num_list = [2, 5, 8, 6, 7, 9, 5, 7] # 升序 num_list.sort() print(num_list) # 降序 num_list.sort(r ...
- 按照in条件排序
--按照in中条件排序 ,,,) order by instr('395,396,399,313',ghdm);
- dom元素分屏加载
载入一个内容较多的页面的时候,如果不做任何处理,则会在一开始就把全部内容加载出来,影响了性能和体验,所以现在常用分屏加载的功能,就是dom内容出现在屏幕可视范围内的时候,再加载dom节点,起到优化的作 ...