Hi
I have the following query
SELECT ITEMS from
FROM ORACLELINKED
WHERE ITEM_NUMBER LIKE '50-[012]5%'
Its running off 8i Oracle server,
We are doing test to upgrade the Oracle Server to 9.2
Since the upgrade test, we had moved to using
select * from openquery (ORACLELINKED, 'SELECT ITEMS from
WHERE ITEM_NUMBER LIKE '50-[012]5%')
The openquery works fine under the old Oracle 8i but not the 9.2. Any suggestions in formatting?
Thanks,