ORACLESQLLOADER用法(excel导入oracle)

SQL*LOADER是ORACLE的数据加载工具,通常用来将操作系统文件迁移到ORACLE数据库中。SQL*LOADER是大型数据仓库选择使用的加载方法,因为它提供了最快速的途径(DIRECT,PAR

SQL*LOADER是ORACLE的数据加载工具,通常用来将操作系统文件迁移到ORACLE数据库中。 SQL*LOADER是大型数据仓库选择使用的加载方法,因为它提供了最快速的途径(DIRECT, PARALLEL)。 首先,我们认识一下SQL*LOADER。 在windows下,SQL*LOADER的命令为SQLLDR,在UNIX下一般为sqlldr/sqlload。 如执行: c:\sqlldr SQL*Loader:Release.0.0-Productionon星期二1月811:06:422002 (c)Copyright1999OracleCorporation.Allrightsreserved. 用法:SQLLOAD关键字=值[,keyword=value,...] 有效的关键字: userid--ORACLEusername/password control--Controlfilename log--Logfilename bad--Badfilename data--Datafilename discard--Discardfilename discardmax--Numberofdiscardstoallow(全部默认) skip--Numberoflogicalrecordstoskip(默认0) load--Numberoflogicalrecordstoload(全部默认) errors--Numberoferrorstoallow(默认50) rows--Numberofrowsinconventionalpathbindarrayorbetweendirectp athdatasaves (默认:常规路径64,所有直接路径) bindsize--Sizeofconventionalpathbindarrayinbytes(默认65536) silent--Suppressmessagesduringrun(header,feedback,errors,discards,part itions) direct--usedirectpath(默认FALSE) parfile--parameterfile:nameoffilethatcontainsparameter specification s parallel--doparallelload(默认FALSE) file--Filetoallocateextentsfrom skip_unusable_indexes--disallow/allowunusableindexesorindexpartitions(默 认FALSE) skip_index_maintenance--donotmaintainindexes,markaffectedindexesas unus able(默认FALSE) commit_discontinued--commitloadedrowswhenloadisdiscontinued(默认FALSE) readsize--SizeofReadbuffer(默认1048576) PLEASENOTE:命令行参数可以由位置或关键字指定 。前者的例子是'sqlload

腾讯文库ORACLESQLLOADER用法(excel导入oracle)