Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Temp Tables in a Update Query

Status
Not open for further replies.

TJVFree

Technical User
Nov 22, 2010
236
US
Hi tek-tips form, I've had good luck with my questions on this form before so I though you might be able to help me with this problem

I'm trying run a update query but get a message "Operation must use an updateable query"

Instead of having to create another table with all the information I need for the criteria is there a way I can make some sort of temporary table within my query or any other advice would be helpful

Thanks for all your time and help

Corey
 
Corey,
Surely you don't think you have provided enough information for us to provide answers/solutions.

You can create temporary tables.
You can use temporary tables in update queries.
You might be able to substitute a horribly slow domain aggregate function in your update query to make it work.

Do you have any SQL statements, table structures, primary and foreign key fields, specifications, and/or requirements that you could share?


Duane
Hook'D on Access
MS Access MVP
 
Thanks Duane,

The table dbo_VC_AdminServices is off of our server and I'm just using that to make the criteria and the test table is the one I'm updating to

Code:
UPDATE dbo_VC_AdminServices INNER JOIN test ON dbo_VC_AdminServices.app_num = test.app_num SET test.act_fund = Yes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top