ORacle 8.05 database
CR 8.5
I am having difficulty designing report that doesn't
take 10 minutes to run.
I am selecting values from a table that records processes, in this case issuance of a permit. First instance of the field shows okay to issue. later the same field will show that permit actually issued. Ex:
ACTION TABLE:
Permit, Date, Process
10000, 07/01/2001, ISSUANCE
10000, 07/10/2001, ISSUED
I am trying to find all permits that have value ISSUANCE within parameter date range but have not been ISSUED. Currently, selecting where (Date in date to date and
process = ISSUANCE) or (process = ISSUED). Then using formula to evaluate (@issued): if process = ISSUED Then 'No Print' Else 'Print'. in select statement Minimum ({@issued}, {@Permit}) = "Print".
takes so long to complete (10 minutes) & seperately can get this info in less than 30 seconds. Is there an alternative to this method?
CR 8.5
I am having difficulty designing report that doesn't
take 10 minutes to run.
I am selecting values from a table that records processes, in this case issuance of a permit. First instance of the field shows okay to issue. later the same field will show that permit actually issued. Ex:
ACTION TABLE:
Permit, Date, Process
10000, 07/01/2001, ISSUANCE
10000, 07/10/2001, ISSUED
I am trying to find all permits that have value ISSUANCE within parameter date range but have not been ISSUED. Currently, selecting where (Date in date to date and
process = ISSUANCE) or (process = ISSUED). Then using formula to evaluate (@issued): if process = ISSUED Then 'No Print' Else 'Print'. in select statement Minimum ({@issued}, {@Permit}) = "Print".
takes so long to complete (10 minutes) & seperately can get this info in less than 30 seconds. Is there an alternative to this method?