RE: Time Required for Updating DB

2002-10-08 Thread Mosh Teitelbaum
Like (I think) Isaac said, there's probably something wrong with the code, but it's kind of hard to tell for sure without looking at the code. I apologize if this is obvious, but since you didn't really explain the particulars of the situation, I wanted to make sure that you weren't

Re: Time Required for Updating DB

2002-10-08 Thread Srimanta
Thanks Mosh This is what I am using: This update Query is not working. After seven hours of hard work my hard drive has stopped making the horrible grinding sound. The Result: None of the records were updated. Can someone please help. I am trying to update price field in Table named Product

RE: Time Required for Updating DB

2002-10-08 Thread Mosh Teitelbaum
Thanks Mosh Yup. 8^) I am trying to update price field in Table named Product with values from field newprice in Table named New. The primary key in both the tables is dealerpart no (Text) which is unique. Note: All the records need to be updated CFQUERY name=UpdatePrice Datasource=XYZ

Re: Time Required for Updating DB

2002-10-08 Thread Srimanta
Many Thanks Mosh, Thanks for the time taken to look into my problem and for the codes. Will try . Srimanta - Original Message - From: Mosh Teitelbaum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 8:03 PM Subject: RE: Time Required for Updating DB

Re: Time Required for Updating DB

2002-10-08 Thread Srimanta
Mosh, Tried the codes. Still no luck. The query runs for about 8 to 10 minutes and then the screen shows hundreds of lines of the SQL and no data is updated. Srimanta - Original Message - From: Mosh Teitelbaum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 08,

RE: Time Required for Updating DB

2002-10-08 Thread Ryan Sabir
The code is missing CFQUERY etc... tags around the SQL code... Maybe if you tried to understand what the code was doing instead of blindly pasting it in you would see these problems first. No hard feelings, its just that we'd all like to see you become a better CF coder so we can help you with

Re: Time Required for Updating DB

2002-10-08 Thread Srimanta
Its OK No attitude problems with me. Srimanta - Original Message - From: Ryan Sabir [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 8:41 PM Subject: RE: Time Required for Updating DB The code is missing CFQUERY etc... tags around the SQL code... Maybe

Re: MX Debug option screws up javascript ??

2002-10-08 Thread Jon Hall
Which browser? Does it do it in all of them? If you are only seeing it in IE, chances are if you rename the checkbox that IE is complaining about it will work fine. MS in their infinite wisdom decided to make IE toss every DOM element into the global namespace and conflicts will cause the error

RE: CFMX - I've never seen anything so unstable in my life

2002-10-08 Thread Dave Wilson
On Monday, Oct 7, 2002, at 12:21 US/Pacific, Ben Densmore wrote: Here are the answers to your questions. - OS / patch level - Win2k SP3 - Database / patch level - SQL Server 7 SP4 - Is the DB on a separate machine? - Yes - Which driver are you using specifically?

RE: CFMX - I've never seen anything so unstable in my life

2002-10-08 Thread Jochem van Dieten
Quoting Dave Wilson [EMAIL PROTECTED]: The datasource is set up correctly as it was working fine for a few days and nothing has changed. I can no longer access the CF Administrator and don't know of any other way of editing JDBC settings on my win2k machine. Use the

RE: CFMX - I've never seen anything so unstable in my life

2002-10-08 Thread Dave Wilson
Thanks Jochem, However I'm getting a Runtime Exception from that link. Running win2k Pro IE 6 with css enabled as default (got a note about not supporting your css) Still not having much joy with CFMX here either. May post the series of events leading up to my current problems in another mail

RE: MX Debug option screws up javascript ??

2002-10-08 Thread Ingecom D. Delcomminette
Must be a misunderstanding, this piece of code works fine for ages in CF5, with or without CF debug output. It also works fine with CFMX if I do not activate CF debug output, problem arise with CFMX and debug output activated. It is independent of the browser used ( IE or NS). Dominique

RE: CFMX - I've never seen anything so unstable in my life

2002-10-08 Thread Robertson-Ravo, Neil (REC)
I dunno, I saw a man on stilts in quickstand once.. he looked pretty unstable; :-) -Original Message- From: Dave Wilson [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 13:08 To: CF-Talk Subject: RE: CFMX - I've never seen anything so unstable in my life Thanks Jochem,

RE: CFMX - I've never seen anything so unstable in my life

2002-10-08 Thread Jochem van Dieten
Quoting Dave Wilson [EMAIL PROTECTED]: However I'm getting a Runtime Exception from that link Oeps. The database is running on an experimental machine and I was upgrading it. Try again. Jochem ~| Archives:

RE: overhead for large UDF libraries?

2002-10-08 Thread Raymond Camden
I've seen a CFMX box include 600 UDFS. The first hit was um... icky. The second hit was as if nothing at all was being included. That being said... Yes, if you cfinclude ANYTHING, you slow the page down. However, what you want to know is if it will have a _significant_ impact. In my

RE: overhead for large UDF libraries?

2002-10-08 Thread Adrian Lynch
10 - 20 on a typical site, damn, I've only ever used 2 :OP Ade -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 13:45 To: CF-Talk Subject: RE: overhead for large UDF libraries? I've seen a CFMX box include 600 UDFS. The first hit was um...

Re: overhead for large UDF libraries?

2002-10-08 Thread Gyrus
- Original Message - From: Raymond Camden [EMAIL PROTECTED] I would not cfinclude 600 UDFs of course, but on a typical site that uses maybe 10-20 UDFs, I wouldn't think twice about it. Thanks Ray, just what I was after. A rule of thumb that enables me to

RE: overhead for large UDF libraries?

2002-10-08 Thread Raymond Camden
I tend to use UDFs for more then general purpose things email validation and the like. I will also use UDFs to simplify code. For example, I have a udf which does a date _and_ time format on a date object. This means that instead of doing: #dateFormat(somedate)# #timeFormat(somedate)# I can do:

RE: overhead for large UDF libraries?

2002-10-08 Thread Rich Wild
(Which you can do w/o a UDF of course, just use an application variable for the masks.) or global search and replace in cfstudio! ;) , feel the regex power. -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 14:04 To: CF-Talk Subject:

RE: Time Required for Updating DB

2002-10-08 Thread Mosh Teitelbaum
Jeez... I forgot to include the CFQUERY tags. I keep telling myself, no more technical emails when I'm exhausted, no more technical emails when I'm exhausted. You'd think I'd finally start listening to myself 8^). Anyway, just wrap the SQL query in an appropriate CFQUERY tag and you should be

RE: Primary Keys Duplicate Values

2002-10-08 Thread Bill Grover
As Andy has been saying I also would highly recommend that you create an auto numbered primary key. Just because this field is your primary key does not mean that it has to be the field to link your tables together. But having this key makes it very easy to update a single row in your table.

JSpell

2002-10-08 Thread Randell B Adkins
Has anyone have any experience with JSpell (JavaScript based spell checker)? Not to be confused with CFX_JSpellEdit by CFDEV. Possibily looking more JavaScript based but all comments, recommendations are welcome. TIA! ~|

LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Well, as amazing as it is for me to say, I'm seriously considering taking CF support away from our customers, and selling those accounts that use it. With the consistant rash of unresponsive CF service problems (that require many restarts of IIS/CF -- and then finally a complete server restart),

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Robertson-Ravo, Neil (REC)
is this CFMX? -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 14:20 To: CF-Talk Subject: LONG time CF Supporter - About ready to dump CF! Well, as amazing as it is for me to say, I'm seriously considering taking CF support away from our customers,

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Dave Wilson
Lee, I know the feeling. I'm going through the same problems right now - Currently investigating everything and due to post my findings later today (they aint amounting to much at the moment unfortunately). Dave See thread: CFMX - I've never seen anything so unstable in my life

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Kola Oyedeji
Hi I'm assuming you've made your problems known to Macromedia? I don't mean to offend but its amazing the amount of people who complain in forums but have never brought it to Macromedia's attention. (I'm not saying this is the case in your situation by the way.) Kola -Original

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Kola Oyedeji
Hi.. I should also add. Someone once told me some good advice, always wait for the first dot release. Come to think of it , I'm sure CF has had problems like this in the past was it 4.0 to 4.5 I cant remember but I remember one of the releases was a nightmare. Kola -Original Message-

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Yup... And (per my post) they've asked for support $ to figure it out. | I'm assuming you've made your problems known to Macromedia? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Yup | is this CFMX? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jesse Noller
They asked for a credit card number to secure an amount unless it is a bug in CFMX, correct? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 9:36 AM To: CF-Talk Subject: RE:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Dave Wilson
I should also add. Someone once told me some good advice, always wait for the first dot release. Come to think of it , I'm sure CF has had problems like this in the past was it 4.0 to 4.5 I cant remember but I remember one of the releases was a nightmare. Yes this is good advice and I personally

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Thomas Chiverton
I've SCOURED the KB's. Left messages in all the forums, lists, etc. All are the same patches/fixes.. None of them work. So write a monitor script that restarts it when CF pages stop working... Real web farms reboot their IIS servers at least weekly, so I don't see that you have any particular

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Yup.. I know I'm not the only one. This is something that either wasn't thoroughly tested, is due to a major change in technology-base, simply occuring in too few systems... SOMETHING. I'm not sure why this isn't been directly addressed and squashed. But it's not. And I refuse to go to the

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Will Swain
Hmmm I haven't ported any of our clients over to CFMX yet, and won't be for the moment. Will -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 14:36 To: CF-Talk Subject: RE: LONG time CF Supporter - About ready to dump CF! Yup | is this CFMX?

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Matt Liotta
Real web farms don't cover up their problems with scheduled restarts. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 9:40 AM To:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Yes. But that's really not the point. I know you're just a messenger Jesse.. So I'm not trying to slay you. But understand that many of us who support CF had to go to our superiors and convince them to spend quite a bit of cash to support CF in the firt place. Then, after convincing them that

SQL question

2002-10-08 Thread Thane Sherrington
Is there a way to use a Select query to get just the month out of a date in a SQL query? I have a database that has a date field in it (so 04-10-02) and I want to select all the records from a specific month. T ~| Archives:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Matt Liotta
The problem as I see it is one of communication. It doesn't seem like Macromedia is acknowledging the problems people are having in the field with CFMX. Nor are they telling us if they are even working on fixes for these problems. I would imagine you (and others) would be willing to hang on

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Robert Everland
Why not downgrade to 5 and put CFMX into development until you are sure it's rock solid. I have absolutely no issues with CF5, but have had issues with CFMX. You gotta hit Macromedia in the pocketbook if you want to see results. If they know you won't spend money until they fix their issues then

Re: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Thane Sherrington
At 06:20 AM 08/10/02 -0700, Lee Fuller wrote: Well, as amazing as it is for me to say, I'm seriously considering Why not just go back to CF5 for the time being? T ~| Archives:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Here here! | -Original Message- | From: Matt Liotta [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, October 08, 2002 6:42 AM | To: CF-Talk | Subject: RE: LONG time CF Supporter - About ready to dump CF! | | | Real web farms don't cover up their problems with scheduled restarts. | | Matt

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
I, too, thought it best to wait for dot-one before a complete roll-out. And that's what we've done. And I totally agree with your statement below. | | The problems being faced by CFMX are very different due in | part to CFMX itself being a ground up rewrite on a new Java platform.

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
LOL... Were it only to be that simple! Uhm.. How about - 2 servers monitoring the CF service so that we know, for sure, when it's dead. - Nightly restart script. - Performance counter alert to restart service when it spirals and kills itself. - Pager

RE: CFMX - I've never seen anything so unstable in my life - Also - LONG time CF Supporter.........

2002-10-08 Thread Dave Wilson
Amalgamating two similar threads. OK here is the sequence of events which have led me to where I am right now with my CFMX problems. CURRENT SITUATION: -- Unable to browse cfm templates on virtual hosts - http 500 error thrown - have attempted wsconfig.jar (see below)

RE: SQL question

2002-10-08 Thread A.Little
SELECT Month(my_date_fieldname) AS myMonth FROM myTable -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 14:49 To: CF-Talk Subject: SQL question Is there a way to use a Select query to get just the month out of a date in a SQL

WAP development

2002-10-08 Thread Paolo Cesana
Hi, any guides out there to help in developing WAP apps using CF5? Tks/Rgds Paolo Cesana IT Development Mgr. Electricity is not the result of a series of upgrades to the candle Auth. unknown Miami International Forwarders (MIF) Phone: (305)594-0038 Ext. 7326 Fax: (305)593-0431

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Thomas Chiverton
Real web farms don't cover up their problems with scheduled restarts. s/Their/Microsoft's/ And they do. Often at their customers requests. Tom Chiverton You don't have to be a mad scientist to believe in ColdFusion ~|

RE: Randomizing Query Results

2002-10-08 Thread David Jones
What database does this work on? I should have specified what database I am using. I am developing for Oracle 8i. Thanks, Dave -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 10:42 AM To: CF-Talk Subject: Re: Randomizing Query

A Website Checklist.

2002-10-08 Thread Che Vilnonis
I am looking for a form that incorporates all the questions one might ask a potential website customer as to determine how to properly price our company's proposals. Does anyone know of an online resource or would anyone be willing to share a copy of his/her website startup checklist. Ché

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Yes and no. I think that you're right that we haven't heard much from MM on what (if anything) is being addressed. Yet we didn't hear much along those lines from Allaire in those situations, after 2.0. I think that's a bad thing for the customer.. But not enough for me to jump ship. What is

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Gaulin, Mark
I'm jumping in to this thread late, but to me this sounds just like the problems we were having until we got *all* of our locking straight (CF5 and earlier). I found that turning on the lock-checking/reporting in the admin screen was enough to highlight all of the little places where locking was

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jesse Noller
Lee- While I can understand your predicament, and I will pass this issue around to other I know of, I fail to see the rationale here. Software, by it's very nature (programmed by humans, who are fallible) tends to have some bugs and problems. There is a large group of

Re: SQL question

2002-10-08 Thread Gyrus
- Original Message - From: Thane Sherrington [EMAIL PROTECTED] Is there a way to use a Select query to get just the month out of a date in a SQL query? I have a database that has a date field in it (so 04-10-02) and I want to select all the records from a specific month.

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Matt Liotta
I might add that real web farms don't use Microsoft to begin with. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 9:55 AM To:

RE: Time Required for Updating DB

2002-10-08 Thread kpeterson
I think you could do this in a single qry using UPDATE... FROM. Microsoft example UPDATE titles SET ytd_sales = titles.ytd_sales + sales.qty FROM titles, sales WHERE titles.title_id = sales.title_id AND sales.ord_date = (SELECT MAX(sales.ord_date) FROM sales) yours

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Raymond Camden
The fact is, no software is fool-proof. I was in CFQA and Development helping to work on CFMX, I know we ran this puppy through every little test you could think of. As another voice from the 'inside', I just want to ditto this. QA during the MX dev cycle was vicious. I hated them.

RE: CFFORM validation issue

2002-10-08 Thread Les Mizzell
I don't have access to the CF Administrator on the remote server, but I take it you mean that there's a mapping problem that can be fixed on the remote, right? Thanks... Les : -Original Message- : From: Mike Townend [mailto:[EMAIL PROTECTED]] : Sent: Monday, October 07, 2002 6:16 AM :

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Haggerty, Mike
Anyone here subscribe to Bugtraq? I'm thinking there may be a legitimate need for a dedicated CF-Bugtraq type list, to document issues / bugs with CFMX separate from 'how do I do this' discussions. It is important to know what other people are running into in the field. Without trying to start

Headers are showing up on pages at random....

2002-10-08 Thread Critter
oi CF-Talk,!! is there a workaround for this? Is it a cf|iis|browser bug? http://slash.ctzc.com/header.jpg -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com;

Re: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jochem van Dieten
Lee Fuller wrote: Yup... And (per my post) they've asked for support $ to figure it out. Don't worry about that too much. You will only be charged if it is your problem (and even then the amount is fairly reasonable), not if it is a bug. I have opened my share of incidents, but I have never

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Matt Liotta
While Matt just sent a message decrying public communication between those of us at Macromedia and the community, how can we possibly work on bugs and issues that are reduced to stuff is broken. The above is right in line with what I am talking about. Matt complains about communication

Re: SQL question

2002-10-08 Thread kpeterson
TRY TO_CHAR(date_col, 'MONTH') Kore Peterson Database Development Specialist SEH - Minneapolis 612.758.6739 Gyrus

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Scott Brader
Before anyone else comments, yes, this probably should be a cf-community topic now. Jesse, I certainly see your point, however, as a developer and small business owner, there are financial concerns that a large organization like MM wouldn't understand. My business _depends_ on my customers being

RE: Randomizing Query Results

2002-10-08 Thread David Jones
I want to randomize what ever results return from the query. Could be 1,2,,,500 and so on. Thanks, Dave -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 9:34 AM To: CF-Talk Subject: RE: Randomizing Query Results In what way? Do you just

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Matt Liotta
Have you checked out http://www.cfbughunt.org? Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Haggerty, Mike [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 10:11 AM To: CF-Talk Subject: RE:

Re: Headers are showing up on pages at random....

2002-10-08 Thread Gyrus
- Original Message - From: Critter [EMAIL PROTECTED] is there a workaround for this? Is it a cf|iis|browser bug? --- I recall some IE6 issue related to this type of thing (check list archives), but I also remember way back becoming totally flummoxed by the

DaysInMonth problem?

2002-10-08 Thread Thane Sherrington
When I use the DaysInMonth expression for September - DaysInMonth(9) - I get 31. That isn't right. Is this a problem with my computer, or is there a bug in this expression? T ~| Archives:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread James Johnson
Jesse, what Lee is trying to say is that MM should help him with the problem, without him having to pay extra for tech support. I had a problem getting CFMX to run on my development system - the services wouldn't start when my system booted, MM wanted to charge me for tech support, and it

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Thomas Chiverton
Anyone here subscribe to Bugtraq? Aye. IMHO, it should be a capital offence to run a server without being :-) I'm thinking there may be a legitimate need for a dedicated CF-Bugtraq type list, to document issues / bugs with CFMX separate from 'how do I do this' discussions. I think BugTraq

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Thomas Chiverton
I might add that real web farms don't use Microsoft to begin with. Well, there is that, but some of us don't get to choose. Tom Chiverton You don't have to be a mad scientist to believe in ColdFusion ~| Archives:

Re: Headers are showing up on pages at random....

2002-10-08 Thread Critter
oi Gyrus!! i'll have a gander. thanks -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com; Tuesday, October 8, 2002, 10:30:02 AM, you wrote: G - Original

cfm templates return 500 error from virtual sites

2002-10-08 Thread Dave Wilson
Hi all, Still having problems getting CFMX eval to run smoothly, however I've resolved all other issues (I think) and it simply remains for this problem to be resolved. Basically all cfm templates are returning an http 500 error when called from a virtual host. I've already edited jrun.xml to

RE: Randomizing Query Results

2002-10-08 Thread kpeterson
oracle uses the DBMS_RANDOM package to create random numbers. Kore Peterson Database Development Specialist SEH - Minneapolis 612.758.6739 David

Re: DaysInMonth problem?

2002-10-08 Thread Thane Sherrington
At 11:31 AM 08/10/02 -0300, Thane Sherrington wrote: When I use the DaysInMonth expression for September - DaysInMonth(9) - I get 31. That isn't right. Is this a problem with my computer, or is there a bug in this expression? Ok, I see it. I just put the month and not the entire date. I will

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Dave Wilson
In case this was missed from the other thread CFMX - I've never seen anything so unstable, here are my findings, or rather, here is what led me to my problem(s). Note: This is a development machine Amalgamating two similar threads. OK here is the sequence of events which have led me to where I

RE: DaysInMonth problem?

2002-10-08 Thread Thomas Chiverton
When I use the DaysInMonth expression for September - DaysInMonth(9) You need to pass a full date/time object, or string thereof. Tom Chiverton You don't have to be a mad scientist to believe in ColdFusion ~| Archives:

Re: Randomizing Query Results

2002-10-08 Thread Jochem van Dieten
David Jones wrote: What database does this work on? At least on PostgreSQL. I should have specified what database I am using. I am developing for Oracle 8i. I presume you mean it doesn't work ;) You could try; SELECT * FROM ( SELECT *, Random() AS sortfield

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Kola Oyedeji
Tom I think your sig' is Ironic ;-) You don't have to be a mad scientist to believe in ColdFusion but If you were you could help fix it! Kola ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: SQL question

2002-10-08 Thread Boardwine, David L.
select * from Mytable where datepart(month,MyDateField) = mymonthnumber -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 9:49 AM To: CF-Talk Subject: SQL question Is there a way to use a Select query to get just the month out of a

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Stacy Young
That's a pretty good rule of thumb. As for CFMX...We've focused on using it for new projects...where any issues that come up along the way would be easier to squash. As for opening an incident...they won't charge u if it's a bug. Happened twice for us...seems pretty fair. Stace -Original

RE: CFFORM validation issue

2002-10-08 Thread Mike Townend
Yes... In CF5 when a CFForm function was called then all the javascript was set to the top of the page.. Now it is referenced with the following by default... SCRIPT LANGUAGE=JavaScript TYPE=text/javascript SRC=/CFIDE/scripts/cfform.js/SCRIPT So for it now to work you need an IIS virtual

RE: Headers are showing up on pages at random....

2002-10-08 Thread Mike Townend
Also check to see if you are using CFForm or CFHTMLHead on that page as those tags will randomly show the same symtoms... And that does nto require IE 6 to see the bug If you are using those tags... When the error comes up view the source... When we have that here the JS/Text was being

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread jremus-lists
I've been staying out of this thread, but this (paying ahead for support) is an industry standard at this point in life. Microsoft does it, and even if they were the only ones, it would be quite trend-setting, but they're not. And any business that is run like a business (or apply this to IT

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Mark A. Kruger - CFG
ditto - we have almost the exact same experience Rob. Including some of the same WDDX problems. We are only recommending CFMX for low volume intranet sites or niche sites with little load. AND we are really only hosting applications ON cfmx that have been built FOR cfmx - rather than porting

RE: JSpell

2002-10-08 Thread Pete Freitag
Randell, I want to clarify how JSpell and how CFX_JSpellCheck (our product, cfdev) work. JSpell is not entirely JavaScript, it does the spell checking on the server side with a Servlet. The user interface for the spell checker is JavaScript and HTML. CFX_JSpellCheck works in a similar way, the

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Thomas Chiverton
Tom I think your sig' is Ironic ;-) I think work would get upset if I continued it with ... but it helps :-) Tom Chiverton You don't have to be a mad scientist to believe in ColdFusion ~| Archives:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jesse Noller
But Matt, you skipped over the part where I mentioned trends, firestorms, and escalation through support. If you have 1 user, having a problem, that does not contact support, the likelihood of the problem being looked at, much less resolved, is minimal. Then, you have 50 users, all having the

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jesse Noller
Jesse, what Lee is trying to say is that MM should help him with the problem, without him having to pay extra for tech support. He is *not* paying if the problem is with CFMX! Not. Paying. I had a problem getting CFMX to run on my development system - the services wouldn't start when my

Roommate needed for DEVCON

2002-10-08 Thread Brendan O'Hara
Hello all, Just wanted to see if anyone was looking for a roommate for Devcon. I am interested in staying at the Dolphin so I can be near all the action but am looking to split the costs with someone if possible. If anyone has an interest please respond to me off-list at [EMAIL PROTECTED]

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
LOL.. So true! | -Original Message- | From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, October 08, 2002 7:51 AM | To: CF-Talk | Subject: RE: LONG time CF Supporter - About ready to dump CF! | | | Tom I think your sig' is Ironic ;-) | | You don't have to be a mad

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
Scott, You're on track to my point (and if we need to take this to CF-Community.. No problem. I'll repost there).. However, doing what you say to do here (post to a more efficient tool for bug reporting) is really not much better than what's happening now. You'll post, then wait, and wait,

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Matt Liotta
That is all great in theory, but you need to take into account the user in question. While some of the people complaining may be the only ones who have mentioned the problem so far, they may be representing many more users e.g. someone who hosts CFMX applications. Matt Liotta President CEO

Re: SQL question

2002-10-08 Thread Jochem van Dieten
Thane Sherrington wrote: Is there a way to use a Select query to get just the month out of a date in a SQL query? I have a database that has a date field in it (so 04-10-02) and I want to select all the records from a specific month. To get a different month, change the number: SELECT *

Anyone seen this error??

2002-10-08 Thread Bud
PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag It is being caused by a simple query: SELECT max(Cust_ID) as maxid FROM Customers The server is CF 4.01 and supposedly the MDAC version is current. I'm waiting on an answer what database is running, but I presume it's Access or SQL Server.

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Dave Wilson
See Jesse, Many of us such as Lee and myself have been working with CF for a long long time and we love the product, etc etc. When we run into problems, we take every step we can think of to try and resolve the issue, not just for our own benefit, but for the benefit of the product itself. When

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jesse Noller
How do you sort the white noise from the actual data Matt except by giving users with issues a clearly defined avenue to getting their issues addressed? Jesse Noller [EMAIL PROTECTED] Macromedia Server Development -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent:

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Lee Fuller
No offense Josh... But I KNEW someone was going to pipe in with But Micro$oft does it! grin Hitler did it too. But doesn't mean I'm building gas chambers (uh er.. rather) showers for my clients. Forgive the radical reference. But I've never been one for well they do it.. so I should too!

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Jesse Noller
snip I'll BE the guinea pig.. No problem! But I need the total responsiveness from MM to make it work. And I'm completely willing to share my experiences and solutions with the CF community, so that they can benefit from it. But.. (And there's ALWAYS a BIG BUT(T) somewhere! grin)

RE: Anyone seen this error??

2002-10-08 Thread Dave Wilson
Hey Bud, I'm almost certain that's an MDAC-related issue. Do you know the order of installation of CF4.01 and MDAC on the server? I remember CF4.01 was susceptible to this. The MDAC *must* be installed after installing CF. Also need to check the service packs - I'm presuming it's an NT4

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Mark A. Kruger - CFG
Jesse, Pardon me for asking but... how does MM handle a situation where something worked correctly on CF 5, but now is failing on CFMX? Is that CFMX? Or do I pay to have MM tell me I need to re-write code? This connection reset by peer JDBC socket error that's been troubling us (notice I did

  1   2   3   4   >