Integrator V2.1 - How do you take off a specific number of leading bytes from a BLOB

2002-11-27 Thread Dennis Bryngelson
We need to remove the first 88 bytes of a BLOB on specific situations. How is this accomplished? Thanks, Dennis Bryngelson Phone: (763) 765-4224 Fax: (763) 765-3820 mailto:[EMAIL PROTECTED] * PRIVILEGED AND

Re: Integrator V2.1 - How do you take off a specific number of leading bytes from a BLOB

2002-11-27 Thread Raul Acevedo
declare len INTEGER; declare firstByte INTEGER; -- blob comes in double bytes plus X' at the beginning and ' at the end. set firstByte = 88*2 + 3; set len = length(InputRoot.BLOB.BLOB) - firstByte; set OutputRoot.BLOB.BLOB = substring(InputRoot.BLOB.BLOB from firstByte for len); I haven't