【发布时间】:2013-07-01 15:11:14
【问题描述】:
我正在从事数据库迁移项目。使用 Oracle 网关连接到 SQL Server。
SQL Server 中的Image 数据类型迁移到 Oracle 中的 blob 数据。但是当我尝试使用 insert 命令插入数据时,它会报错。
SQL Server 表:
create table xyz ([Image_Data] [image] NULL )
Oracle 表:
create table xyz (Image_data BLOB null)
使用的插入命令:
insert into xyz
select * from xyz@sqldb;
错误信息:
SQL 错误:ORA-00997:非法使用 LONG 数据类型
00997. 00000 - “非法使用 LONG 数据类型”
【问题讨论】:
标签: sql-server oracle migration data-migration