1
vote
3answers
69 views

Return comma separated list of names from comma separate list of IDs

To begin with, please don't hold the crappy database structure against me. We all have things we have to deal with that we can't change, and I inherited these tables that are deeply ingrained within ...
0
votes
3answers
91 views

COLDFUSION: How to GROUP by the first column and convert second column into three separate columns

This is a sample of the RAW DATA that I working with from the "employeeRatings" Table before the cfquery output: (showcasing employeeID:1128 for the month of May) employeeID | ...
3
votes
2answers
48 views

SOL/ColdFusion: INSERTS with multiple foreign keys from session

Apologies for this long winded question, I'd thought I'd cover everything I've tried! I have a cart application, that stores the items selected in an array, these items are then passed on to the ...
1
vote
1answer
112 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
68 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
95 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
104 views

Getting a 500 error when I run this sql query

It's really weird it works within a one day date range but past that I get a 500 server error. The query runs fine in management studio though. SELECT tblCAPMessages.*, tblCADSNotes.Notes FROM ...
0
votes
2answers
418 views

illegal xml character on SQL Insert

I am trying to insert the following string into an sql xml field <?xml version="1.0" encoding="UTF-8"?> <Response> <Ip>x.x.x.x</Ip> ...
2
votes
1answer
186 views

Data gets truncated while inserting JSON data

I have a SQL table which has 'text' as a datatype. I am trying to insert JSON data using CfQueryparam with cf_sql_longvarchar, which I have in a ColdFusion variable. However, when I checked the value ...
2
votes
1answer
238 views

Create dynamic html table, where td values associate to th values from ms sql db

Using ColdFusion 9 server and MS-SQL db, I am trying to create html table, where td values associate to th values from the same MS-Sql db table. Query 1 - get departments: <cfquery ...
0
votes
1answer
83 views

CFML decrypt string from database on the fly

I have the following script that tries to select some items from my database and decrypt the encrypted ones, the problem is the encryption key is made unique with a changing company_id I have in my ...
1
vote
2answers
122 views

Scope_identity() coming back with '@P11' in error. MSSQL, Coldfusion. Trying to get last inserted ID

I'm getting an error with SELECT Scope_Identity() I'm inserting a new row of data from a Form. The row generates a auto-incemented ID(RBID). I'm trying to immediately grab it and insert it(RBID) ...
1
vote
1answer
117 views

Bad logic, MSSQL, Coldfusion, duplicate results from query

I've been trying fix this query for over a week, and I can't sem to get it right. Went down a complete rabbit hole that got me close, but kept geting bigger and bigger. So I'd like to start from ...
0
votes
2answers
233 views

group by multiple columns WITHOUT using aggregate functions or group using cfoutput/cfloop?

I'm still learning how to get my groups of results from a query the way I want them. I have looked at scores of examples online but none quite fit my needs. I'm looking for simply the most direct ...
4
votes
1answer
273 views

How to make MSSQL query data available to Javascript on a page without having to query the database again?

For a page I'm making with Google Maps API I need to query multiple marker locations and also further information about each marker. I'm using ColdFusion to query the database. I have mapped out how ...
2
votes
1answer
84 views

## in front of Coldfusion variable

<CFQUERY Name="LoadCompletions" datasource="#request.datasource#"> SELECT n.*, u.UserID into ##Completions FROM OPENROWSET( 'Microsoft.ACE.OLEDB.12.0', 'Excel ...
1
vote
2answers
97 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()#" ...
1
vote
0answers
144 views

jTDS in ColdFusion instantly times out

I'm trying to setup my ColdFusion instance to use jTDS for a datasource instead of the built in driver from Macromedia, but when I save the datasource I get the following error: Connection ...
0
votes
3answers
79 views

coldFusion and SQL interaction slow initial connection

I'm noticing that the first query my web app does to the SQL server that is hosted locally is quite slow. Does anyone have experience with this and know what I can do to improve the ...
3
votes
4answers
281 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); ...
5
votes
1answer
296 views

Slow query ColdFusion, SQL Server, whitespace dependent

We have a problem, we are calling SQL Server 2005 from ColdFusion 9. I can't post the original query but it isn't the focus of the problem, I have posted the relevant combo of things causing the ...
0
votes
4answers
250 views

Coldfusion : how to update multiple record with one ID

This is actually continue from here. Say a teacher wanted to update the student's skill. The process goes like this: Select student's name. View Student's profile. Click UPDATE link. The UPDATE ...
2
votes
2answers
94 views

SQL Execution plan in ColdFusion

I wonder if ColdFusion can get the execution plan from Microsoft SQL Server? Or even the Estimated execution plan. It would be nice to get a query back of all the costs.
0
votes
1answer
80 views

ColdFusion Webservice to show database schema

I want to make a web service to some details on the underlying database. <cffunction name="getDBSchema" output="false" returnType="query" access="remote"> <cfquery name="local.qryPlugin" ...
1
vote
1answer
92 views

Replacing a ColdFusion Recursive Function call with a Common Table Expression (CTE)

I have a table called dbo.Node: NodeID int ParentNodeID int Title The following functions shows the hierarchy <cffunction name="getNodePath" returnType="string"> <cfargument ...
2
votes
2answers
328 views

Using SQL Server temp tables in ColdFusion

ColdFusion uses #'s to delineate variables. In SQL Server a table name with # or ## is temp table and a global temp table respectively. How does one use SQL Temp tables in ColdFusion?
2
votes
2answers
293 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
126 views

Average Time & Display In Specifc Format (Coldfusion)

Edit: Thanks to barnyr I have the average in seconds, so now I just need to convert it to the correct format. Unfortunately the Coldfusion functions noted by Peter only take a datetime object, so I'm ...
2
votes
4answers
144 views

Separate Real Words from Random Strings

I'm storing a list of keywords that have been used throughout all searches on a site, and I'm getting a lot of random strings in the keywords field. Here's a sample of the data that I'm getting back: ...
4
votes
2answers
570 views

ColdFusion & MSSQL : how to insert multiple rows with one unique id in one submission

can anyone help me on how to submit multiple rows in one submission? this survey form will display a set of skill that derived from table skill. the teacher will have to check the students skill's in ...
1
vote
3answers
606 views

MS-SQL sort output in descending order

I have this MS-SQL query with thousands of row records in database: SELECT DISTINCT TOP 7 DATENAME(MM, mydatetime) + ' ' + CAST(DAY(mydatetime) AS VARCHAR(2)) as thedate , MONTH(mydatetime) , ...
4
votes
1answer
95 views

How can I retrieve a t-sql variable from cfquery?

I am running this inside of my cfquery. SET @rID = ( SELECT TOP 1 roleid FROM Roles WHERE RoleName = @rName AND appid = @appID ORDER BY Created DESC); Is it ...
1
vote
2answers
184 views

Filter browser information from stored useragent data in MS SQL database

I have stored visitors' user_agent info in my MS-SQL database. Each row has this regular format: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; F-6.0SP2-20041109; InfoPath.1; .NET ...
0
votes
0answers
146 views

Trigger to insert data on another table, hash along the way

Coldfusion/SQL Server I have one old users table (USERS) and a new one (PT_USERS) for a new coldfusion application. The new app was an open source product with it's own users table and login system. ...
0
votes
0answers
95 views

SQL Server 2008 Changes Notification [closed]

This is the scenario: I have a Database in SQL Server 2008 but I need to reflect changes in records in real time. The languages I'm going to use is ActionScript 3.0, Flex 4.6, ColdFusion 10. It's ...
3
votes
1answer
156 views

SQL statement not working when placed in ColdFusion CFC

I have the following table join that runs fine in Microsoft SQL Server and returns the expected results. SELECT d.id1, c.content_type FROM Document2 AS d INNER JOIN Content2 AS ...
3
votes
1answer
163 views

Cfqueryparam with LIKE with wildcard is slower than not using cfqueryparam

[Edit: Edited based on Leigh's suggestions I consistently have an issue with where using column like <cfqueryparam cfsqltype="cf_sql_varchar" value="abc%" /> is slower than by about 30ms. ...
4
votes
2answers
149 views

CFQUERY times out when using cfqueryparams and MSSQL Server?

I'm executing a query that returns about 16000 rows. Running the straight SQL in MS SQL Server Manager returns the records in a few seconds. Running the same SQL in cfquery returns it in about the ...
0
votes
1answer
2k views

INSERT query error: Implicit conversion from data type varchar to varbinary is not allowed. Use the CONVERT function to run this query.

I am trying to run an insert query, but I am getting the error below. How can I pass the values into my insert statement? The value is coming from an array and the [cNotes] column type is varchar ...
1
vote
2answers
2k views

Transaction (Process ID) was deadlocked on lock | communication buffer resources with another process and has been chosen as the deadlock victim

I have a java program that updates a table in MS SQL. This table is also accessed by web users through a website created in ColdFusion Recently I have been getting this error when the line: ...
3
votes
1answer
249 views

ColdFusion 8 performing cfquery, transactions and dirty reads

When using ColdFusion 8 with MSSQL, when tracing, my DBA noticed the cfquery calls are getting appended with SET TRANSACTION ISOLATION LEVEL READ COMMITTED which is not in the query itself. He ...
0
votes
2answers
86 views

Coldfusion server mapping to sql server

I have a ColdFusion server connected to MySQL database. Now I am changing the database to an existing MSSql server .. MSSql server has a similar database that of MySQL but the table names and column ...
3
votes
3answers
398 views

Slow query with cfqueryparam searching on indexed column containing hashes

I have the following query that runs in 16ms - 30ms. <cfquery name="local.test1" datasource="imagecdn"> SELECT hash FROM jobs WHERE hash in( 'EBDA95630915EB80709C69089315399B', ...
0
votes
1answer
98 views

SQL Server Data has script tags in a Memo Field with Intranet IP Address

We have a ColdFusion page where admins can insert/update some real estate records after logging in. We are noticing that in one table's Memo field called 'description', there are sometimes tags which ...
1
vote
1answer
92 views

Refining Query result using SQL Server and Coldfusion

I have a query which delivers data like ID Value AttributeID IDParent 286 Fleet 9 284 286 239 10 284 286 1 12 284 ...
1
vote
1answer
417 views

Inserting non-Roman characters into SQL Server via Coldfusion

EDIT: Fix from Sharondio: Is the "-- Enable High ASCII characters and Unicode for data sources configured for non-Latin characters" setting checked in the cfadmin datasource advanced settings? The ...
0
votes
3answers
241 views

Query with grouped results by column (SQL Server)

I've got a many to many relationship between items-itemnames-languages The itemnames don't appear for every language. I'd like to get a result with all the items only represented once, but be able ...
1
vote
1answer
102 views

ColdFusion - SQL execution time varies by Application

I'm running 2 separate sites/Applications under a single install of ColdFusion. The execution time of SQL statements is different depending on the site they are run in. If, for example, I run the ...
1
vote
2answers
200 views

ColdFusion 8 + MSSQL 2005 and CLOB datatype on resultset

The environment I am working with is CF8 and SQL 2005 and the datatype CLOB is disabled on the CF administrator. My concern is, will there be a performance ramification by enabling the CLOB datatype ...
3
votes
2answers
145 views

Coldfusion error executing a sql statement

I keep getting a error that says, Argument 2 of function Replace cannot be an empty I can't figure out what I'm doing wrong. The code: local.drafts.setSQL( "INSERT messages (tm, draft, linkA, ...

1 2 3