Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
adumas77 #1
moving data from one data source to another
I'm trying to move data from one data source to another. I don't want to loop -
because it will kill performance. A simple Select into or Insert into using a
select statement is what I need. I seem to be hung up on the from clause of
query q4... Is this the proper way to access another query? What am I doing
wrong? <cfquery name='q2' datasource='OracleDb'> select * from Pets
</cfquery> <cfquery name='q3' datasource='AccessDb'> drop table Pets
</cfquery> <cfquery name='q4' datasource='AccessDb'> select petname, store
into Pets from 'q2' </cfquery>
adumas77 Guest
-
XML Data Source
I am thinking of creating an online application using an XML file as it's primary data source. The XML file on the web server will be refreshed via... -
Moving data from http to https
For a shopping cart-enable site, what is the best way to store and transfer a user's session data from non-secure to secure? The secure section... -
Moving data between select boxes
Hi I have used ASP code to load data into two select boxes. The code below is used to move the selected data back and forth between the boxes. ... -
moving data with imbedded <CR> or <LF>
I have run into an interesting problem. We have generated data that contains bit data stored in a 16 byte character field. This last week I was... -
Newbie - Moving around (scrambling) data?
"Ricardo Forde" <anonymous@devdex.com> wrote in message news:e4Ixd9JRDHA.1712@TK2MSFTNGP12.phx.gbl... Why are you trying to do this? -
shahzad #2
Re: moving data from one data source to another
is your q4 just a pseudo-code or is that the actual sql that you are writing? can you do that??
where are you selecting petname from? you didn't specify any table
shahzad Guest
-
adumas77 #3
Re: moving data from one data source to another
No, this is not pseudocode... petname, store are 2 columns in the q2 query.
So far, nobody knows if I can do a 'select into' where I reference data from datasource and insert it into another.
adumas77 Guest



Reply With Quote

