I am looking for schemes on "How would you do the following...."
You have 4 databases: Individual, Account, Money, and Split.
Individual database has Ind_ID, First, Last Name, Address, City, State, Zip
Account database has Account_id, Account_Name
Money database has Money_id, Ind_id, Date, Amt, split_id, Account_id
Split database has Split_id, Date, Amt, Account_id
Individual is linked to Money by IND_ID
Money is linked to Split by Split_ID
Money is Linked to Account by Account_ID
Now you want to create reports on the Money table ...
Would you create temp tables to pull all the information together into one location and then report on that newly generated table?
My problem seems to be that i cannot pull the information i need into a report directly from the databases.
Would MemSets or DynaSets be something to look into and consider?
How else would you do this?
TIA
You have 4 databases: Individual, Account, Money, and Split.
Individual database has Ind_ID, First, Last Name, Address, City, State, Zip
Account database has Account_id, Account_Name
Money database has Money_id, Ind_id, Date, Amt, split_id, Account_id
Split database has Split_id, Date, Amt, Account_id
Individual is linked to Money by IND_ID
Money is linked to Split by Split_ID
Money is Linked to Account by Account_ID
Now you want to create reports on the Money table ...
Would you create temp tables to pull all the information together into one location and then report on that newly generated table?
My problem seems to be that i cannot pull the information i need into a report directly from the databases.
Would MemSets or DynaSets be something to look into and consider?
How else would you do this?
TIA