crmarrio
Registered User.
- Local time
- Today, 09:52
- Joined
- Feb 5, 2002
- Messages
- 17
Hi,
I am trying to translate data from 3 linked Oracle tables to perform a Make Table query in access.
Each person has many registers for a particular year (average is about 12), each register contains 53 fields (one for each week).
I need to get the 53 fields (all equally set up) into 53 records. I can do this using a Union all pass through query.
e.g. SELECT Person, 1 as Week, Attendance_1 as Mark from Registers
UNION ALL SELECT Person, 2 as Week, Attendance_2 as Mark from Registers
etc...
However, when I want to then do a make table on the data, Access 2K hangs. I think this is because the pass through has generated about 5 million records.
At the moment I can't create a view (due to third-party oracle software house restrictions) and put indexes and the like on at the server end. Does anyone have any thoughts as to how I might get round this?
Any help much appreciated - but be warned my Oracle SQL is limited!
I am trying to translate data from 3 linked Oracle tables to perform a Make Table query in access.
Each person has many registers for a particular year (average is about 12), each register contains 53 fields (one for each week).
I need to get the 53 fields (all equally set up) into 53 records. I can do this using a Union all pass through query.
e.g. SELECT Person, 1 as Week, Attendance_1 as Mark from Registers
UNION ALL SELECT Person, 2 as Week, Attendance_2 as Mark from Registers
etc...
However, when I want to then do a make table on the data, Access 2K hangs. I think this is because the pass through has generated about 5 million records.
At the moment I can't create a view (due to third-party oracle software house restrictions) and put indexes and the like on at the server end. Does anyone have any thoughts as to how I might get round this?
Any help much appreciated - but be warned my Oracle SQL is limited!