Feb 25, 2005 #1 cmehend Programmer Joined Feb 25, 2005 Messages 1 Location US Hey, I need to create a stored procedure to insert XMl string as BLOB in database.Does anybody know sQL to do that?
Hey, I need to create a stored procedure to insert XMl string as BLOB in database.Does anybody know sQL to do that?
Feb 25, 2005 #2 mrdenny Programmer Joined May 27, 2002 Messages 11,595 The BLOB data type on Oracle accepts standard text. Your problem will be that there are no variables in SQL Server that allow more than 8000 characters at a time. You may want to do a direct insert into select from statement to get the data from your SQL Server to your Oracle server. Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site) Upvote 0 Downvote
The BLOB data type on Oracle accepts standard text. Your problem will be that there are no variables in SQL Server that allow more than 8000 characters at a time. You may want to do a direct insert into select from statement to get the data from your SQL Server to your Oracle server. Denny --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (My very old site)