Re: [U2] Not Consistent Failure

2010-03-23 Thread Karl Pearson
Thanks for the help on this one. That one gave me just enough information to figure things out. First, when the login failed, I saw an error message "There are running jobs..." just as the process should have been passed to Universe. That was odd, so I checked the output of the truss command, and

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Clifton Oliver
Got it. I'll get it updated with our latest revisions and get an html version up shortly. (Read: It's my part-time job. I'll get to it--promise) Regards, Clif I'll post here and elsewhere when it available. On Mar 23, 2010, at 10:34 PM, Dan McGrath wrote: > My apologises, > > "I'd be int

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Dan McGrath
My apologises, "I'd be interesting in reading" should have been "I'd be interested in reading the Style and Usage Guide" -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dan McGrath Sent: Wednesday, 24 March 2010 4:31

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Dan McGrath
Hi Clif, I'd be interesting in reading. I write the occasional piece and probably should use more encompassing terms to enhance future search-ability and to promote the database style. Regarding ECL/TCL/etc, since I'm normally in Unix/Linux land, I normally think of them as shells, which brings M

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Clifton Oliver
Well, the terminology issue is something we (Spectrum magazine in particular) can promote since we are already committed to promoting the term MultiValue (note the mid-cap casing) and the MultiValue Logo. We just add such terms to our Style and Usage Guide and use them in the magazine. Side not

[U2] UniBasic Back-End for U2

2010-03-23 Thread Doug
Hi Charles: [ad] We have an JavaScript API that allows you to call your own routines or you can call ours: 1) CallSubroutine-- call any subroutine you have created (no inputs statements allowed) 2) ReadData -- reads record based on an object 3) ReadExists-- does a READV on position zero 4

Re: [U2] Pick Pocket Guide

2010-03-23 Thread James Canale, Jr.
I think it would be great do something like this. Multivalue Query [mvQuery] Multivalue Basic [mvBasic] Multivalue PROC [mvPROC] I also think it would be great if someone could write a piece of a book that is very generic (keep it at a 20,000 foot view) which covers each major topic area. Once

Re: [U2] Using UNIVERSE Triggers for MYSQL?

2010-03-23 Thread Henry Unger
Hi Ara, We have used UniVerse triggers to replicate UniVerse tables to Microsoft SQL Server, MySQL, and Oracle. Best regards, Henry Henry P. Unger Hitech Systems, Inc. http://www.hitech.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listse

Re: [U2] Not Consistent Failure

2010-03-23 Thread Dan Fitzgerald
truss -pdf will return a listing of every system call the process makes at the AIX kernel level, as well as any processes forked by the process (the 'f' option). It's hard to read without a reference like W. Richard Stevens' "Advanced Programming in the Unix Environment", but if you see it bom

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Clifton Oliver
In Spectrum magazine, we use the term MultiValue Basic to talk about the programming language in articles that are not platform specific. I put it in the style and usage guide for just the reasons being brought up here. I don't see any reason not to add other MultiValue generic terms. MultiValue

Re: [U2] Not Consistent Failure

2010-03-23 Thread Karl Pearson
I've not uses the truss command. Pointers? They drop to the Unix directory specified in the passwd file. Karl On Tue, March 23, 2010 3:53 pm, Dan Fitzgerald wrote: > > One thing you could do is to make that sleep like 30 seconds, find that > pid, then use the AIX truss command against it while

Re: [U2] Not Consistent Failure

2010-03-23 Thread Karl Pearson
They have unique logins, and 3 separate accounts in Universe as well. They have a license for 55 Universe users, and it's happening when as few as 30-35 licenses are being used. On Tue, March 23, 2010 3:36 pm, Brian Leach wrote: > One thought, > > If they are not supplying a password in UNIX, is

[U2] Using UNIVERSE Triggers for MYSQL?

2010-03-23 Thread ARAMAIES BAGHDASRAIAN
Good day, I would like to learn on Universe Triggers for MYSQL. using Universe 10.3 . I have read the materials and there were issues on speed, dailiung to update if trigger fails, or Clearfile where the trigger does not get activated. Please let me know if you have used the Universe triggers in

Re: [U2] Not Consistent Failure

2010-03-23 Thread Dan Fitzgerald
One thing you could do is to make that sleep like 30 seconds, find that pid, then use the AIX truss command against it while it's sleeping, and see what bombs. When they drop to AIX, are they in the directory specified in /etc/passwd, or somewhere else? > Date: Tue, 23 Mar 2010 15:2

Re: [U2] Not Consistent Failure

2010-03-23 Thread Brian Leach
One thought, If they are not supplying a password in UNIX, is this because they all share the same user name? If so, could you be hitting a process-limit on a non-admin user identifier, so it can't create the uv process ? It's been years since I played with AIX, so is there still a maxuprc limit?

Re: [U2] Not Consistent Failure

2010-03-23 Thread Karl Pearson
They use the AIX telnet. Karl On Tue, March 23, 2010 3:36 pm, Leroy Dreyfuss wrote: > Do they use the system's telnet or UV's? > > LeRoy > > Sent from my iPhone 3Gs > > On 23 Mar 2010, at 11:29 PM, "Karl Pearson" > wrote: > >> When ever I see someone post something that can't be replicated >>

Re: [U2] JDBC - ClassPath - Victory

2010-03-23 Thread Ben Souther
Glad it's working. Tip: You should always put the con.close() statement in a finally block. The close method itself can throw an exception so it needs to be in a nested try/catch. Putting in in a finally block insures that come Hello or high water the connection gets closed. One of the most co

Re: [U2] Not Consistent Failure

2010-03-23 Thread Leroy Dreyfuss
Do they use the system's telnet or UV's? LeRoy Sent from my iPhone 3Gs On 23 Mar 2010, at 11:29 PM, "Karl Pearson" wrote: > When ever I see someone post something that can't be replicated > because > it's inconsistent, I wonder what the answer is going to be. > > So, here goes: > > I have a cl

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Leroy Dreyfuss
When I was still working at U2, we met with Mike Ruane of Revelation Software to discuss projects of common interest to both companies. At the time I had hoped there was a chance of greater collaboration then what transpired after I left. It's a shame that more wasn't possible then, but I suppose

[U2] Not Consistent Failure

2010-03-23 Thread Karl Pearson
When ever I see someone post something that can't be replicated because it's inconsistent, I wonder what the answer is going to be. So, here goes: I have a client that has started experiencing a login anomaly. First, the use telnet, and second, they don't have passwords at the Unix level. They a

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Charles_Shaffer
Genius for Dummies. You're killing me. You know what would be nice. A UniBasic back-end with a corresponding JavaScript Toolkit, or library for the client-side that would create a dynamic, seamless, powerful, yet simple to use environment for displaying tables, lookups, autocomplete lists, fo

Re: [U2] Pick Pocket Guide

2010-03-23 Thread BNeylon
So, one of us will write "Genius for Dummies?" Bruce M Neylon Health Care Management Group From: "David A. Green" To: "'U2 Users List'" Date: 03/23/2010 04:27 PM Subject:Re: [U2] Pick Pocket Guide Sent by:u2-users-boun...@listserver.u2ug.org I say we name it "Geni

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Charles_Shaffer
>>>I say we name it "Genius" so we can all feel smarter when we go to work! That's a lot to live up to. Charles Shaffer Senior Analyst NTN-Bower Corporation ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listi

Re: [U2] Pick Pocket Guide

2010-03-23 Thread David A. Green
I say we name it "Genius" so we can all feel smarter when we go to work! GeniusDB GeniusQuery GeniusCode (Not GeniusBasic that's an oxymoron) Etc. Hey! We've all just been elevated to Genius Programmers! David A. Green (480) 813-1725 DAG Consulting -Original Message- From: u2-users-bou

Re: [U2] Pick Pocket Guide

2010-03-23 Thread FFT2001
In a message dated 3/23/2010 11:18:48 AM Pacific Daylight Time, charles_shaf...@ntn-bower.com writes: > I always use the term nested relational database. It establishes that it > > is a relational database, which is reassuring. But nested differentiates > it and suggests additional function

Re: [U2] Pick Pocket Guide

2010-03-23 Thread FFT2001
In a message dated 3/23/2010 10:41:17 AM Pacific Daylight Time, br...@brianleach.co.uk writes: > 1/ It's not the term MultiValue I have a problem with - that we should > continue to support since it already has a meaning and a presence, and one > worth building on. For one thing, MVDBMS is a nic

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Jon Sisk
Maybe you could add Ultimate, Reality, Climax, and Evolution to the mix to help in the search efforts. Seriously, looking for Pick books on Ebay is a good way to find guitar picks dropped at concerts. As to SMA, the only thing they ever agreed on was to use my Pick Pocket Guide as a baseline fo

Re: [U2] Pick Pocket Guide

2010-03-23 Thread FFT2001
In a message dated 3/23/2010 4:14:07 AM Pacific Daylight Time, br...@brianleach.co.uk writes: > So suggestions welcomed.>> I'm opining that we need a name that is NOT an existing word or acronym of anything else. Something brand new and fresh and unique so no more false positives. Will

Re: [U2] JDBC - ClassPath - Victory

2010-03-23 Thread Brutzman, Bill
The following code works ok... Thanks to all those who responded especially John, Jeff, Bruce, Charles, Ben, and Mike. --Bill import java.sql.*; public class Uni_101 { public static void main(String[] args) { try { try { Class.forName("com.ibm.u2.jdbc.U

Re: [U2] JDBC - ClassPath - Some Progress

2010-03-23 Thread Brutzman, Bill
Via www.jdbc-tutorial.com, I was able to get past the IDE error by putting the a try/catch around the Class.forName. Now I am working on... java.sql.SQLException: UniVerse/SQL: Unable to attach to directory "u2/SANDBOX". --Bill *-

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Charles_Shaffer
Looking at it from the point of view of a potential new adopter. The word Pick can refer to many things. Not specific enough. Multivalued is also kind of vague. Lots of things have multiple values. I always use the term nested relational database. It establishes that it is a relational data

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Brian Leach
Tony As always you make some good points. 1/ It's not the term MultiValue I have a problem with - that we should continue to support since it already has a meaning and a presence, and one worth building on. For one thing, MVDBMS is a nice abbreviation! It's the terminology used within that, that

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Tony Gravagno
Common thread winding through this post... At the TigerLogic Conference a few months ago, Susie Siegesmund was a key speaker. Many of us joked/suspected/(hoped?) that TL had a Rocket in their pocket. But Susie's excellent presentation really underscored both a desire and a need for collaboration

Re: [U2] JDBC - ClassPath

2010-03-23 Thread Charles_Shaffer
This may not relate to your problem, but I had similar issues setting up a JavaBridge connection. I eventually took the easy route and put the libraries in the /usr/lib/jvm/... your java version install .../jre/lib/ext directory. This directory loads when the network starts up. No need to re

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Bill Haskett
Clif: Sounds like a Better and Better submission! :-) Bill Clifton Oliver said the following on 3/22/2010 8:21 PM: Well, when the best known providers can't even get correct documentation in their manuals or examples th

Re: [U2] JDBC - ClassPath

2010-03-23 Thread Jeff Powell
Did you add the .jar to your project? Netbeans: Right click the libraries item under project then click add jar/folder, find your jar file and click ok. Then build & run. On 03/23/2010 10:43 AM, Brutzman, Bill wrote: John: Thanks for writing. I tried it, it did not work... NetBeans still c

Re: [U2] JDBC - ClassPath

2010-03-23 Thread Brutzman, Bill
John: Thanks for writing. I tried it, it did not work... NetBeans still comes back with an error... "Class Not Found Exception". While it does not make sense to me that the IDE talks to UV... I have concluded that I need to upgrade UV from 10.1 to 10.3.2. I installed HP-Ux on a fresh (removabl

Re: [U2] Using JDBC on Unidata 7.1 on HPUX

2010-03-23 Thread Jeff Powell
Yes but you need a third party library from json.org which can be downloaded from sorceforge. On 03/21/2010 03:30 PM, Symeon Breen wrote: Does JSON really equate directly to a java object ?? It certainly equates directly to a javascript object (a very different beast indeed), it being Java Sc

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Brian Leach
'twas indeed. It's a timely point, because the new user group board are going to be discussing our projects for the coming year and introductory materials/sample applications and such like are very much in the frame. So nomenclature is something we will need to address if we're not going to conf

Re: [U2] Pick Pocket Guide

2010-03-23 Thread FFT2001
Maybe instead of waiting for the vendors to agree, we, the community should come up with our own name for the environment. IIRC, "multivalue" was not thought up by a vendor. Wasn't it our past editor of Spectrum who came up with that name? W.J. ___

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Glenn Sallis
Hi, I couldn't agree more. It seems to me like the vendors "deaf ears" are their own worst enemy - each one clinging onto their own uniqueness, all be it by name. It would probably help if any of them actually appeared to market their products outside of Spectrumhaving said that, I do not r

Re: [U2] Pick Pocket Guide

2010-03-23 Thread Brian Leach
Lloyd Thanks! Yes, I use Lulu because the volumes are so small and since they are US based - as is most of the readership - they can dispatch directly to the client rather than my having to dispatch them from here. The downside is the lead time for production. But 'windbag' or not Tony [grin], do