Ask a Question related to Coldfusion Database Access, Design and Development.
-
Ortho #1
Temporary Table Creation Problem in CF7 not CF6.1
We have been preparing for our upgrade to CF7.0 from 6.1 on a test site with a
test mssql database and come across an issue we cannot resolve. Maybe someone
can help.
We cannot create a LOCAL temporary table in the mssql database with CF7 but
can with CF6.1. Using Enterprise Manager we can create a LOCAL temporary table
and it seems the problem is with CF7 specifically. We can create a GLOBAL
temporary table in CF7 just fine so the problem is only with LOCAL temporary
table creation in CF7.
Here is the code element to create the LOCAL table that gives the problem in
CF7 but not in 6.1:
<cfquery username ="#userName#" password ="#passWord#" name="test"
datasource="#DSource#">
select testid into ##ctest from testtable
</cfquery>
Ortho Guest
-
Trouble creating temporary memory table
I tried to create a temporary memory table using the following: CREATE TEMPORARY TABLE mytable_tmp LIKE mytable ENGINE=MEMORY; However, I... -
Get result from temporary Oracle Table
Hi, Having problem with temporary table from Oracle. Runing my stored procedure (which stores an amount of row in a temporary table) from an Sql... -
#26387 [NEW]: TABLE TEMPORARY DOES NOT WORK
From: davefazio at annulet dot com Operating system: Windows 2003 Sever PHP version: 5.0.0b2 (beta2) PHP Bug Type: MySQL... -
Temporary Table Query
Hi, I am inserting data into a temporary table using the following method: select a into #b from c This method works fine, but...if i... -
Is there any equivalent of Sql Server's temporary table in Oracle
On Thu, 05 Dec 2002, gamaz@eathlink.net wrote: Let Oracle do the temporary set building. You code the join. -- Galen Boyer -
philh #2
Re: Temporary Table Creation Problem in CF7 not CF6.1
Local temp tables live only for the duration of the connection that created
them. Perhaps CF7 is timing out the data connection in the middle of your
process.
Does the code throw an error, or not? If so, what error does it return?
philh Guest
-
Ortho #3
Re: Temporary Table Creation Problem in CF7 not CF6.1
There is not an error; the file is just not created so when you try to access
the table, it is not there and then you get a standard error message.
We verified the file was not created in Enterprise Manager.
Ortho Guest



Reply With Quote

