Terry Troxel wrote: > My bad. > > I obviously stated my problem wrong. > > I have a make table query defined already in access as > MakeAR1 that takes a link to an existing table(Mas90 ODBC > source named AR1_CustomerMaster) and creates a new Access > table(AR1). > > I would like to somehow run that MakeAR1 query in Coldfusion > rather then running Access from a batch file command that > executes a the query. >
Look at the SQL view of your make table query in Access...it probably has something like: SELECT somefield INTO somenewtable FROM someothertable; Which you can run in a cfquery. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257241 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

