*UPDATE
i will try to explain the situation again: i have one datamart which contains all the clients and the original payments along with status and fiscal period in yyyymmdd format. the status needs to be matched with the status in another table so that i get only those client names and fiscal periods where status_datamart=status_table and status_table in ('inactive', 'active'). this data is now inserted into a table called 'inv' which contains: PORTFOLIO_INV, CLIENT_INV,ACCT_TYPE_INV,PERIOD,DESK,STATUS,PRIOR_OCA_CALC,PRINCIPAL,CUR_BAL
the second datamart again contains client, fiscal_period, payments(gross and net), transaction_type. one query is used to fetch only those records from this datamart where the txn type is matched with another table and txn category is 'gross'. second query has same filters as above, only txn category is now changed to 'net'.
The reason for 2 queries to get gross and net is that the data is in following format:
client1 | fiscal period| status | gross client2 | fiscal period| status | gross client1 | fiscal period| status | net client3 | fiscal period| status | gross
so i use query one to store gross into one table 'pmt' : PORTFOLIO_PMT,CLIENT_PMT,ACCT_TYPE_PMT,PERIOD_PMT,DETAIL_TRANSACTION_TYPE,DETAIL_DESK_AT_PMT,DETAIL_STATUS_AT_PMT,PRIOR_OCA_CALC_PMT,DETAIL_AMOUNT_PMT
and second query to store into another table 'net': PORTFOLIO_NET,CLIENT_NET,ACCT_TYPE_NET,PERIOD_NET,DETAIL_TRANSACTION_TYPE_NET,DETAIL_DESK_AT_PMT_NET,DETAIL_STATUS_AT_NET,PRIOR_OCA_CALC_NET,DETAIL_AMOUNT_NET
constraints: client_inv=client_pmt=client_net period= period_pmt=period=net
hope it helps...
i am writing a query that will retrieve the name of client, fiscal year and principal amount from table T1, sum(current payments) from another table T2 (for same client and same fiscal period) and the sum(net) from third table(for same client as in T1 and T2) . the query took 2132.78 seconds to complete for around 3400 records in T1, 939 in T2 and 103 in T3.
is there a way in which i can NOT use joins and just fetch the data I want quickly? The total number of records will vary in each table depending what was the principal amount and how many payments have been received.