Does anyone have experience with putting these statements around the UPDATEBLOB to make it run faster?
ALTER DATABASE <database> SET RECOVERY SIMPLE;
ALTER DATABASE <database> SET RECOVERY FULL;
Microsoft recommends updating binary columns 8040 bytes at a time. The UPDATEBLOB statement only supports updating it all at once.
SQL Server has a statement UPDATETEXT that can make partial updates to an image column but PowerBuilder doesn't support that (at least not in PB 10 OLE DB).