Re: Containers was Watson interface

2014-11-10 Thread Christof Wollenhaupt
http://azure.microsoft.com/blog/2014/10/15/new-windows-server-containers-and http://azure.microsoft.com/blog/2014/10/15/new-windows-server-containers-and-azure-support-for-docker/ -azure-support-for-docker/

RE: Containers was Watson interface

2014-11-10 Thread Bill Arnold
Christof, It seems this should have some bearing on Mike's interest. --- I'm not sure... This article talks about running Windows Server applications as a container. It'll help to deploy server based Windows applications on Windows Server 2014 R2/2016 and onward. There is no

Re: Watson interface

2014-11-10 Thread Thierry Nivelet
To adapt a software to a new environment, 2 main solutions arise: either rebuild the software for this new environment, or build an adapter (aka interface, wrapper, container) from the 'old' software to this new environment. Obviously building a 'container' is a generic effort that can't be

Re: [NF] Congrats to CullyTech font page article in xDev

2014-11-10 Thread Kevin Cully
Thanks Ted! I was pleased to find a solution that would host a Xojo Web App for a penny an hour, or $5 per month. On 11/08/2014 02:37 PM, Ted Roche wrote: Congrats to the fine folks at CullyTech for getting a front page featured article on xDev magazine:

Re: Formatting Test

2014-11-10 Thread Ed Leafe
On Nov 7, 2014, at 5:04 PM, Dan Covill dan.cov...@outlook.com wrote: I sent an email to Ed Leafe this AM about it. Sorry for not responding sooner, but I was at the OpenStack Summit for the past week, and was doing nothing but intense work the whole time: http://i.imgur.com/CizAdBe.jpg

Re: Watson interface

2014-11-10 Thread Mike Copeland
Thierry, Well put, clear and concise. Thanks! Mike Thierry Nivelet wrote: To adapt a software to a new environment, 2 main solutions arise: either rebuild the software for this new environment, or build an adapter (aka interface, wrapper, container) from the 'old' software to this new

SQL select

2014-11-10 Thread Sytze de Boer
Friends, can you help me I have a table with approx 50,000 records About a 1000 have a common link code I want to display only those items that have a common link code There's 2 dozen fields, and a field called linkcode SELECT *,COUNT(*) as grp FROM rotables GROUP BY linkcode INTO TABLE

Re: SQL select

2014-11-10 Thread Richard Quilhot
Use the set enginebehavior to 70 Rick Q quilh...@gmail.com On Mon, Nov 10, 2014 at 5:33 PM, Sytze de Boer sytze.k...@gmail.com wrote: Friends, can you help me I have a table with approx 50,000 records About a 1000 have a common link code I want to display only those items that have a

Re: SQL select

2014-11-10 Thread Jean MAURICE
Hi Sytze, you should buy Tamar Granor's book about SQL ... Your query could be something like SELECT * FROM rotables ; WHERE linkcode IN ; (SELECT linkcode FROM (SELECT linkcode, COUNT(*) AS nb FROM rotables ; GROUP BY 1 HAVING COUNT(*)1) ; ) ; ORDER BY linkcode INTO

Re: SQL select

2014-11-10 Thread Michael Glassman
You want HAVING grp 1 rather than WHERE grp 1. Put it between the GROUP BY and INTO clauses. Mike ___ From: Sytze de Boer Sent: Monday, November 10, 2014 3:33 PM To: profoxt...@leafe.com Subject: SQL select Friends, can you help me I have

Re: SQL select

2014-11-10 Thread Ted Roche
Quick sample code to play with: create cursor example (linkcode I, somestring c(10)) index on linkcode tag linkcode insert into example values (1,One) insert into example values (2,Two) insert into example values (3,Three) insert into example values (1,Oops) insert into example values

Re: SQL select

2014-11-10 Thread Sytze de Boer
Argh, so simple THANK you all On Tue, Nov 11, 2014 at 1:39 PM, Ted Roche tedro...@gmail.com wrote: Quick sample code to play with: create cursor example (linkcode I, somestring c(10)) index on linkcode tag linkcode insert into example values (1,One) insert into example values (2,Two)

Re: [NF] Switchikng A/V Composite Outputs

2014-11-10 Thread John Sowden
On 11/05/2014 07:31 PM, Charles Hart Enzer, M.D. wrote: I want to take the A/V Video [Composite] output and send to either: - TV [Composite] - Capture Devise [Composite] Would a simple set of three Y-splitters lose significant signal -- especially, color video? Which A/B switch do you

Re: [NF] Switchikng A/V Composite Outputs

2014-11-10 Thread John Sowden
Corrected response (on this list, all after the sign-off of the sender is deleted. I'll try the top this time. Composite video is video only (1v peak to peak). Audio is a separate path. The connector forcomposite video at the consumer level is an RCA connector (one for each of

Re: [NF] Switchikng A/V Composite Outputs

2014-11-10 Thread Charles Hart Enzer, M.D.
Thank you, John. ​ *C​harles​* *Charles Hart Enzer, M.D., FAACAPVolunteer Associate Professor of PsychiatryUniversity of Cincinnati Medical CenterWebSite:http://TinyURL.com/EnzerMD http://TinyURL.com/EnzerMD* *If You See What Needs To Be Repaired And How to Repair It,Then You Have

Re: SQL select

2014-11-10 Thread Jean MAURICE
Le 11/11/2014 01:39, Ted Roche a écrit : select * from example where linkcode in (select linkcode from example group by linkcode having count(*)1 ) I didn't know that we could have a 'group by' clause without any 'agregation field' (SUM(), AVG(), ...). It's why I built a '2 stages' query ...