码迷,mamicode.com
首页 > 数据库 > 详细

oracle中映射表到timesten的方法

时间:2015-01-22 18:16:33      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

----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;

oracle中映射表到timesten的方法

标签:

原文地址:http://blog.csdn.net/yangzhawen/article/details/43021157

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!