Hi Please Help, I am using CR ver 9 on a win2k platform oracle client 8i, the data source is oracle 8i, the ODBC Drivers tried are Cr Oracle, MS Oracle, Oracle and Oracle Wire..
I run the following qry and it takes at least 10 min to return 106 records.
If I remove the date portion of the qry it returns all 500 records in under a min. so this means I am having a problem with odbc and oracle dates?
If a open Access and import from oracle these tables, then set location on the report and establish an access odbc it runs in less than 5 seconds. This tells me this is related to Oracle....
I have been in contact with Crystaldecisions Support but they have no idea.
Any Ideas what may be causing this turtle like speed?
Thanks.
-----------------------SQL Query----------------------------
SELECT "COMMUNICATION"."CALL_TYPE", "COMMUNICATION"."CREATED", "COMMUNICATION"."DOCUMENTATION_STATUS", "MEMBER"."CLIENT_NAME"
FROM "DTMTTBO"."COMMUNICATION" "COMMUNICATION", "DTMTTBO"."MEMBER" "MEMBER"
WHERE ("COMMUNICATION"."CONTACT_ID"="MEMBER"."ROW_ID"
AND ("COMMUNICATION"."CALL_TYPE" LIKE 'Call-Inbound' OR "COMMUNICATION"."CALL_TYPE" LIKE 'Call-Outbound') AND "MEMBER"."CLIENT_NAME"='OREGON' AND ("COMMUNICATION"."CREATED">=TO_DATE ('01-11-2002 00:00:00', 'DD-MM-YYYY HH24:MI:SS') AND "COMMUNICATION"."CREATED"<TO_DATE ('01-04-2003 00:00:00', 'DD-MM-YYYY HH24:MI:SS')) AND "COMMUNICATION"."DOCUMENTATION_STATUS"<>'Invalid'
-----------------Record Selection---------------------------
{COMMUNICATION.CALL_TYPE} like ["Call-Inbound", "Call-Outbound"] and
{COMMUNICATION.CREATED}in Date(2002,11,01) to Date(2003,03,31) and
{COMMUNICATION.DOCUMENTATION_STATUS} <> "Invalid" and
{MEMBER.CLIENT_NAME} = "OREGON"
I run the following qry and it takes at least 10 min to return 106 records.
If I remove the date portion of the qry it returns all 500 records in under a min. so this means I am having a problem with odbc and oracle dates?
If a open Access and import from oracle these tables, then set location on the report and establish an access odbc it runs in less than 5 seconds. This tells me this is related to Oracle....
I have been in contact with Crystaldecisions Support but they have no idea.
Any Ideas what may be causing this turtle like speed?
Thanks.
-----------------------SQL Query----------------------------
SELECT "COMMUNICATION"."CALL_TYPE", "COMMUNICATION"."CREATED", "COMMUNICATION"."DOCUMENTATION_STATUS", "MEMBER"."CLIENT_NAME"
FROM "DTMTTBO"."COMMUNICATION" "COMMUNICATION", "DTMTTBO"."MEMBER" "MEMBER"
WHERE ("COMMUNICATION"."CONTACT_ID"="MEMBER"."ROW_ID"
-----------------Record Selection---------------------------
{COMMUNICATION.CALL_TYPE} like ["Call-Inbound", "Call-Outbound"] and
{COMMUNICATION.CREATED}in Date(2002,11,01) to Date(2003,03,31) and
{COMMUNICATION.DOCUMENTATION_STATUS} <> "Invalid" and
{MEMBER.CLIENT_NAME} = "OREGON"