I am using vb 6,Crystal XI and SQLServer 2000. I have a report that when using the CRAXDDRT. The sql that it is producing in the .sqlquerystring is:
SELECT "PG_CERT"."CANCELDAYS, "PG_CERT"."INSURERE"
FROM "PG_CERT" "PG_CERT"
WHERE "PG_CERT"."CERT_ID"=3
ORDER BY "PG_CERT"."CERT_ID"
I am getting the following error:
Failed to open a rowset.
Details: ADO Error Code: 0x80040e37
Source: Microsoft OLE DB Provider for SQL Server
Description: Invalid object name 'PG_CERT'.
SQL State: 42S02
Anyone have a clue on how to fix this? Is it is because it is using an alias table name? If so does anyone know how to change that? The query when copied over to SQL Server works fine.
SELECT "PG_CERT"."CANCELDAYS, "PG_CERT"."INSURERE"
FROM "PG_CERT" "PG_CERT"
WHERE "PG_CERT"."CERT_ID"=3
ORDER BY "PG_CERT"."CERT_ID"
I am getting the following error:
Failed to open a rowset.
Details: ADO Error Code: 0x80040e37
Source: Microsoft OLE DB Provider for SQL Server
Description: Invalid object name 'PG_CERT'.
SQL State: 42S02
Anyone have a clue on how to fix this? Is it is because it is using an alias table name? If so does anyone know how to change that? The query when copied over to SQL Server works fine.