We write all our own report SQL queries in order to avoid having the DB schema being appended to the table names. We also use Crystal Parameters quite a bit. Is there any way to incorporate the Parameters into the WHERE portion of the query, in order to improve its efficiency?
Otherwise, we are pulling back all records, and then filtering after the fact within the Crstal Selection Criteria, selecting on the Paramter values.
I tried doing a:
WHERE Table.Field = {?ParameterField}
but got an ORA-24374 error.
Otherwise, we are pulling back all records, and then filtering after the fact within the Crstal Selection Criteria, selecting on the Paramter values.
I tried doing a:
WHERE Table.Field = {?ParameterField}
but got an ORA-24374 error.