[cx-oracle-users] ORA-01461: can bind a LONG value only for insert into a LONG column
Brought to you by:
atuining
From: Vladislav N. <vla...@go...> - 2008-11-07 13:57:33
|
Hello! I have a little question... I'm trying to write a zip file in a oracle db(9.2.x.x)... The Column type is LONG ROW... If the file size is smaller than 10 K, I have no troubles, but if it's more, I get the following error: ORA-01461: can bind a LONG value only for insert into a LONG column The Column can take 70 K Query: insert [TABLE NAME] ( test_column ) values ( utl_raw.cast_to_row([file content]) ) Could you please explain me, how can I avoid this ... Thanks a lot |