2013-07-01 244 views
0

我正在處理數據庫遷移項目。使用Oracle網關連接到SQL Server。 Image SQL Server中的數據類型已遷移到Oracle中的blob數據。但是當我嘗試使用insert命令插入數據時,它會給出錯誤。從SQL Server到Oracle的數據遷移

SQL Server表:

create table xyz ([Image_Data] [image] NULL) 

Oracle表:用於

create table xyz (Image_data BLOB null) 

插入命令:

insert into xyz 
select * from [email protected]; 

錯誤消息:

SQL Error: ORA-00997: illegal use of LONG datatype
00997. 00000 - "illegal use of LONG datatype"

回答

0

我們已經成功地遷移與DTS工具的數據。