0
votes
0answers
85 views

Update table values using 2 tables

I have 2 tables as follows: COMMENT TEXT RECORD_ID_FK SORT_ORDER COMMENT_TEXT ----------------------------------------- 101 1 TEST TEXT 101 1 SOME ...
1
vote
1answer
71 views

Ambiguous column name error : SQL count, join, group by

I have two tables as below, one table has number of available units (stock), I'm trying to return the stock count of each product category, and joining it with secondary table to view the description ...
1
vote
2answers
57 views

Get column name of a bit column where value is true

I'm trying to create a select query that would return the name of a bit column if value is TRUE or 1. The only way I could do it is if I added an additional column "Day" and had description of the ...
0
votes
2answers
97 views

Cannot get data from MS SQL database using ColdFusion

I'm using ColdFusion and trying to get data from a MS SQL database. The problem is there should be only one line with details. At the same time if I'm trying to login as user or admin it works fine. ...
0
votes
2answers
55 views

Trying to compare a rowvalue to form value while in a query using cfif and performing the query

I know, the title sounds confusing but I literally couldn't think of another way to word it. Anyway, here's what I mean <cfquery name="search_all" datasource="ContactData"> SELECT DISTINCT ...
-1
votes
2answers
79 views

CFOUTPUT with query from two tables

Here is my code that I am working with - <CFOUTPUT> <CFQUERY NAME="getParser" DATASOURCE="LibraryDB" DBTYPE="ODBC"> select name from parser_acronym where init = '#source#' ...
0
votes
2answers
85 views

Omitting blank/null records from a query? (Coldfusion)

I am currently trying to find a way to omit any results from a search where the field is blank. The simple method would be to use a <cfif len(example) neq 0>#example#</cfif> but this then ...
0
votes
1answer
77 views

Trying to fetch an ID from SQL with ColdFusion

I been helping a friend out with a website he has been working on. He was task with maintenance of a ColdFusion website. He is mainly a web design person and my background is asp.net. The problem I ...
0
votes
2answers
81 views

How to avoid running the same expensive MySql query twice in pagination?

Assume a houses table with lot's of fields, related images tables, and 3 other related tables. I have an expensive query that retrieves all houses data, with all data from the related tables. Do I ...
1
vote
2answers
77 views

How to condense multiple select count queries to increase code effiency?

I'm writing a ColdFusion page to generate an Excel table to look like this: I want to generate multiple columns of information from one table in the database. For each column I effectively need a ...
0
votes
2answers
88 views

Searching through more than one column in a query

I'm currently working on a search function where users can search for gigs either by the name of the band who are hosting the gig, or the location of the gig itself. The issue I am having is for the ...
0
votes
4answers
102 views

Coldfusion passing variable through url

I am trying to pass the ID of a username through the URL (this part works). Then on to the next page where I display the user's information. However I cannot get the latter part to work correctly. ...
2
votes
4answers
202 views

How to return query results containing apostrophe from search string not containing apostrophe

I have a simple application that allows users to enter a string to search for a name in a database. The server side is ColdFusion 7. The issue I'm having is that a query such as "obrien" does not ...
1
vote
3answers
222 views

Why does my SELECT query take so much longer to run on the web server than on the database itself?

I'm running the following setup: Physical Server Windows 2003 Standard Edition R2 SP2 IIS 6 ColdFusion 8 JDBC connection to iSeries AS400 using JT400 driver I am running a simple SQL query against a ...
0
votes
2answers
92 views

SQL/Coldfusion - Get and Display Full Hierarchical Tree Listing

As an example I have a table like this: folder_id | parent_folder_id | folder_name ------------------------------------------ 1 | null | Main 2 | null | ...
0
votes
3answers
117 views

Output Sum of some column in week intervals throughout a year, week dates consistent with day

I need some help as I am stuck. This is using SQL and Coldfusion. Basically I have a table which list a completion of certain tickets along with what date they were marked complete. This table has ...
1
vote
2answers
59 views

Change database of a ColdFusion website

I'm newbie in ColdFusion. I have a running ColdFusion website I'd like to update. I've copy the database to make some test, in the ColdFusion manager I have created a new datasource with the copied ...
1
vote
2answers
160 views

ColdFusion/SQL : ELEMENT XXX IS NOT DEFINED IN FORM

I have a form on my cfm page, that is to insert a new row into an SQL datasource. The cfm page hosts the form - and when submitted the -action.cfm page inserts the data and relocates the user to a ...
0
votes
2answers
110 views

Using substring to evaluate table value one with leading zeros

I am not having any luck making this work and I am not sure what I am missing. I am new to coldfusion and SQL and still learning. I have a binding that I am doing within a form. After a user selects ...
0
votes
4answers
267 views

Inserting datetime in MSSQL from Coldfusion

I am trying to insert NOW into a MySQL table. Something like: <cfset datatime = CREATEODBCDATETIME( Now() ) /> <cfquery name="qInsert" datasource="#dbanme#" > INSERT INTO ...
1
vote
1answer
88 views

Modify database table based on a change in an ordered list

this issue has been plaguing me for over a week now and I am in desperate need of a solution. I have been building a module for our ColdFusion based CMS system which allows users to build a course ...
1
vote
1answer
79 views

Viewing & adding PDF to database simultaneously

At the moment I am converting the data on the page to PDF this way: <cfdocument format="PDF"> <cfoutput> #pageContent# </cfoutput> </cfdocument> With #pageContent# ...
0
votes
1answer
99 views

In coldfusion: how to remember that a user has logged in?

I have a username/password on a login page, which goes to 'member' page. Basically, I used a statement that finds the number of rows in a SQL query, and if it's not 1 (the correct username/password ...
1
vote
2answers
787 views

Find table from querying column name in oracle SQL developer

I want to query a database for a column name to find the table without knowing the table name (there are a huge number of tables) I am working with a huge database at the moment and trying to find ...
1
vote
2answers
87 views

Coldfusion SQL Server giving The hexadecimal string is invalid

I am getting this error - [Macromedia][SQLServer JDBC Driver]The hexadecimal string is invalid when I run the following query - <cfquery datasource="#getDatasource()#" ...
2
votes
1answer
66 views

CF10 concatenated mysql string as binary data

I'm working on moving a site from CF8 to CF10 and just came across something I wasn't expecting. My MySQL query has a simple concatenate to combine a company ID with company name as such: SELECT ...
1
vote
3answers
141 views

Creating a dynamic form, but how to do the query?

I've created a dynamic form which allows you to modify the amount of input fields you need. This is because they may have 15 band members and need 15 fields, or one band may have 2. The only I problem ...
1
vote
2answers
127 views

Coldfusion Update SQL statement

I have the following query which does a table update referencing data from data read in using cfspreadsheet.(approx 600 rows)and is referneced as qry1. The SQL runs around 2 minutes to completion. Can ...
1
vote
1answer
146 views

How to speed up a complex MYSQL Query?

I have the following MYSQL query in a Cold Fusion Component being called from a ColdFusion website. I have a custom take that basically builds a boolean query for the following fields: ...
1
vote
2answers
122 views

ColdFusion ValueList from SQL

I'm trying to create a value list in ColdFusion. Basically, I want the users to be able to enter their fellow band members into individual fields. Then when submitted, any value which is present is ...
2
votes
5answers
149 views

MySQL and Coldfusion date issue

I have a timestamp field in a MySQL table. I am trying to query the table using the following SQL query: SELECT login_mode,count(login_mode) as total FROM login_activity,ccac_registered_users ...
0
votes
2answers
278 views

Date range comparison using varchar columns in Teradata

I've been tasked to take a calendar date range value from a form front-end and use it to, among other things, feed a query in a Teradata table that does not have a datetime column. Instead the date ...
3
votes
4answers
257 views

Wildcard, '%', within ColdFusion cfscript query LIKE statement?

Is it possible to use a wildcard in a SQL LIKE statement within a ColdFusion cfscript query? An example that doesn't work: local.q = new Query(); local.q.setDatasource(variables.dsn); ...
3
votes
1answer
209 views

Storing file name when uploading using Coldfusion

I am trying to store the filename of the selected file to be uploaded into a hidden input field on the form. my form looks like this <form id="uploadattachment" enctype="multipart/form-data" ...
1
vote
2answers
62 views

coldfusion Hide/remove a name from a menu/list

I have an insert form that I did in adobe coldfusion. This insert form inserts information from the men on my team into a databases table called squadreport. After every insert into my squadreport ...
2
votes
2answers
287 views

Coldfusion 10 cffileupload insert file name

<cfquery name="dirs" datasource="devsite" result="mySillyLittleResult"> INSERT INTO folders (name) VALUES ('New Folder') </cfquery> <cfset fileId = ...
0
votes
1answer
74 views

ColdFusion - how do I execute an SQL “IN” clause in cfscript?

How would I construct an IN clause in cfscript? Here's what I have: var tagList = "301,302,303,304"; var q = new Query (); q.setDatasource ("mydatasource"); var sqlStmt = "SELECT * FROM Tags WHERE ...
1
vote
3answers
112 views

Can not reproduce this [ODBC Microsoft Access Driver] Syntax error

This one has me stumped. Three of my clients have received this error, but I can not reproduce it on my end! [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access ...
1
vote
1answer
118 views

How to pass the parameters in to SSRS reports from Coldfusion?

I'm trying to pass the parameters in to SSRS report from coldfusion.. see the below code before i used to pass parameters in to crystal report. <CFOUTPUT> <FORM ...
1
vote
2answers
178 views

Coldfusion SQL Insert Loop

Got stuck with an issue and thought I might see if anyone had any ideas on how to fix it. Basically, I pass in multiple values under a singular variable, and I want to use a loop to extract each ...
2
votes
2answers
273 views

Date comparison in MS SQL 2005

I have an HTML form where I ask the user to select dates and then hit submit. Upon submitting, I am trying to fetch records between the selected dates using Coldfusion. My query looks like this: ...
1
vote
2answers
83 views

Can a SQL query provide a value that ColdFusion can use?

I'm currently building a member survey, where each member gets a unique link that they use to access the survey. Once they access it and submit the survey they can no longer use the link. Here is what ...
0
votes
3answers
92 views

Is there a quick way to re-format all values in a ColdFusion query column?

I am at the liberty of a certain database, which stores date values as integers (i.e. 20121119). I have several queries that retrieve these values for reporting displays, so I need to convert these ...
0
votes
2answers
101 views

ColdFusion - Multiple Inserts - Track Number On Each Insert

Working on our fire report system... Tracking who is on trucks... So Truck A, Truck B, Truck C I can get the counts of total staff - but not for each truck... I'm a bit out of ideas... using ...
4
votes
3answers
122 views

Find rows in a database with no time in a datetime column

During testing I have failed to notice an incorrect date/time entry into the database on certain orders. Instead of entering the date and time I have only been entering the date. I was using the ...
0
votes
1answer
52 views

asp.net sql authentication in coldfusion

So, I'm building a site that needs to access a database which was created originally for asp.net. I want to use the same username and password as the asp.net site used, which is already in the ...
1
vote
1answer
78 views

ColdFusion query four days ago

I want to query order information from 4 days ago. I cannot quite get the query to use the full 24hours of the day though: <cfquery name="rsByDate" datasource="#request.dsn#"> SELECT ...
2
votes
2answers
171 views

Using BETWEEN on a varchar field not a numeric field?

I am using ColdFusion 8 and SQL Server 2008 R2. I am trying to query a column of values to get rows with a value within a range. The column SHOULD be numeric, but it's not. It's setup as a varchar ...
3
votes
4answers
180 views

Adding Select All to dropdown

This is my query: <cfquery name="qry" datasource="#variables.staffDs#"> SELECT firstname + ' ' + surname name, userid, mobileno, extension FROM currentstaff WHERE (mobileno ...
1
vote
1answer
125 views

MS-SQL get difference value

I have this query that calculates current gallons value from all fuel tanks in my database. SELECT DISTINCT y.TankNumber as TankNumber , y.Gallons as Gallons , y.timeUpdated , y.FuelType ...

1 2 3 4 5