Re: Machine Learning

2012-08-21 Thread Michael
I think it was the HAL-9000 in the movie 2001: A Space Odyssey On 08/20/2012 06:25 PM, Martin Gainty wrote: When I hear 'AI' I always imagine theres a HAL 9001 behind the scenes that is running the show constantly admonishing its creator to take another stress pill Sounds like a fun project

RE: Machine Learning

2012-08-21 Thread Martin Gainty
Forgive my flawed human intervention into the flawlessly scheduled and impeccably managed operational tasks performed by the 'perfect machine' I guess its time for another 'stress pill' Martin Date: Tue, 21 Aug 2012 04:40:49 -0500 From: mich...@j3ksolutions.com To: mysql@lists.mysql.com

ANN: PHP Generator for MySQL 12.8 released

2012-08-21 Thread SQL Maestro Team
Hi! SQL Maestro Group announces the release of PHP Generator for MySQL 12.8, a powerful GUI frontend that allows you to generate feature-rich CRUD web applications for your MySQL database. http://www.sqlmaestro.com/products/mysql/phpgenerator/ Online demo: http://demo.sqlmaestro.com/ PHP

Re: Machine Learning

2012-08-21 Thread Garot Conklin
I LOVE HAL9001!! That IS the idea!!   garotconk...@yahoo.com From: Martin Gainty mgai...@hotmail.com To: mich...@j3ksolutions.com; mysql@lists.mysql.com mysql@lists.mysql.com Sent: Tuesday, August 21, 2012 8:41 AM Subject: RE: Machine Learning Forgive my

RE: Machine Learning

2012-08-21 Thread webmaster
Hi Garot, Ok, the concept is getting clearer, but let’s bring this down to earth a little bit more. I love DB design and problem-solving and am quite curious about this. Is the idea that you have a central computer (not HAL J) somewhere so that other computers can: 1) Refer to it for

Re: Machine Learning

2012-08-21 Thread Garot Conklin
1)Refer to it for ‘knowledge’ (for instance, of what the latest version of a command is)     It would most likely end up being central in this sense:         A distributed collection of systems; i.e. (possible defined in roles)             DB's             FE's             REPL's            

Re: ANN: PHP Generator for MySQL 12.8 released

2012-08-21 Thread Jan Steinman
Gentle reminder: PLEASE note somewhere in your postings that this is a Windows-only executable that is useless to pure UNIX/Linux shops. You don't even note that requirement on your website, until one has gone to the trouble to register for the download, only to discover a huge, useless .EXE

RE: Machine Learning

2012-08-21 Thread webmaster
Ah, Getting clearer and clearer. So these ‘nodes’ could ‘learn’ and ‘teach’ at the same time – right ? For instance, N1 runs a command in ‘domain’ D20 which it successful – it send information to node N20 that is the authority on domain D20 and N20 records it as success; N5 runs a

RE: Machine Learning

2012-08-21 Thread Martin Gainty
Im thinking any of the JSR-286 Portal Management Systems can *probably* handle initial authentication and authentication-token access to all of the resources via token passing http://en.wikipedia.org/wiki/List_of_enterprise_portal_vendors http://portals.apache.org/jetspeed-2/ As far event

RE: Machine Learning

2012-08-21 Thread Martin Gainty
Im thinking any of the JSR-286 Portal Management Systems can *probably* handle initial authentication and authentication-token access to all of the resources via token passing http://en.wikipedia.org/wiki/List_of_enterprise_portal_vendors http://portals.apache.org/jetspeed-2/ As far event

Re: Machine Learning

2012-08-21 Thread Garot Conklin
YES!   garotconk...@yahoo.com From: webmas...@lisol.co.uk webmas...@lisol.co.uk To: 'Garot Conklin' garotconk...@yahoo.com; 'Martin Gainty' mgai...@hotmail.com; mysql@lists.mysql.com Sent: Tuesday, August 21, 2012 3:37 PM Subject: RE: Machine Learning Ah,  

RE: Machine Learning

2012-08-21 Thread Martin Gainty
Im thinking any of the JSR-286 Portal Management Systems can *probably* handle initial authentication and authentication-token access to all of the resources via token passing http://en.wikipedia.org/wiki/List_of_enterprise_portal_vendors http://portals.apache.org/jetspeed-2/ As far event

Re: Machine Learning

2012-08-21 Thread Garot Conklin
to elaborate: I would almost rather qualify from the OS perspective what will work in advance, but take into consideration any failing condition.  I may be getting a bit too specific at this juncture however as I am already apply this logic to issues I see in MY environment rather than total

help with correlated subquery

2012-08-21 Thread Larry Martell
I am trying to write a query that selects from both a correlated subquery and a table in the main query, and I'm having a lot of trouble getting the proper row count. I'm sure this is very simple, and I'm just missing it. I'll try and present a simple example. For this example, there are 27 rows,

RE: help with correlated subquery

2012-08-21 Thread Rick James
select count(*), target_name_id, ep, avg(bottom), avg(averages) from ( SELECT avg(bottom) as averages, target_name_id as t, ep as e from data_cst where target_name_id = 44 group by target_name_id, ep, wafer_id) x,

Re: help with correlated subquery

2012-08-21 Thread Larry Martell
On Tue, Aug 21, 2012 at 5:30 PM, Rick James rja...@yahoo-inc.com wrote: select count(*), target_name_id, ep, avg(bottom), avg(averages) from ( SELECT avg(bottom) as averages, target_name_id as t, ep as e from data_cst where

Re: help with correlated subquery

2012-08-21 Thread Larry Martell
On Tue, Aug 21, 2012 at 5:39 PM, Martin Gainty mgai...@hotmail.com wrote: a look at the first query: select count(*), target_name_id, ep, wafer_id from data_cst where target_name_id = 44 group by target_name_id, ep, wafer_id; +--++--+--+ | count(*) |

Re: help with correlated subquery

2012-08-21 Thread hsv
2012/08/21 16:35 -0600, Larry Martell I am trying to write a query that selects from both a correlated subquery and a table in the main query, and I'm having a lot of trouble getting the proper row count. I'm sure this is very simple, and I'm just missing it. I'll try and present a simple

Re: help with correlated subquery

2012-08-21 Thread Larry Martell
On Tue, Aug 21, 2012 at 8:07 PM, h...@tbbs.net wrote: 2012/08/21 16:35 -0600, Larry Martell I am trying to write a query that selects from both a correlated subquery and a table in the main query, and I'm having a lot of trouble getting the proper row count. I'm sure this is very simple,