欢迎投稿

今日深度:

oracle中映射表到timesten的方法,oracletimesten

oracle中映射表到timesten的方法,oracletimesten


----1.createandloadfromoraquery命令并开启6个线程


Command>createandloadfromoraquery scott.t1 6 select * from scott.t1;

 


----2.使用内置命令完成数据导入


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;

www.htsjk.Com true http://www.htsjk.com/shujukunews/6055.html NewsArticle oracle中映射表到timesten的方法,oracletimesten ----1.createandloadfromoraquery命令并开启6个线程 Commandcreateandloadfromoraquery scott.t1 6 select * from scott.t1; ----2.使用内置命令完成数据导入 Commandcall ttTa...
评论暂时关闭