06-01-2010 09:25 AM
I have seen the "Unable to read beyond the end of stream error" issue on an upgraded SalesLogix database.
The DATA blob in the SYTEMINFO table is incorrect.
The following SQL should fix the issue copying the DATA blob from a SalesLogix 7.5 Eval database:
UPDATE SYSTEMINFO SET DATA = (SELECT DATA FROM SALESLOGIX_EVAL.SYSDBA.SYSTEMINFO)
06-01-2010 01:05 PM
This worked.
Thanks Steve.