[ cf-dev ] Verity in Clustered Env.

2003-09-15 Thread Lovelock, Richard J
Does anybody know if I put a mapping on a slave server (two server set-up) to point to the verity index on the master server whether this will have any/a noticable impact on performance of the master server? Does it impact the performance at all or is it just using the index from the master and

RE: [ cf-dev ] Dreamweaver MX 2004

2003-09-15 Thread Simon Horwith
I believe Ctrl. + Space is the closest thing to a funcion insert hot-key. ~Simon Simon Horwith CTO, Etrilogy Ltd. Member of Team Macromedia Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer CFDJList - List Administrator

Re: [ cf-dev ] ValueList

2003-09-15 Thread Tom Smith
it rocks my world when I use it!:) - Original Message - From: Adrian Lynch [EMAIL PROTECTED] To: Cfug Dev List (E-mail) [EMAIL PROTECTED] Sent: Friday, September 12, 2003 4:27 PM Subject: [ cf-dev ] ValueList Isn't ValueList() a bloody great function? I've always known about it

[ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Rich Wild
quick question, if I pass a query to a function like thus: myQuery = querynew(line_id); functionUseQuery(myQuery); is that query passed as a duplicate or by reference? I can't remember. ta muchos. --- Rich Wild Senior Web Developer

RE: [ cf-dev ] Verity in Clustered Env.

2003-09-15 Thread Snake Hollywood
It will affect performance because u are accessing files over a network after all, which is slower than on the same machine. Shouldn't really make that much difference unless it gets searched a lot tho. -Original Message- From: Lovelock, Richard J [mailto:[EMAIL PROTECTED] Sent: 15

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Rich Wild
ah, its ok, did a wee test in the end. fyi, they're passed as *reference*, as the following shows: cfscript myQuery = querynew(line_id); queryaddrow(myQuery); querysetcell(myQuery, line_id, 1); function changeQuery(QueryIn) { QuerySetCell(QueryIn, line_id, 2, 1); } /cfscript cfdump

RE: [ cf-dev ] Dreamweaver MX 2004

2003-09-15 Thread Snake Hollywood
Ah ha!!! Now why is that so well hidden, and why isn't there a right click option for it. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 09:12 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Dreamweaver MX 2004 I believe Ctrl. + Space is

RE: [ cf-dev ] Dreamweaver MX 2004

2003-09-15 Thread Robertson-Ravo, Neil (RX)
I also created an Extension for DWMX which you can get at the exchange which adds Right-Click Insert Epxression cababilities; its also fully extensible to any language you want to insert an expression for. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED] Sent: 15

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Aidan Whitehall
Whilst on the subject, I usually store application variables as structures and was wondering how you correctly lock a reference to one of those application variables. If you do this: cflock scope=application type=readonly timeout=5 cfset database = application.database /cflock cfquery

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Robertson-Ravo, Neil (RX)
why would you want to do a StructCopy? surely... application.database[] or application.database.foo would do? I think in these situations its probably best to throw them into the request scope. -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED] Sent: 15 September 2003

[ cf-dev ] Help - JRUN at 100%

2003-09-15 Thread Giles Roadnight
Server was slow today so I took a lokk at the processor utilisation and JRUN was at 100%. I stopped all CF services and processor usage returned to a normal level. I re-started the services one by one and when I re-started the CF application service the server re-started? What is going on. Can

Re: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Tom Smith
you could always use duplicate()... - Original Message - From: Aidan Whitehall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 11:42 AM Subject: RE: [ cf-dev ] complex variables passed to functions as... Whilst on the subject, I usually store application

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Aidan Whitehall
why would you want to do a StructCopy? surely... application.database[] or application.database.foo would do? Yeah, if you only wanted to access one of the variables in the structure, but there are several instances where I want a handful. Rather than just assign those to a range of local

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Robertson-Ravo, Neil (RX)
Ah, gotcha...did wonder :-) -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 13:22 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] complex variables passed to functions as... why would you want to do a StructCopy? surely...

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Aidan Whitehall
you could always use duplicate()... Yeah, I was really just asking to see if it was actually needed or not. My guess is yes... -- Aidan Whitehall mailto:[EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental Ltd +44 (0)1695 51775 Queen's Awards Winner 2003

Re: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Tom Smith
Personally I do use duplicate when making a copy of any complex variable! - Original Message - From: Aidan Whitehall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 1:23 PM Subject: RE: [ cf-dev ] complex variables passed to functions as... you could always use

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Rich Wild
Aidan, I usually do what you're doing, but I'll just duplicate() so that I have a fresh local copy, and then update the data in that and commit changes back to shared scope afterwards simply by duplicating back and overwriting that shared scope struct. eg, I'll store everything in session.user

RE: [ cf-dev ] complex variables passed to functions as...

2003-09-15 Thread Aidan Whitehall
Aidan, I usually do what you're doing, but I'll just duplicate() so that [snip] Ah, cule -- thanks for the confirmation. -- Aidan Whitehall mailto:[EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks Environmental Ltd +44 (0)1695 51775 Queen's Awards Winner 2003

[ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Dray
People, One of the sites I am working on gets its data 'scraped' for use in a piece of software developed by a competitor. They use an http get or post from an end users machine so it's impossible to tell the software apart from any other user. Has anyone here any advice on what methods to use

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
- keep changing the design (or just HTML) so that they have to change their parsing code - begin legal action if you can prove the data is yours. #1 is most likely to be effective, they'll get tired of having to change their code. -Original Message- From: Peter Dray [mailto:[EMAIL

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
Going just on what you posted Would it be possible to do a check on CGI.HTTP_REFERER contains the current domain name ? So only pages in the site can call subpages and they cannot be called direct ? Or are they just viewing a dynamic page ? that anyone can see ? After all .. file - save as ;)

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Harrison
Try making a graphic on the fly with a special code word in it that they have to enter. When you generate the code word, store it in a server-side session variable which is used to compare the user's input when the form is posted. Deform the graphic as much as possible so that OCR algorithms will

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Aidan Whitehall
One of the sites I am working on gets its data 'scraped' for use in a piece of software developed by a competitor. They use an http get or post from an end users machine so it's impossible to tell the software apart from any other user. If it's impossible to distinguish your competitors

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Johnston
Maybe use cookies? In other words, get and set cookies on the site, and the software *may* not be able to handle the fact that cookies are being used...? Also could use session management in a similar way... Following on from that... another way around it is to obfuscate the URL so that the

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Harrison
So far, as a coder, I know I can get around all these suggestions in an automated process, except for the code word graphic. However, it's not me who's stealing it, so if it is enough to stop the competitor then you will have achieved your goal. - Peter -Original Message- From: Paul

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Dray
Too much pain. We use a clustered environment and get roughly 29,000 searches a day on this site -Original Message- From: Peter Harrison [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 13:47 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Stopping 'db scrapes' Try making a graphic on

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Dray
Rich: - keep changing the design (or just HTML) so that they have to change their parsing code This hasn't stopped them so far, we even went as far as 'randomising' the names of the query parameters used in the search that gets scraped for each visit, and they cracked the formula. Paul:

[ cf-dev ] Mysql gui

2003-09-15 Thread Snake Hollywood
Are there any good free mysql ADMIN tools for windows ? -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Snake Hollywood
We put http_referer check in all our code where we do not people link directly to pages or stealing data. Russ Michaels Macromedia Certified ColdFusion Professional -- Satachi Internet Development t: 0870 7873610 f: 07092 212636 tech support: 0906 960 7800 www.satachi.com Join our ColdFusion

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
This hasn't stopped them so far, we even went as far as 'randomising' the names of the query parameters used in the search that gets scraped for each visit, and they cracked the formula. if your site has a valid copyright statement about the use of the data then probably the only thing you

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Harrison
So, the cluster doesn't support sticky sessions or shared session data (eg. database)? Oh well. It sounds like they're a really dedicated bunch though. Obscurity is not security as they say. Guess you're going to have to take an offensive stance then instead, gather evidence, catch them out red

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
We put http_referer check in all our code where we do not people link directly to pages or stealing data. that only works for browsers that actually pass the http_referer, and not all do. Norton firewalls also scramble the http_referer field so that its garbage and comes out as HTTP_WEFERER,

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
Hmm, Then You are going to look to having some sort of user interaction step That cannot be replicated by a tool (like the password image suggestion) Or as suggested you have session management on the application and you check For that in order to run the search - -Original

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Tom Smith
have you tried mysql cc? you can get it from: http://www.mysql.com/products/mysqlcc/index.html or you could install apache (or other webserver) with php and run myphpadmin: http://www.mysql.com/portal/software/item-59.html hth tom - Original Message - From: Snake Hollywood [EMAIL

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Matt Horn
PHP myadmin Rocks - Original Message - From: Tom Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 3:19 PM Subject: Re: [ cf-dev ] Mysql gui have you tried mysql cc? you can get it from: http://www.mysql.com/products/mysqlcc/index.html or you could

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Tom Smith
I got that wrong - and I use it:) doh... the link is good though! - Original Message - From: Matt Horn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 2:22 PM Subject: Re: [ cf-dev ] Mysql gui PHP myadmin Rocks - Original Message - From: Tom Smith

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Snake Hollywood
You can also block their IP address in IIS Russ Michaels Macromedia Certified ColdFusion Professional -- Satachi Internet Development t: 0870 7873610 f: 07092 212636 tech support: 0906 960 7800 www.satachi.com Join our ColdFusion developer community list send email to: [EMAIL PROTECTED]

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Ian Westbrook
PHP myadmin Rocks seconded Ian W - Original Message - From: Matt Horn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 2:22 PM Subject: Re: [ cf-dev ] Mysql gui PHP myadmin Rocks - Original Message - From: Tom Smith [EMAIL PROTECTED] To: [EMAIL

RE: [ cf-dev ] Mysql gui

2003-09-15 Thread Paul Johnston
Sql yog http://www.sqlyog.com VERY VERY VERY good Paul -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 14:09 To: [EMAIL PROTECTED] Subject: [ cf-dev ] Mysql gui Are there any good free mysql ADMIN tools for windows ? -- **

RE: [ cf-dev ] Mysql gui

2003-09-15 Thread Paul Johnston
Sql yog http://www.sqlyog.com VERY VERY VERY good Oh well... SQLyog stopped being freeware a few months back (worst luck)... http://www.webyog.com/sqlyog/index.html Now you have to pay for it, but imho it's STILL better than PHPMyAdmin (I'm using a free version v3.11 and it's

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
Wtf ? Bad outlook bad bad bad bad -Original Message- From: Paul Fennell [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 14:18 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Stopping 'db scrapes' Hmm, Then You are going to look to having some sort of user interaction step That cannot

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Harrison
... but then all they'd do is get a dial-up account for this. :S That must be pretty valuable content. - Peter Certifiable Professional -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 14:26 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ]

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paolo Piponi
Get legal with them, but first get the proof. Do this, if possible, by planting information (or unique strings). This is what US police do to catch people illegally scanning police frequencies (they announce a UFO sighting somewhere remote and then arrest anyone who turns up looking). Paolo

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
Well what have u got in the form of logfiles and other info - This kinda has my attention after all the whole idea of dynamic sites is to provide content to client browsers and you talking in effect to stop or hinder that in some manner - as your client is in fact a tool that is spoofing or

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
or hinder that in some manner - as your client is in fact a tool that is spoofing or mimicking a client browser it has to have in some Way a noticeable pattern to its behaviour not necessarily. What if the competitor has just hired someone to sit there and grab all the data using just a

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
ais there's that .. but that ain't wot he said :) He said there be a tool thats doing it :) -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 14:47 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] Stopping 'db scrapes' or hinder that in some manner

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Dray
That's the madness of it all, it's just a property portal but we get payment for referral to agencies to the suits are up in arms about it. -Original Message- From: Peter Harrison [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 14:37 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ]

RE: [ cf-dev ] Mysql gui

2003-09-15 Thread Snake Hollywood
I'm not installing php. - FIGHT BACK AGAINST SPAM! Download Spam Inspector, the Award Winning Anti-Spam Filter http://mail.giantcompany.com -Original Message- From: Matt Horn [mailto:[EMAIL PROTECTED] Sent: 15

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
ais there's that .. but that ain't wot he said :) He said there be a tool thatÂ’s doing it :) annoying_pedant_mode well, he didn't: They use an http get or post from an end users machine so it's impossible to tell the software apart from any other user. This could simply be someone sitting

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Peter Dray
It definitely uses almost live data. Properties added to our database turn up on theirs a day or so later. This is us: www.primelocation.com This is them: www.propertysearch.com If you can be arsed try the same property search on both Please excuse the horrendous design, not guilty.

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
heh - from their site: The site is designed as a tool for estate agents and valuers, as it searches the main property portals in the UK, removing the need to repeat searches on the top sites. cheeky, they even admit it. -Original Message- From: Peter Dray [mailto:[EMAIL PROTECTED]

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Johnston
Bear in mind that claiming that a site scrapes another is pretty bad without evidence, I don't think you should let us know who the culprit is (even though you already have)... Apart from that, is the content actually copyrighted by your website, or is it copyrighted by the agency? Does the

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
Like that is it :) quote What happens is the end user buys this bit of software from the competitor and this software sends a request to our sites search engine /quote While I agree with you the its just a call the whole point is there could ? be away of telling them apart hence my intrest

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Rich Wild
and more interesting: The Software enables the User to make Searches. The User acknowledges that the Software shall run on the User's own computer equipment and shall in respect of each Search make a unique and current request of each Property Portal. So their users download software that make

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Johnston
heh - from their site: The site is designed as a tool for estate agents and valuers, as it searches the main property portals in the UK, removing the need to repeat searches on the top sites. cheeky, they even admit it. And that MAY actually keep them safe from some legal action...

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Paul Fennell
Id go with that one As a service have the data available for purchase as that will also give you a legal edge In regard to a product thats available for purchase -Original Message- From: Paul Johnston [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 15:12 To: [EMAIL PROTECTED]

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Matt Horn
loser *runaway* then try MySQLGui - Original Message - From: Snake Hollywood [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 3:58 PM Subject: RE: [ cf-dev ] Mysql gui I'm not installing php.

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Mark Smyth
if theres a couple of days delay, doesn't it suggest that they are doing the scrape and then adding it to their own DB (otherwise new properties would appear immediately if they were using a GET) If so, you could ban try banning their IP range, either through IIS or CF + CGI vars Did that here

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Tom Smith
or take a look at mysqlCC, even thought it is a beta product ;P - Original Message - From: Matt Horn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 3:11 PM Subject: Re: [ cf-dev ] Mysql gui loser *runaway* then try MySQLGui - Original Message -

[ cf-dev ] Ben Forta in London!!!

2003-09-15 Thread Niklas Richardson
Hi Everyone, Just to let you know Ben Forta will be in London next week and will be presenting at a user group meeting. The date of the meeting is Wednesday 24th September. For more information please visit the NEW website: http://www.ukcfug.org/ See you all there. Cheers Niklas -- **

RE: [ cf-dev ] Scottish CFUG

2003-09-15 Thread Niklas Richardson
Oh yeahthat blokehaha -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 3:05 PM To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] Scottish CFUG There's even a Bournemouth CFUG, but it was done by some cowboys who have

RE: [ cf-dev ] Scottish CFUG

2003-09-15 Thread Niklas Richardson
Looks more like a marketing / sales tool! ;) Haha! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 2:57 PM To: [EMAIL PROTECTED] Subject: [ cf-dev ] Scottish CFUG Anyone heard anything about a Scottish CFUG?

RE: [ cf-dev ] Mysql gui

2003-09-15 Thread Paul Johnston
or take a look at mysqlCC, even thought it is a beta product ;P I would agree that this is an excellent product as well... I use it on linux but still slightly prefer sqlyog... Still, if you want free, then this is the one you want. Paul -- ** Archive:

Re: [ cf-dev ] Scottish CFUG

2003-09-15 Thread Damian Watson
They have a branding strap-line... never a good sign :-P - Original Message - From: Niklas Richardson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 3:54 PM Subject: RE: [ cf-dev ] Scottish CFUG Looks more like a marketing / sales tool! ;) Haha!

RE: [ cf-dev ] Mysql gui

2003-09-15 Thread Robertson-Ravo, Neil (RX)
I also remember dbtools, that is also quite good. www.dbtools.com.br -Original Message- From: Tom Smith [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 15:13 To: [EMAIL PROTECTED] Subject: Re: [ cf-dev ] Mysql gui or take a look at mysqlCC, even thought it is a beta product ;P

[ cf-dev ] Importing large files

2003-09-15 Thread Snake Hollywood
I have huge 3-5GB flat data files that need to be imported into a database. I know CF5 had no way to read files a line at a time and we had to write a VB prob to do that. Does CFMX have a way to read files in a line at a time rather than loa dthe whole file into a variable ? Russ Michaels

RE: [ cf-dev ] Importing large files

2003-09-15 Thread Rich Wild
wouldn't you use the db's import routines (eg DTS) to do that instead? They can handle large files better, as they're written for it. -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 17:06 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject:

RE: [ cf-dev ] Importing large files

2003-09-15 Thread Snake Hollywood
Can u run a DTS from CF ? - FIGHT BACK AGAINST SPAM! Download Spam Inspector, the Award Winning Anti-Spam Filter http://mail.giantcompany.com -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent:

RE: [ cf-dev ] Importing large files

2003-09-15 Thread Rich Wild
written by our fella Simon Horwith himself: (watch wrap) http://www.cfcomet.com/SQL_Server/index.cfm?ArticleID=A51CB8F7-C297-4E80-92C C7A8907B0A5B2 -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 17:19 To: [EMAIL PROTECTED] Subject: RE: [

RE: [ cf-dev ] Importing large files

2003-09-15 Thread Justin
Don't think so. You chould knock a java class to do this pretty easily. Wouldn't it be better to do this outside cf? dts or a batch or whatever? Justin -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 17:06 To: [EMAIL PROTECTED] Cc: [EMAIL

RE: [ cf-dev ] Importing large files

2003-09-15 Thread Justin MacCarthy
Yes. http://www.teratech.com/ColdCuts/cutdetail.cfm?cutid=299 or cfexecute dtsrun.exe MyPackageName Justin -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 17:19 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Importing large files Can u run a

RE: [ cf-dev ] Importing large files

2003-09-15 Thread Justin MacCarthy
Don't think so. You chould knock a java class to do this pretty easily. Wouldn't it be better to do this outside cf? dts or a batch or whatever? Justin -Original Message- From: Snake Hollywood [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 17:06 To: [EMAIL PROTECTED] Cc: [EMAIL

RE: [ cf-dev ] Mysql gui

2003-09-15 Thread Colm Brazel
http://mysqlfront.venturemedia.de/index.php?s=9503bf12672368f1fd43045383a767 13act=STf=2t=328 mysqlfront though unsupported does a good swiss army job, never let me down Colm -Original Message- From: Tom Smith [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 15:13 To: [EMAIL

[ cf-dev ] RE: CFGURU: Importing large files

2003-09-15 Thread Aaron Johnson
I have huge 3-5GB flat data files that need to be imported into a database. I know CF5 had no way to read files a line at a time and we had to write a VB prob to do that. Does CFMX have a way to read files in a line at a time rather than loa dthe whole file into a variable ? -- I'd suggest

[ cf-dev ] RE: CFGURU: Importing large files

2003-09-15 Thread Aaron Johnson
I have huge 3-5GB flat data files that need to be imported into a database. I know CF5 had no way to read files a line at a time and we had to write a VB prob to do that. Does CFMX have a way to read files in a line at a time rather than loa dthe whole file into a variable ? -- I'd suggest

[ cf-dev ] [ADMIN] Apparent delays and subscriptions

2003-09-15 Thread Peter Gradwell
Hello Some of you may be thinking that mail to the dev/chat cfug lists is being delayed. Whilst our mail server may occasionally take more than 2 seconds to deliver all the mail, the main reason is that you're address is not subscribed to the list, and that your message gets deferred for

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Simon Horwith
CGI.HTTP_REFERER isn't reliable... it's far too easy to spoof requests coming from anywhere... though it may discourage them. ~Simon Simon Horwith CTO, Etrilogy Ltd. Member of Team Macromedia Macromedia Certified Instructor Certified Advanced ColdFusion MX Developer Certified Flash MX Developer

RE: [ cf-dev ] Stopping 'db scrapes'

2003-09-15 Thread Simon Horwith
if you suspect the IP address changes and that the data on their site is updated as recently as you say, they must be making frequent requests. I'd stuff some code into Application.cfm that records the number of requests made from any given IP address. Each hour (or two or three) log the data,

Re: [ cf-dev ] Mysql gui

2003-09-15 Thread Lucas Sherwood
I second that vote! it is a shame that development has stopped but it still works! - Original Message - From: Colm Brazel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 15, 2003 6:57 PM Subject: RE: [ cf-dev ] Mysql gui

RE: [ cf-dev ] [ADMIN] Apparent delays and subscriptions

2003-09-15 Thread Snake Hollywood
Shedloads of spam... I am getting loads of those I am the king of siam and I need your help to transfer 60 million pounds emails every day to the list. -Original Message- From: Peter Gradwell [mailto:[EMAIL PROTECTED] Sent: 15 September 2003 21:35 To: [EMAIL PROTECTED]; [EMAIL