我正在从事数据库迁移项目。使用 Oracle 网关连接到 SQL Server。
Image
SQL Server 中的数据类型迁移到 Oracle 中的 blob 数据。但是当我尝试使用 insert 命令插入数据时,它会出错。
SQL Server 表:
create table xyz ([Image_Data] [image] NULL )
甲骨文表:
create table xyz (Image_data BLOB null)
使用的插入命令:
insert into xyz
select * from xyz@sqldb;
错误信息:
SQL 错误:ORA-00997:非法使用 LONG 数据类型
00997。00000 -“非法使用 LONG 数据类型”