LevelThought
MIS
Need some insight,
Ideally, one should not store calculated values in an Access table. However, at the request of Management, I have no choice! Therefore,based on extensive reading, it appears that the most efficient method is as follows:
Append process
Step 1: Create Passthru query
Step 2: Insert results of query into local Access table
Update process
Step 1: Create Passthru Union query
Step 2: Insert results into temp table
Step 3: Using an inner join from the temp table to my local Access table, update fields on those accounts that had a payment interfaced the Oracle Application the prior day as recorded in a Oracle table, or had a change in expected payment as recorded on another Oracle table.
Step 4: Clear out the temp table
Step 5: Setup to run automatically using Windows Scheduler.
Now, here is the tricky part - Is it possible to have a subquery on a passthru query so that I can retrive the following on a daily basis?:
Date of Latest Payor Payment
Amt of Latest Payor Payment
Any additional comments would be greatly appreciated?
Thanks in advance.
Ideally, one should not store calculated values in an Access table. However, at the request of Management, I have no choice! Therefore,based on extensive reading, it appears that the most efficient method is as follows:
Append process
Step 1: Create Passthru query
Step 2: Insert results of query into local Access table
Update process
Step 1: Create Passthru Union query
Step 2: Insert results into temp table
Step 3: Using an inner join from the temp table to my local Access table, update fields on those accounts that had a payment interfaced the Oracle Application the prior day as recorded in a Oracle table, or had a change in expected payment as recorded on another Oracle table.
Step 4: Clear out the temp table
Step 5: Setup to run automatically using Windows Scheduler.
Now, here is the tricky part - Is it possible to have a subquery on a passthru query so that I can retrive the following on a daily basis?:
Date of Latest Payor Payment
Amt of Latest Payor Payment
Any additional comments would be greatly appreciated?
Thanks in advance.