Query of Queries Error

2012-09-26 Thread Chad Baloga
I am try to run a query of queries to order a query I create on the fly. On DEV I do not get an error. On PROD I am getting: The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are another

Re: Query of Queries Error

2012-09-26 Thread lakshmi Suresh
try to dump query docQry chk if it is returning any row. On Wed, Sep 26, 2012 at 6:50 PM, Chad Baloga cbal...@gmail.com wrote: I am try to run a query of queries to order a query I create on the fly. On DEV I do not get an error. On PROD I am getting: The system has attempted to use an

Re: Query of Queries Error

2012-09-26 Thread Chad Baloga
Yes it is, I have been playing with it and dumping results to see what data may be causing the error try to dump query docQry chk if it is returning any row. ~| Order the Adobe Coldfusion Anthology now!

Re: Query of Queries Error

2012-09-26 Thread lakshmi Suresh
in select statement try to select one column at a time to chk which column's data is causing the error. On Wed, Sep 26, 2012 at 7:12 PM, Chad Baloga cbal...@gmail.com wrote: Yes it is, I have been playing with it and dumping results to see what data may be causing the error try to dump

Re: Query of Queries Error

2012-09-26 Thread Chad Baloga
I figured it out. The last column had some NULL values which I guess it didn't like even though other columns have NULLs and it's fine (Sounds like a bug). I defaulted the NULL ones to N/A so it works now. Also had to declare all my columns as VARCHARs in my QueryNew set statement. try to

Query of Queries error

2008-09-05 Thread vidya yegnaraman
I have a runtime query of a query error as below. java.lang.String cannot be cast to java.util.Date But the output format is correct and is in date. This application was developed in coldfusion 6.1 and sqlserver2000. But now we get this error when it was migrated to coldfusion 8 and sql server

Re: Query of Queries error

2008-09-05 Thread Richard White
i had a similar problem and turned out to be that one of the values in the order by clause was empty - cf seems to mistake it for a empty string and therefore was producing the same error you are experiencing... check all values in the problem column to ensure there are no empty values i also

Query of Queries Error

2005-07-20 Thread Phillip Duba
I'm getting an error when performing a query of queries as follows: Unsupported Date type conversion in Query of Queries. The query contains nubmers, strings and one date field. Here's a row from the CFDump of the query. 21 || {ts '2005-04-08 00:00:00'} || 317 || 1887 || Karen Wennlund ||

Re: Query of Queries Error

2005-07-20 Thread Brian Kotek
This is an old and annoying issue that is cause by CF trying to guess the type of the data in the column. We've had to append a string character such as a tilde to the data to foce everything to be a string, do the QofQ, and then remove it before processing/display. Hope that helps, Brian

Re: Query of Queries Error

2005-07-20 Thread Phillip Duba
Thanks Brian, that worked. Ugh, what a crappy bug, Phil This is an old and annoying issue that is cause by CF trying to guess the type of the data in the column. We've had to append a string character such as a tilde to the data to foce everything to be a string, do the QofQ, and then remove

Re: Query of Queries error - solution

2005-06-23 Thread Jeff Langevin
Thanks for the idea. I still had problems though. So I added a dummy row using querySetCell() where the offending column's value was set to aaa (I think someone might have suggested something like this earlier). This is a value that would never occur in real life. On the next process that

Re: Query of Queries error - solution

2005-06-23 Thread Jeff Langevin
Oh yes, and I used the cast in the other query to get QoQ to play nicely. Thanks! cast(OrderDetails.Order_ID AS varchar(12)) AS Order_ID, --Jeff On 6/23/2005 8:52 AM, Jeff Langevin wrote: Thanks for the idea. I still had problems though. So I added a dummy row using querySetCell() where

Re: Query of Queries error - solution

2005-06-23 Thread James Holmes
Would it help if I made good on my threat to write a QueryCast() UDF for CF 6.1? On 6/23/05, Jeff Langevin [EMAIL PROTECTED] wrote: Oh yes, and I used the cast in the other query to get QoQ to play nicely. Thanks! cast(OrderDetails.Order_ID AS varchar(12)) AS Order_ID, --Jeff On

RE: Query of Queries error - solution

2005-06-23 Thread Mark A Kruger
awesome... good tip... (still a kludge though - ha)... -Original Message- From: Jeff Langevin [mailto:[EMAIL PROTECTED] Sent: Thursday, June 23, 2005 7:52 AM To: CF-Talk Subject: Re: Query of Queries error - solution Thanks for the idea. I still had problems though. So I added a dummy

Re: Query of Queries error - solution

2005-06-23 Thread Jeff Langevin
I have no doubt that it would be put to good use by many if you did... --Jeff On 6/23/2005 10:07 AM, James Holmes wrote: Would it help if I made good on my threat to write a QueryCast() UDF for CF 6.1? On 6/23/05, Jeff Langevin [EMAIL PROTECTED] wrote: Oh yes, and I used the cast in the

Query of Queries error

2005-06-22 Thread Jeff Langevin
I am trying to join two sets of data using query of queries. I've read the livedocs and search the HoF archives and haven't been able to figure out a way to handle this. My problem is that I run the query at the end of this massage and get the following error: Query Of Queries runtime error

RE: Query of Queries error

2005-06-22 Thread Ian Skinner
PROTECTED] Sent: Wednesday, June 22, 2005 10:59 AM To: CF-Talk Subject: Query of Queries error I am trying to join two sets of data using query of queries. I've read the livedocs and search the HoF archives and haven't been able to figure out a way to handle this. My

RE: Query of Queries error

2005-06-22 Thread Mark A Kruger
to see it as a string. -mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com -Original Message- From: Jeff Langevin [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 12:59 PM To: CF-Talk Subject: Query of Queries error I am trying to join

Re: Query of Queries error

2005-06-22 Thread Jeff Langevin
Langevin [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 12:59 PM To: CF-Talk Subject: Query of Queries error I am trying to join two sets of data using query of queries. I've read the livedocs and search the HoF archives and haven't been able to figure out a way to handle this. My

RE: Query of Queries error

2005-06-22 Thread Mark A Kruger
PROTECTED] Sent: Wednesday, June 22, 2005 3:16 PM To: CF-Talk Subject: Re: Query of Queries error The problem is that the offending data is in the csv file which is being turned into a query result using QuerySetCell(). That doesn't support setting a type. If I do the cast in the other query

My Query of Queries error with code

2003-08-25 Thread Jeff
. However, certain words and phrases cause the error below: Query Of Queries runtime error. All resulting columns of queries in a SELECT statement containing a UNION operator must have corresponding types. Columns with index number equal 3 have diffent types (VARCHAR, OTHER). Here's the code I'm using

Re: My Query of Queries error with code

2003-08-25 Thread Jochem van Dieten
and sorted correctly. However, certain words and phrases cause the error below: Query Of Queries runtime error. All resulting columns of queries in a SELECT statement containing a UNION operator must have corresponding types. Columns with index number equal 3 have diffent types (VARCHAR, OTHER). CF

Redsky-Query of Queries Error with = cfqueryparam... statement

2003-08-11 Thread Angel Stewart
Error Executing Database Query. Query Of Queries runtime error. Unsupported type comparison. 237 : AND PSchedule_Date = cfqueryparam VALUE=#DateFormat(CreateDate(year(dateinfo),month(dateinfo),k), MM/DD/)# CFSQLTYPE=cf_sql_date 238

Query of Queries Error

2003-07-01 Thread Jose Alfonso
Here’s the function in a cfc that’s causing the error. It seems like the problem re-occurs whenever the runtime query being appended does not match the first one instantiated:-( cffunction name=”appendqry” returntype=”query” hint=”Appends a query in a named instance” output=”No”

Re: Query of Queries Error

2003-07-01 Thread jon hall
Just to clarify...you are saying that a QoQ sometimes changes the datatype of a column? btw...you should be able to rewrite the cfreturn without the eval as: cfreturn this[arguments.InstanceName] / it's a bit cleaner imho. -- jon mailto:[EMAIL PROTECTED] Tuesday, July 1, 2003, 4:52:23 PM,

Query of Queries Error

2003-07-01 Thread Jose Alfonso
Thanks for the hint there. Yes the problem seems to be that CF creates the data types at run time and as far as I can tell based on the first row of the query. So depending on wich recordset is passed by the appendquery function, that particular column can change data types (in my case the data

Query of Queries Error

2003-05-29 Thread Jose Alfonso
it returns. In this case at one point it returns most records with zero and 1 as data and so when the UNION tries to join them the error occurs. This is the error I get: Query Of Queries runtime error. All resulting columns of queries in a SELECT statement containing a UNION operator must have

RE: Query of Queries Error

2003-05-29 Thread Matthew Walker
Can we see your code? -Original Message- From: Jose Alfonso [mailto:[EMAIL PROTECTED] Sent: Thursday, 29 May 2003 9:09 a.m. To: CF-Talk Subject: Query of Queries Error I've got a variation on this same error (Macromedia please acknowledge this is a bug in CFMX!) In my case I

RE: Query of Queries Error

2002-10-02 Thread Ryan Kime
Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:22 AM To: CF-Talk Subject: Query of Queries Error Hi, I have a query of queries that has been working fine until today when I started getting the following error: Query Of Queries runtime error. Unsupported

RE: Query of Queries Error

2002-10-01 Thread Raymond Camden
My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:22 PM To: CF-Talk Subject: Query of Queries Error Hi, I have a query of queries that has been working fine until

Re: Query of Queries Error

2002-10-01 Thread Sam Farmer
] Sent: Tuesday, October 01, 2002 8:40 AM Subject: RE: Query of Queries Error What version? Can you limit your select statement to one query that can cause the error? That will pinpoint the exact column. === Raymond Camden

RE: Query of Queries Error

2002-10-01 Thread Raymond Camden
PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 10:00 AM To: CF-Talk Subject: Re: Query of Queries Error CF MX Enterprise. I have narrowed

Re: Query of Queries Error

2002-10-01 Thread Sam Farmer
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 01, 2002 10:11 AM Subject: RE: Query of Queries Error It sounds like you are trying to link up a non integer and integer column from 2 queries. Can you make the added column have some default integer values

Query of Queries Error

2002-09-30 Thread Sam Farmer
Hi, I have a query of queries that has been working fine until today when I started getting the following error: Query Of Queries runtime error. Unsupported Numeric type conversion in Query of Queries. Thats the extent of the error message provided! The columns seem to match up exactly