RE: [ACFUG Discuss] RE: Any Open Source CF Options

2008-10-29 Thread McTure, Greg
you have a single ColdFusion license and you're using it on a server with 1 or 2 CPUs; you can failover to a server with 1 or 2 CPUs, but not to a server with more than 2 CPUs). Josh From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of McTure, Greg Sent: Monday, October 20, 2008 10

RE: [ACFUG Discuss] application.cfc info

2008-09-15 Thread McTure, Greg
Is there anyone here that was present at the user group meeting last week recall the Adobe Press discount code that was written on the board? Thanks. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Thursday, September 11,

[ACFUG Discuss] Flex3 Install

2008-06-16 Thread McTure, Greg
I wanted to know for those of you that previously had the FlexBuilder 2 IDE and have gone to the FlexBuilder 3 IDE if you installed FB3 on top of the existing FB2 install or did you uninstall FB2 prior to installing FB3? Are there any issues that I should look out for? Greg McTure [EMAIL

RE: [ACFUG Discuss] Flex3 Install

2008-06-16 Thread McTure, Greg
, 2008 at 4:09 PM, McTure, Greg [EMAIL PROTECTED] wrote: I wanted to know for those of you that previously had the FlexBuilder 2 IDE and have gone to the FlexBuilder 3 IDE if you installed FB3 on top of the existing FB2 install or did you uninstall FB2 prior to installing FB3? Are there any issues

RE: [ACFUG Discuss] Possible bug in CFGRID? Or in SQL Server?

2008-04-24 Thread McTure, Greg
Hi Peyton: What is the exact data type of the 'AnyJob' Column? If it isn't already, try altering the table to make the data type of that column a VARCHAR(1). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peyton Todd Sent: Tuesday, April 22, 2008

RE: [ACFUG Discuss] Clone a SQL Server Database? Solved!

2008-04-22 Thread McTure, Greg
: RE: [ACFUG Discuss] Clone a SQL Server Database? Solved! Hi Greg - responses below in all CAPS. -Original Message- From: McTure, Greg [EMAIL PROTECTED] Sent: Apr 21, 2008 5:34 PM To: discussion@acfug.org Subject: RE: [ACFUG Discuss] Clone a SQL Server Database? Solved! Hi Peyton: I think

RE: [ACFUG Discuss] QoQ question

2008-04-18 Thread McTure, Greg
Hi Scott: Couldn't you use a TRIM function in the original query to eliminate the spaces? In SQL Server, it would actually be something like: SELECT RTRIM(LTRIM(col_with_spaces)) FROM TABLE. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

RE: [ACFUG Discuss] QoQ question

2008-04-18 Thread McTure, Greg
From: McTure, Greg [EMAIL PROTECTED] To: discussion@acfug.org Sent: Friday, April 18, 2008 8:54:51 AM Subject: RE: [ACFUG Discuss] QoQ question Hi Scott: Couldn’t you use a TRIM function in the original query to eliminate the spaces? In SQL Server, it would actually be something like: SELECT

RE: [ACFUG Discuss] QoQ question

2008-04-18 Thread McTure, Greg
Also, if it is the column name in question, I also agree that it would be easier to just SELECT column AS 'DESIRED COLUMN NAME' From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of McTure, Greg Sent: Friday, April 18, 2008 8:55 AM To: discussion

RE: [ACFUG Discuss] can external java app use datasources defined in Coldfusion?

2008-04-02 Thread McTure, Greg
In addition to the other suggestions a very quick way to get by this issue may be to consider creating a generic application specific user id in the database and use that id in your existing java app without changing anything. You can then control the user id access with security (roles and

RE: [ACFUG Discuss] can external java app use datasources defined in Coldfusion?

2008-04-02 Thread McTure, Greg
On Apr 2, 2008, at 11:56 AM, McTure, Greg wrote: In addition to the other suggestions a very quick way to get by this issue may be to consider creating a generic application specific user id in the database and use that id in your existing java app without changing anything. You can

RE: [ACFUG Discuss] Cookies...

2008-03-16 Thread McTure, Greg
Thanks for the link. Very informative and it has some quite useful tools and utilities listed. I would consider adding Perforce in the Source Control section and DB Artician by Embarcadero under the SQL Tools. Can I add these tools from the page directly?

RE: [ACFUG Discuss] runtime classes error with 7.0.2?

2008-03-12 Thread McTure, Greg
Did you try restarting the cold fusion service? Also, the event logs on the server may possibly provide some clue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tepfer, Seth Sent: Wednesday, March 12, 2008 3:43 PM To: discussion@acfug.org Subject:

RE: [ACFUG Discuss] Database incremental Counter

2008-03-12 Thread McTure, Greg
Hi Paul: There are a few functional ways you could do this; however, for the sake of simplicity and quick implementation, I would consider using an IDENTITY column with an INT or NUMERIC data type. That will function just like the auto num column for primary keys in an Access database.

RE: [ACFUG Discuss] Database incremental Counter

2008-03-12 Thread McTure, Greg
] On Behalf Of McTure, Greg Sent: Wednesday, March 12, 2008 4:12 PM To: discussion@acfug.org Subject: RE: [ACFUG Discuss] Database incremental Counter Hi Paul: There are a few functional ways you could do this; however, for the sake of simplicity and quick implementation, I would consider using

RE: [ACFUG Discuss] Encrypted Email

2008-01-18 Thread McTure, Greg
Hi Clint: I haven't a business need to work with such an issue yet but in just quickly thinking about your issue I would consider the following factors. 1. Encryption method for encrypting the email content from the source (sender). 2. The ability of the recipient's email client

RE: [ACFUG Discuss] Transactions and Commits

2007-12-03 Thread McTure, Greg
From my experience when using queries that need to be wrapped in a transaction to prevent dirty reads or dirty writes, I will use the transaction code within the query itself and use the COMMIT at the end of the query. That way, the ROLLBACK will automatically occur if the query (that is wrapped

RE: [ACFUG Discuss] Transactions and Commits

2007-12-03 Thread McTure, Greg
From my experience when using queries that need to be wrapped in a transaction to prevent dirty reads or dirty writes, I will use the transaction code within the query itself and use the COMMIT at the end of the query. That way, the ROLLBACK will automatically occur if the query (that is

[ACFUG Discuss] Embedded CF in Javascript

2006-08-21 Thread McTure, Greg
This is a general question to see if anyone has ran into issues with embedded CFML code in _javascript_ with a page working in CFMX and not in CF5? The code I have works as intended in CFMX but I get the following error on CF5? Any suggestions that anyone may have on the cause and/or

RE: [ACFUG Discuss] Embedded CF in Javascript

2006-08-21 Thread McTure, Greg
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy Payne Sent: Monday, August 21, 2006 10:14 AM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] Embedded CF in _javascript_ We would need to see the code that the error is referring to. Teddy On 8/21/06, McTure, Greg [EMAIL PROTECTED] wrote