---⑴.createandloadfromoraquery命令并開啟6個線程
Command>createandloadfromoraquery scott.t1 6 select * from scott.t1;
---⑵.使用內(nèi)置命令完成數(shù)據(jù)導(dǎo)入
Command>call ttTableSchemaFromOraQueryGet('scott','t1','SELECT * FROM scott.t1');
Command>CREATE TABLE "SCOTT"."T1" (
"SID" number(38,0) NOT NULL,
"SNAME" varchar2(10 byte)
) ;
Command>call ttLoadFromOracle('scott','t1','select * from scott.t1');
Command>select * from scott.t1;