Cowboy_BeBa
Registered User.
- Local time
- Tomorrow, 06:37
- Joined
- Nov 30, 2010
- Messages
- 188
hey all
this one from what i understand is a common problem and one ive run into before
Ive got several queries that crunch a bunch of numbers, (qryFGCost1 to qryFGCost7), once done i need to update the cost field of one of my tables with the resulting cost in qryFGCost7, when i try to run the query i get the old "Operation must use an updateable query" error
Now ive encountered this before and the solution was to do a make table query (using the other query, in this cast FGCost7), then update the other table from the freshly made table, then delete the datble
This is very doable, but so far i have about 8 or 9 operations in my DB that do this and it feels quite sloppy to me, im in the process of redesigning this DB from scratch (as there are a whole lot of new features i never accounted for and ive come up with a much better design) and id like to avoid having to use this solution in the new version
is there another way to get around this error, without resorting to creating temporary tables?
thanks,
ben
this one from what i understand is a common problem and one ive run into before
Ive got several queries that crunch a bunch of numbers, (qryFGCost1 to qryFGCost7), once done i need to update the cost field of one of my tables with the resulting cost in qryFGCost7, when i try to run the query i get the old "Operation must use an updateable query" error
Now ive encountered this before and the solution was to do a make table query (using the other query, in this cast FGCost7), then update the other table from the freshly made table, then delete the datble
This is very doable, but so far i have about 8 or 9 operations in my DB that do this and it feels quite sloppy to me, im in the process of redesigning this DB from scratch (as there are a whole lot of new features i never accounted for and ive come up with a much better design) and id like to avoid having to use this solution in the new version
is there another way to get around this error, without resorting to creating temporary tables?
thanks,
ben