I have created a CR XI Report using an Oracle 10g View as the data source and it does not return any data. The same query using the same user and other tools like TOAD or SQL*Plus return many rows. What is going on?!?
Here is the Crystal Reports Show SQL Query:
[tt]
SELECT "TODD_TEST9_VU"."USPS_ADDRESS"
FROM "DQCO"."TODD_TEST9_VU" "TODD_TEST9_VU"
[/tt]
Here is the Oracle view creation command:
[tt]
CREATE OR REPLACE VIEW DQCO.TODD_TEST9_VU
(USPS_ADDRESS)
AS
SELECT srv.usps_address
FROM ltvsrc.ltv_servicing srv
WHERE srv.effective_dt = '31-jan-2008'
/
[/tt]
Both Crystal and the alternate query tools are running the query as the same user: DQCO. The view selects data from another schema (LTVSRC) but that should not matter because all the necessary Grants are in place and the query works on all the other tools using the DQCO user so why wouldn't it work in Crystal?
CR version 11.5.8.826
Oracle 10
Here is the Crystal Reports Show SQL Query:
[tt]
SELECT "TODD_TEST9_VU"."USPS_ADDRESS"
FROM "DQCO"."TODD_TEST9_VU" "TODD_TEST9_VU"
[/tt]
Here is the Oracle view creation command:
[tt]
CREATE OR REPLACE VIEW DQCO.TODD_TEST9_VU
(USPS_ADDRESS)
AS
SELECT srv.usps_address
FROM ltvsrc.ltv_servicing srv
WHERE srv.effective_dt = '31-jan-2008'
/
[/tt]
Both Crystal and the alternate query tools are running the query as the same user: DQCO. The view selects data from another schema (LTVSRC) but that should not matter because all the necessary Grants are in place and the query works on all the other tools using the DQCO user so why wouldn't it work in Crystal?
CR version 11.5.8.826
Oracle 10