当前位置:首页 » 编程语言 » sqlserver导入oracle

sqlserver导入oracle

发布时间: 2025-01-24 22:58:49

❶ 怎么把sqlserver一个表中的数据导入到oracle中(用kettle工具)求具体步骤

首先运行kettle 创建一个转换 然后托拽表输入 表输出 创建两个数据源 sqlserver是输入 oracle是输出 然后配置database field 执行就可以了

❷ 如何从SQL Server迁移大批量数据到Oracle

第一步:从SQLSERVER中导出数据
在SQLSERVER数据库上使用Import and Export Data工具
1.在choose a Data source页
选取:
source= Microsoft OLE DB Porvider for Sql Server
server=local
database=icd_db_bill
{use Sql Server authentication}
user=sa
选择下一步
2.在choose destination 页中
选取destination为Text File
file name ="d:\backup\tbilllog1.txt"
选择下一步
3. 选择use a query to specify the data to transfer
选择下一步
注:由于SQLSERVER导出时会将table_id作为一个域导出,而oracle没有(oracle 为rowid),所以必须选择此项为use a query to specify the data to transfer而不是 table(s) from source database
4.在Query Builder选项进入
选取tbilllog1,添加然后将table_id从列表中去掉
一直确认直到select Destination File Format页面
5.选择
file type =ansi (缺省)
row={cr}{lf} (缺省)
column=comma (缺省)
text= double quote{"} (缺省)
在comumn和text选项会影响到oracle的controlfile的设置

第二步:
oracle方面的设置
首先将tbilllog1.txt 拷贝到log1.ctl的目录
提示:如果NT平台可以先压缩再传送可以节省时间,到目的目录再解开
controlfile example: log1.ctl
LOAD DATA
INITFILE 'tbilllog1.txt'
insert into table tbilllog1
fields terminated by ',' optionally enclosed by '"'
(
callid,
callidnum,
callerno,
calleeno,
waitbegin date "yyyy--mm-dd hh24:mi:ss",
waitend date "yyyy-mm-dd hh24:mi:ss",
ackbegin date "yyyy-mm-dd hh24:mi:ss",
ackend date "yyyy-mm-dd hh24:mi:ss",
...
)
*fields terminated by ','指明域由,分割,对应到上面第5步的column=comma
*optionally enclose by '"'指明字符型数据有" "括起来,对应到text=double quote{"}如果选择text=none 不加此语句。

热点内容
机房服务器如何安装系统 发布:2025-01-25 07:03:02 浏览:937
linux命令for循环 发布:2025-01-25 06:58:07 浏览:268
c语言链表的排序 发布:2025-01-25 06:48:17 浏览:887
查看存储空间的命令 发布:2025-01-25 06:40:06 浏览:610
安卓系统如何保活 发布:2025-01-25 06:36:27 浏览:779
缓存不退出 发布:2025-01-25 06:35:02 浏览:265
protel编译 发布:2025-01-25 06:35:00 浏览:203
bt我的世界服务器 发布:2025-01-25 06:33:35 浏览:392
桃子解压码 发布:2025-01-25 06:26:46 浏览:726
ubuntu饥荒服务器搭建服务器 发布:2025-01-25 06:19:54 浏览:51