Re: CFGurus: A CFQuery and database question

2000-12-29 Thread Hassan Khawaja
You need to put an onChange attribute in your SELECT tag, so that whenever you select an option from the list, that name/value pair is submitted to whatever you specify in your onChange event. function doSub{ this.form.submit; return true; } klm ijk Hope that helps Hassan Khawaja www.com

Re: CFGurus: A CFQuery and database question

2000-12-29 Thread Al Musella, DPM
First off, the select should be generated dynamically something like: SELECT distinct town FROM GetResults order by town #Town# the next page just looks up the town info: SELECT town, organization, headline, body, event_date FROM GetResults WHERE town = #town#

Re: CFGurus: A CFQuery and database question

2000-12-29 Thread paul smith
Well, you can't have ALL towns selected. You need a at the end. And try: SELECT town, organization, headline, body, event_date FROM GetResults WHERE town = '#Form.SelectName#' best, paul At 08:17 PM 12/29/00 -0500, you wrote: >ok all you CFMasters.I think i have a relatively si

RE: storing images in SQL database

2000-12-29 Thread Brendan Avery
if the purpose of storing them in the db is for "protection" or regulating access to specific images, a better way is to store the images in a private directory and use shoot them out. of course, for this you'll need a gateway page like "getimage.cfm" and usually wind up passing a session to

CFGurus: A CFQuery and database question

2000-12-29 Thread C Kong
ok all you CFMasters.I think i have a relatively simple CF question concerning databases and CFQuery. But for the life of me am stumped (4 hours to put it exactly).  I am trying to build a page with a pull down select menu of different towns in the state of connecticut.  When the user sele

RE: OT- HTH

2000-12-29 Thread Duane Boudreau
> Its not something you'd do for the halibut. > > (ducking and running). That depends on how nice you are to the halibut ;) Duane > Chaos, panic, and disorder - my work here is done. > -- > > Duane Boudreau wrote: > > > > Sorry I have to. Ever held a halibut? > > > > Duane > > ~~

RE: Forfields & WDDX

2000-12-29 Thread paul smith
Well, I rolled my own structure: #aWDDXpacket# and I find that "email" as the name of a form field is apparently a reserved word. That is, any value entered into the form field named "email" was output as "" in #aWDDXpacket#. Changing the name to e_mail cured the problem. Is t

RE: storing images in SQL database

2000-12-29 Thread Dick Applebaum
I started a thread with the same question a few weeks back. You can do it, but others convinced me that there is little to be gained and a lot of overhead in the db. The net... you are better off storing the files in the file system (that's what the db does anyway, only less efficiently). HTH

RE: network drives and cfdirectory

2000-12-29 Thread Garza, Jeff
Make sure that CFAS is running under an account that has access to those resources. You can check this by looking at the properties of CFAS in the Services Control Panel. By default CFAS runs under the system account which does not have network access to mapped drives. Jeff Garza Web Develope

cfstoredproc problem

2000-12-29 Thread S R
I have been at this for the past 35 minutes and I just can't figure it out. This cfstoredproc just isn't working. I've tested the actual stored procedure on SQL Server by placing some actual values in the stored procedure and it worked. But when I try to use this cfstoredproc to do the stored

RE: [RE: SNMP Tag?]

2000-12-29 Thread lsellers
> My limited knowledge of SNMP is that it's most commonly run over UDP, > although it can also use TCP. Probably depends on the particular > device as > to whether it listens for SNMP over TCP. Well, I do have a UDP version, but it's never been released. Internal suff. No docs, etc. Only for th

RE: storing images in SQL database

2000-12-29 Thread Rick Lamb
This is also how I've always done it. But I'm curious if there is a way to store the actual image in the database. I was thinking maybe I could use one of CF's binary functions to convert it to binary, then to wddx or store it directly in the database as binary. If it wasn't much of a performance

network drives and cfdirectory

2000-12-29 Thread Alexander Apartsev
I am trying to access an network drive through CFDIRECTORY. I've tried "\\Myshare\somedir" as well as the drive letter, all to no avail. Is it possible at all? Thanks for any suggestions. Alexander Apartsev just me design [EMAIL PROTECTED] ~ Paid Sponsorship ~ Get Your

Re: storing images in SQL database

2000-12-29 Thread Jennifer Larkin
Quoting Rick Lamb <[EMAIL PROTECTED]>: > Could you guys give me suggestions for the best way to store images in > a > database. I usually just store the image name in the database. If necessary you could also store the path to the image in the database. Other than that I don't know what you ne

Re: Forfields & WDDX

2000-12-29 Thread paul smith
Thanks! I've already done it. best, paul At 05:32 PM 12/29/00 -0500, you wrote: >What you could do is convert the formfields to a struct (or a query set, if >that suits you) by assigning key values or column values whilst looping over >the form.fieldnames list. Then WDDX-ify the resulting dat

Re: OT- HTH

2000-12-29 Thread Jon Hall
Could you repeat that? I'm hard of herring... jon - Original Message - From: "Larry C. Lyons" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, December 29, 2000 2:44 PM Subject: Re: OT- HTH > Its not something you'd do for the halibut. > > (ducking and running). > > l

storing images in SQL database

2000-12-29 Thread Rick Lamb
Could you guys give me suggestions for the best way to store images in a database. Thanks, Rick ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM / 20 GB HD / 24/7/365

Re: [RE: SNMP Tag?]

2000-12-29 Thread Jim McAtee
My limited knowledge of SNMP is that it's most commonly run over UDP, although it can also use TCP. Probably depends on the particular device as to whether it listens for SNMP over TCP. Jim - Original Message - From: "lsellers" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent

Re: Forfields & WDDX

2000-12-29 Thread Jamie Keane
What you could do is convert the formfields to a struct (or a query set, if that suits you) by assigning key values or column values whilst looping over the form.fieldnames list. Then WDDX-ify the resulting dataset and you're good to go. :) I wrote an inhouse custom tag that does the dirty work

RE: Forfields & WDDX

2000-12-29 Thread paul smith
Thanks! I was thinking it would be easier in 4.5 than 4.0.1 I'll have to settle for the 4.0.1 version for now. best, paul At 04:53 PM 12/29/00 -0500, you wrote: >In 4.5, you get a structure called "form" that you can do this with: > > > >Then you can save that string, aWDDXpacket, as a client

RE: Macromedia and CF

2000-12-29 Thread Dave Watts
> Thanks - I think I'll order Flash/5 for now. BTW - sorry to > be a pest - but do you have any information that you could share > regarding Harpoon? My understanding (which may be totally wrong > ) is that it is a set of custom tags that integrate CF and > Flash (maybe with ActionScripts?)

RE: Forfields & WDDX

2000-12-29 Thread Hal Helms
In 4.5, you get a structure called "form" that you can do this with: Then you can save that string, aWDDXpacket, as a client variable. Hal Helms == See www.ColdFusionTraining.com for info on "Best Practices with ColdFusion & Fusebox" training, Jan 22-25 == -Original Message- From: p

Forfields & WDDX

2000-12-29 Thread paul smith
What's a slick way to put all FormFields (name & value) into WDDX for placement into a client variable? best, paul ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM /

RE: [RE: SNMP Tag?]

2000-12-29 Thread lsellers
> I am interested in Lewis Sellers' CFX_TCPClient. I wonder if one couldn't > write an SNMP wrapper in the form of a CFML tag. Of course, a fairly good > working knowledge of SNMP would still be required. That is pretty much the entire point of the tag. :) That is, to allow someone to write cust

Re: OT- HTH

2000-12-29 Thread Larry C. Lyons
Its not something you'd do for the halibut. (ducking and running). larry -- Larry C. Lyons ColdFusion/Web Developer EBStor.com 8870 Rixlew Lane, Suite 201 Manassas, Virginia 20109-3795 tel: (703) 393-7930 x253 fax: (703) 393-2659 http://www.ebstor.com http://www.pacel.com email: [EMAIL PROTECT

Re: Macromedia and CF

2000-12-29 Thread Larry C. Lyons
Howie, FWIW, the DCCFUG had a presentation on integrating Flash 5, CF and WDDX last September or so. You can get the presentation at http://www.figleaf.com/figleafhome/cfug/cfugsep2000.zip. -- Larry C. Lyons ColdFusion/Web Developer EBStor.com 8870 Rixlew Lane, Suite 201 Manassas, Virginia 2010

CFSOUTH earlybird ends soon - sign up now.

2000-12-29 Thread Michael Smith
FYI CFSOUTH earlybird ends soon - sign up now. Winter too cold for ColdFusion? :-) Check out CFSOUTH http://www.cfsouth.org/ a one day ColdFusion conference in Orlando, Florida Saturday February 3rd 2001. Hear about the latest in CF techniques and innovations from a wide-range of speakers.

Re: [RE: [RE: SNMP Tag?]]

2000-12-29 Thread Alex
here are some perl scripts http://www.dnaco.net/~billyemu/mrtg/index.html "Benjamin S. Rogers" <[EMAIL PROTECTED]> wrote: Easier said than done. :) We recently played with MRTG and some of the extensions that are part of the distribution. It was easy enough to get MRTG up and running: we had

Re: Unsubcribe

2000-12-29 Thread Daniel H
use the bottom link on the email > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists select Cf-talk link then type in your email address in the box provided and select the Unsubscribe radio button below and hit submit.. - Original Message - From: "Jeremy Toevs" <[EMAIL P

RE: Unsubcribe

2000-12-29 Thread Simon Horwith
read the bottom of your email > Simon Horwith > Allaire Certified ColdFusion Instructor > Certified ColdFusion Developer > Fig Leaf Software > 1400 16th St NW, # 220 > Washington DC 20036 > 202.797.6570 (direct line) > www.figleaf.com > -Original Message- From: Jeremy Toevs [mailto:[EM

Unsubcribe

2000-12-29 Thread Jeremy Toevs
Anyone know how to unsubcribe to this list? Thanks ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM / 20 GB HD / 24/7/365 Tech Support Visit SoloServer, https://s

Re: OT- HTH

2000-12-29 Thread Jon Hall
1 definition found >From Jargon File (4.2.0, 31 JAN 2000) [jargon]: HTH // [Usenet: very common] Abbreviation: Hope This Helps (e.g. following a response to a technical question). Often used just before {HAND}. See also {YHBT}. http://projects.ghostwheel.com/dictionary?define=HTH hth :

RE: [RE: SNMP Tag?]

2000-12-29 Thread Benjamin S. Rogers
Easier said than done. :) We recently played with MRTG and some of the extensions that are part of the distribution. It was easy enough to get MRTG up and running: we had it monitoring the throughput on one of our Cisco routers and dumping the data to the RRDTool. However, we wanted to monitor ba

RE: Just signed up for the Developer exam

2000-12-29 Thread William J Wheatley
Take the tests on www.brainbench.com but yes the tests are a pretty paultry attempt to judge your level of skill so its pretty easy, you should do fine but just try brainbench.com test if you can pass that with master rating you should be ok for the allaire exam Bill Wheatley Director of Develop

RE: Just signed up for the Developer exam

2000-12-29 Thread Phoeun Pha
Bah, u dont really need to study much. most of the exam is based on knowledge (u know, like u just look up the bold words in history class and define them). they don't really test your depth. Got that info from CF developer's journal -Original Message- From: Lee Moore [mailto:[EM

Dynamic Visio charts and cf

2000-12-29 Thread David Livingston
Has anyone out there ever seen or built Visio charts dynamically with CF? Thanks in advance, Dave Livingston ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM / 20 GB HD

CF 4.0.1 and Oracle 8i

2000-12-29 Thread dlrice
I am trying to get return codes (as output parameters, per docs) from Oracle 8i using CFSTOREDPROC in CF 4.0.1 (Professional edition). I keep getting the same error code back, no matter what test data I send Oracle. The strange thing is that when I run the same test scenarios in SQL Plus, I get

RE: OT- HTH

2000-12-29 Thread Duane Boudreau
> -Original Message- > From: lsellers [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 29, 2000 1:01 PM > To: CF-Talk > Subject: RE: OT- HTH > > > > > Hope This Helps. :-) > > Oooh. Always thought it mean "Hold That Halibut." > > Um, don't ask. Sorry I have to. Ever held a halibut

Re: Macromedia and CF

2000-12-29 Thread Howie Hamlin
Thanks - I think I'll order Flash/5 for now. BTW - sorry to be a pest - but do you have any information that you could share regarding Harpoon? My understanding (which may be totally wrong ) is that it is a set of custom tags that integrate CF and Flash (maybe with ActionScripts?) Thanks, Howi

RE: OT- HTH

2000-12-29 Thread lsellers
> Hope This Helps. :-) Oooh. Always thought it mean "Hold That Halibut." Um, don't ask. --min ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600 / 128 MB RAM / 20 GB HD / 24/7/36

Re[2]: Macromedia and CF

2000-12-29 Thread listmb
You can also integrate a Macromedia product called Generator which offers database integration with Flash 5. I am using an alternate product called swift-generator so users can upload their own graphics files that will be incorporated directly into the flash movies. Cold Fusion offers some tags

RE: Macromedia and CF

2000-12-29 Thread Dave Watts
> I have some newbie questions regarding Macromedia and CF. I > asked Macromedia pre-sales to clarify some things but their > response was mostly links to product information on their > site (IOW - useless). Anyway, what I want to do is: integrate > Flash with CF. Both for data retrieval/displ

schedule problem - never mind

2000-12-29 Thread Jason Egan
never mind - I discovered there was a dns problem on that box... production of all places... and when I replaced the name with ip address we worked great! sorry... je ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free

cfschedule problems

2000-12-29 Thread Jason Egan
I hate to beat a dead horse, but I am confused here... I have 5 sun boxes... all set up the same (as far as I can tell)... I can run a template directly by URL in the browser and using schedule in the admin on pre-production boxes... np, but when I use the same scheduled process on the production

New online class

2000-12-29 Thread Hal Helms
I've finished another online class--this time on integrating JavaScript and ColdFusion. The URL is www.halhelms.com/javascript. The class is free. Hal Helms == See www.ColdFusionTraining.com for info on "Best Practices with ColdFusion & Fusebox" training, Jan 22-25 == ~ Paid Sponso

RE: verity and oracle: II

2000-12-29 Thread Dave Watts
> True. But my testing reveals SQL7 FULL TEXT is faster than > the current Verity in CFAS (for searching database data, don't > know about searching files). I'm hoping K2 in the new CFAS will > be better. That won't help too much with Oracle, will it? You'd have to use SQL Server then as an O

Re: [RE: SNMP Tag?]

2000-12-29 Thread Alex
http://www.mrtg.org [EMAIL PROTECTED] (lsellers) wrote: > > Is anyone aware of a CF tag that can communicate with an SNMP enabled > service? I really just need basic read-only capability for device > monitoring, such as reading traffic throughput from a router or switch, or > retrieving perfor

RE: SNMP Tag?

2000-12-29 Thread lsellers
> > Is anyone aware of a CF tag that can communicate with an SNMP enabled > service? I really just need basic read-only capability for device > monitoring, such as reading traffic throughput from a router or switch, or > retrieving performance metrics from some other services. Well, assuming th

Re: why doesn't this query work

2000-12-29 Thread paul smith
How many guesses do you want? ;-) At 08:49 AM 12/29/00 -0800, you wrote: >Do they send out some replies that >they hope DON'T help? ~ Paid Sponsorship ~ Get Your Own Dedicated Win2K Server! Instant Activation for $99/month w/Free Setup from SoloServer PIII600

RE: Macromedia and CF

2000-12-29 Thread LKHaas
I know that Ultradev is supposed to be the big integrator for CF -- Harpoon is still in the works at Figleaf -- but I was searching around for some custom tags for my email dilemmas and came upon a tag at http://www.cfscripts.com/ called CF_Flash5. Looks useful as well. Lisa -Original Messa

Re: Macromedia and CF

2000-12-29 Thread Adrian Cooper
- Original Message - From: "Dick Applebaum" <[EMAIL PROTECTED]> Sent: Friday, December 29, 2000 4:41 PM > I, too am greatly interested in this... especially Flash forms to CF > app interface. > > The "cool looking menus" are an added bonus to someone (like me) with > no graphic design a

RE:

2000-12-29 Thread Christopher Olive, CIO
you can't use SELECT * in a subquery. ideally, it should return 1 value (such as product_id or some such) to use in your where clause. think of it as a rvalue in a WHERE clause. you're also missing a modifier (AND/OR) between your sub-selects. ideally, it should look something more like this:

Just signed up for the Developer exam

2000-12-29 Thread Lee Moore
I just signed up for the Allaire certified ColdFusion Developer exam and I was wondering where would be a good place to look for rescources in preparing for it. I have taken Fast-Track to CF as well as the Advanced CF course and have been programming with CF and SQL Server doing small projects

Re: why doesn't this query work

2000-12-29 Thread David Shadovitz
> This is a documented, well-known MDAC bug with Win2K SP1. > Dave Watts OK, I'll stop posting erroneous replies (for a while). -David P.S. Why do people use HTH at all? Do they send out some replies that they hope DON'T help? ~ Paid Sponsorship ~ Get Your Own Dedicated

OT: New book available

2000-12-29 Thread Ben Forta
FYI, my new book "Sams Teach Yourself ColdFusion Express in 24 Hours" (coauthored by Sue Hove) is now available. Info at http://www.forta.com/books/0672316625/. Title is on Amazon.com at http://www.amazon.com/exec/obidos/ISBN=0672316625/benfortascoldfusA/. Although this book is on CF Express 4.5

Re: Macromedia and CF

2000-12-29 Thread Dick Applebaum
I, too am greatly interested in this... especially Flash forms to CF app interface. The "cool looking menus" are an added bonus to someone (like me) with no graphic design ability. The only related harpoon link I found is: http://www.maccentral.com/news/0011/06.harpoon.shtml HTH Dick

Re: why doesn't this query work

2000-12-29 Thread David Shadovitz
Chris, This works for me, using CF Express 4.0 and with an ODBC MS Access datasource: select FirstName+' '+LastName as Name from... I was thinking of an insert statement when I wrote that the value must match the db field datatype. Sorry about that. -David On Fri, 29 Dec 2000 09:39:44 -050

RE: Using XML to create extremely "brandable" applications

2000-12-29 Thread Brian Bray
Basically I want most every peice of HTML code to be customizable. My application is very data-oriented and therefore displaying 100 items on the screen could mean a couple hundred calls to the custom tag. I actually have it working fairly efficiently. On extreemly large pages it only adds abo

cf-talk@houseoffusion.com

2000-12-29 Thread Dan Sullivan
All, I'm trying to get the correct syntax for a nested query but I keep getting ODBC errors. Below are the two select statements that I am trying to combine together. Any hints would be appreciated. This code below obviously doesn't work, but the sub select statements work. SELECT * FROM prod

Macromedia and CF

2000-12-29 Thread Howie Hamlin
I have some newbie questions regarding Macromedia and CF. I asked Macromedia pre-sales to clarify some things but their response was mostly links to product information on their site (IOW - useless). Anyway, what I want to do is: integrate Flash with CF. Both for data retrieval/display and edit

RE: verity and oracle: II

2000-12-29 Thread paul smith
True. But my testing reveals SQL7 FULL TEXT is faster than the current Verity in CFAS (for searching database data, don't know about searching files). I'm hoping K2 in the new CFAS will be better. best, paul At 10:33 AM 12/29/00 -0500, you wrote: >Then, when you search across that index wit

RE: verity and oracle: II

2000-12-29 Thread Dave Watts
> Thanks to Dave Fauth and Stephen Moretti for their suggestions. > > I don't think I articulated the problem properly so I'll try > again. No, actually, you articulated the problem well enough. Steven Moretti gave you the answer, though. I'll give it again, in slightly longer form. When you u

RE: why doesn't this query work

2000-12-29 Thread Dave Watts
> I'm setting up a new computer (Win 2K Professional) and some > queries that work on other computers do not work on this one. > The problem queries involve concatenation or setting constants > in the query. The problem happens with Access 97 and 2000 > databases. Running CF 4.5.1 Professional

Re: Email Type Detection

2000-12-29 Thread Chris Terrebonne
You will need to find a program (script, cfx, com) that will allow you to send messages as multipart/alternative. That way you can set a text/plain part and a text/html part. This will allow you to send a message using both text and html and the mail client will determine which it is capable of

RE: Email Type Detection

2000-12-29 Thread Chris Montgomery
Lisa, While I'm not an expert on email protocols, my guess is that the answer will be 'you can't tell, unless you ask them.' Even if someone's email program can handle HTML emails, you can't know whether they prefer HTML or plain text without asking them. Most web sites that offer opt-in email

Re: Email Type Detection

2000-12-29 Thread Howie Hamlin
The only way I know of is to read the X-Mailer header if it exists. Some mailers (like Eudora or Outlook Express) add this heqader to mail. Here is an example: X-Mailer: Microsoft Outlook Express 5.50.4133.2400 HTH (hope this helps ) Regards, Howie - Original Message - From: <[EMAIL

Re: OT- HTH

2000-12-29 Thread Len Conrad
>Okay, I've seen a million people use HTH in their signatures or >sign-offs. I can't figure it out. www.acronymfinder.com IKTH (I KNOW this helps) :)) Len http://BIND8NT.MEIway.com : Binary for ISC BIND 8.2.3 T9B for NT4 & W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-spam mail g

Email Type Detection

2000-12-29 Thread LKHaas
Does anyone know how one would go about finding out whether a user's email accepts html mail or just plain text? I know that some companies have incorporated this into their mass emails but I can't figure it out for the life of me. Thanks. Lisa ~ Paid Sponsorship ~ Ge

Re[2]: caching problem? Session vars

2000-12-29 Thread listmb
Thanks Kym for your suggestion. You wouldn't believe what I had to do to get this to work: I had to write a wrapper around the code I wanted protected that called the code with domain.com.au/page.cfm?x=#rand()# with a cflocation tag. This even works when the IE setting is at "Check for newer ve

RE: why doesn't this query work

2000-12-29 Thread Christopher P. Maher
> 1. 'X' is a string, 0 is a number. The value you use must match Field1's > datatype. Field1 is a field I'm defining in the query. It does not exist in the database. > 2. In Access, both the "+" and "&" are concatenation operators; they > differ in that the "+" will *add* values if either oper

RE: JS/CSS question

2000-12-29 Thread Stolpner, Richard J
You can change the value of the 'className' property in IE anyway. For example: untitled .Text { font-family : Arial, Helvetica, sans-serif; font-size : 10pt; } .GrayText { font-family : Arial, Helvetica, sans-serif; font-size : 10pt; color : 808080; cursor : hand;} .BoldTe

Re: OT- HTH

2000-12-29 Thread Dick Applebaum
Also, TIA = Thanks In Advance not your Spanish aunt (my first impression) HTH Dick At 8:48 AM -0500 12/29/00, Guy J. McDowell wrote: >Okay, I've seen a million people use HTH in their signatures or >sign-offs. >I can't figure it out. I guess I'll just have to return my Mensa >membership ca

Re: OT- HTH

2000-12-29 Thread Jamie Keane
Hope This Helps. :-) -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.849.7771 x 228 Voice 704.849.9291 Fax -Original Message- From: Guy J. McDowell <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Date: Frida

RE: OT- HTH

2000-12-29 Thread Adkins, Randy
HTH = Hope This Helps -Original Message- From: Guy J. McDowell [mailto:[EMAIL PROTECTED]] Sent: Friday, December 29, 2000 8:48 AM To: CF-Talk Subject: OT- HTH Okay, I've seen a million people use HTH in their signatures or sign-offs. I can't figure it out. I guess I'll just have to retu

CF -- NT -- Connections to Databases

2000-12-29 Thread eisensmi
Does anyone know NT well enough to tell me how many open database connections exist at any point between Cold Fusion and our Unix database server? Certainly there is something, somewhere to find this information out. Then, I also want to have a way on the NT-side to kill "hung" database connectio

OT- HTH

2000-12-29 Thread Guy J. McDowell
Okay, I've seen a million people use HTH in their signatures or sign-offs. I can't figure it out. I guess I'll just have to return my Mensa membership card... Please tell me what it means, I get a headache when I don't know everything! ;0) Yours In Conservation, Guy J. McDowell, Webmaster The On

verity and oracle: II

2000-12-29 Thread Trusz, Andrew
Thanks to Dave Fauth and Stephen Moretti for their suggestions. I don't think I articulated the problem properly so I'll try again. Simply put, Oracle stores all tables in a single database. Schemas are used to internally keep track of which tables belong together. What we think of as "database

SNMP Tag?

2000-12-29 Thread Jim McAtee
Is anyone aware of a CF tag that can communicate with an SNMP enabled service? I really just need basic read-only capability for device monitoring, such as reading traffic throughput from a router or switch, or retrieving performance metrics from some other services. Thanks, Jim ~

Re: WAY OT: Smackdown

2000-12-29 Thread Erki Esken
Oh man. It's so easy to cheat and get in that top 10 :P Erki - Original Message - From: "Bud" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, December 28, 2000 10:47 PM Subject: WAY OT: Smackdown > OK, and just what is the catch with smackdown? I've wasted a whol

Verity Search Supported application/softwares

2000-12-29 Thread Tan Siew Ling
Hi, Does any one of you guys know whether Verity Search in ColdFusion is able to search: 1. Documents created in Lotus Notes databases (for example, Information Explorer, Call Report System, Lotus Notes Folders, Talkshop) 2. Microsoft NT file system (MS NT 4.0 and above) on the LAN Thank you.

RE: This is weird

2000-12-29 Thread Johan Coens
You forgot the quotes, so use SQL = "INSERT INTO CommunityEvents (CommunityEventID, CommunityEventName, > LastUpdate) VALUES('HPRO-12-28-2000', 'retreat', {ts '2000-12-28 18:42:56'})" instead of > SQL = "INSERT INTO CommunityEvents (CommunityEventID, CommunityEventName, > LastUpdate) VALUES(HPRO