程序员人生 网站导航

oracle中映射表到timesten的方法

栏目:数据库应用时间:2015-01-26 09:36:20

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


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

 


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


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;

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐