If you have data in a blob field that you'd like to move into a blob field in another table, use something like this:
sourceBuffer.CALCFIELDS(TextData) ;
sourceBuffer.TextData.CREATEINSTREAM(linsStream) ;
linsStream.READTEXT(ltxtData) ;
destinationBuffer.TextData.CREATEOUTSTREAM(loutStream) ;
loutStream.WRITETEXT( ltxtData ) ;
destinationBuffer.MODIFY ;
of course the above snippet assums the blob was made up of text data. If not, reads and writes instead of readtext and writetext. Also, make sure your 'temp variable' (ltxtData) is of type Binary not Text.
Comments
E.g.
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
therefor you don´t need the READTEXT & WRITETEXT