[U2] Help diagnosing mysterious database hangs (UV 10.1.25, HP-UX 11.11)

2008-08-01 Thread Geoffrey Mitchell
of the problem. Any ideas on how to go about diagnosing this? Or thoughts as to what might be the problem? It would be awfully nice to have a log of all of the queries being executed and how long they took, such as you can easily get from other databases, like mysql, or PostGresql. -- Geoffrey

Re: [U2] Green Software - Green Business

2008-07-29 Thread Geoffrey Mitchell
able to claim greenness and because of the price of gas. Susan --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2

Re: [U2] [UV] [UB] Equating Two Arrays in UniBasic

2008-07-10 Thread Geoffrey Mitchell
. Suggestions would be appreciated. --Bill --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users

Re: [U2] Unidata 7.1 ODBC Threading Problems?

2008-06-05 Thread Geoffrey Mitchell
/ --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe

Re: [U2] locking code question

2008-05-15 Thread Geoffrey Mitchell
, but I thought I would throw it out. There are similar Open Source products for Unix, though I have not had experience with them. -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please

Re: [U2] Universe 10.1 Itype possible parsing problem

2008-01-08 Thread Geoffrey Mitchell
/ --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http

Re: [U2] Universe and triggers

2007-09-11 Thread Geoffrey Mitchell
@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2

Re: [U2] Universe and triggers

2007-09-11 Thread Geoffrey Mitchell
, but this is my understanding, and waht I have found to work. -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] SQL query locks

2007-08-27 Thread Geoffrey Mitchell
records, unfortunately as many as 100 at a time. Is there a way to do the query without locking records? We're not updating anything. Pam -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe

Re: [U2] RE: Cleaner Case Statement

2007-08-03 Thread Geoffrey Mitchell
://listserver.u2ug.org/ --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Geoffrey Mitchell Programmer

Re: [U2] UniData 7.1 vs. MS SQL 2005 performance

2007-07-17 Thread Geoffrey Mitchell
be confident that benchmark results are valid across all (similar?) implementations. Because relational forbids knowing anything about the implementation, any benchmark is valid for that one configuration only. -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2

Re: [U2] UniData 7.1 vs. MS SQL 2005 performance

2007-07-16 Thread Geoffrey Mitchell
empirical tests. -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] Error using XML API's, UV 10.1.8, HP/UX

2007-04-20 Thread Geoffrey Mitchell
this before? Any ideas? I have checked, and the Xalan library *is* there and appears to be globally readable and executable. -- Geoffrey Mitchell Programmer/Analyst Home Decorator's Collection 314-684-1062 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http

Re: [U2] Question of permissions UV Linux

2006-04-27 Thread Geoffrey Mitchell
though. -Original Message- From: Geoffrey Mitchell [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 11:38 AM To: Jerry Banker Subject: Re: [U2] Question of permissions UV Linux Are you creating the files from unix in the same directory that they are being created in from UV

Re: [U2] Basic statement

2006-03-21 Thread Geoffrey Mitchell
My guess would be that it is a literal equate. Search through the includes and see if you can find where it is equated. [EMAIL PROTECTED] wrote: Are you sure it's not meant to go through a pre-compiler? Hth Colin Alfke Calgary Canada -Original Message- From: Barry Rogen To

Re: [U2] Problem with JDBC and basic programs

2006-02-13 Thread Geoffrey Mitchell
Try replacing your READ's with READL's, or using TRANS(). In order to preserve the integrity of the transaction, Universe requires certain lock levels to be used within SQL transactions. If I remember correctly, both READL and TRANS will work, as will SQL selects. Jeff Marcos wrote: Hi

Re: [U2] [UD] Best practices

2006-01-27 Thread Geoffrey Mitchell
To me, this is an issue of readability and maintainability. If I read 'IF VOID = THEN DEPOSITED ELSE *Voided*', I can make a reasonable guess at what it is trying to do, without knowing anyghing about the file structure. If you use numeric references to fields, you will probably have to do

Re: [U2] [UD] Calling Stored Procedures

2006-01-05 Thread Geoffrey Mitchell
I have successfully used a stored procedure on UniVerse (not UD). I have only called the procedure from a JDBC connection. When I try using the same statement at the console, I get 'Illegal verb CALL.' It works fine from JDBC, though. *shrug* You might try using a parameter marker (?)

Re: [U2] True random select lists?

2005-08-09 Thread Geoffrey Mitchell
This doesn't work (at least on UV). The sample happens before the sort, not after. Otherwise, however, it's an ingenious idea. Incidentally, you could do the same thing (at least in UV) without creating a new dictionary, by using EVAL. i.e., SELECT MYFILE BY EVAL RND(@TIME) That way you

Re: [U2] UV PERFORM 'SELECT filename ...' in I-Type {Unclassified}

2005-05-19 Thread Geoffrey Mitchell
Have you checked the output of the select when performed from inside the I-type? My guess is that it is generating a big ugly error, which is why you are getting no records back. From my experience, performing external selects from within an I-type is more than just a bad idea, it's illegal.

Re: [U2] Software development - MVTools

2005-05-05 Thread Geoffrey Mitchell
Before you try to roll your own versions of all the various unix utilities you may need, check out this: http://unxutils.sourceforge.net/ Joe Walter wrote: Thanks Colin. That sounds like a good approach - creating windows verions of the unix commands that is. I might be able to pull that

Re: [U2] Installing Easysoft ODBC-ODBC-Bridge on AIX

2005-05-02 Thread Geoffrey Mitchell
Try doing echo $LIBPATH before and after setting it. I think that you will see your problem. Single quotes, in most shells I know, prevent variable expansion. If you don't know what I mean, you will after you do the echo's. Geoff Metherall, Arthur wrote: I'm trying to install the Easysoft

Re: [U2] UV Triggers

2005-04-07 Thread Geoffrey Mitchell
The correct syntax should be: CREATE.TRIGGER trigger_name [BEFORE | AFTER] UPDATE ON file_name FOR EACH ROW CALLING 'subroutine'; Note the semi-colon. All SQL commands end with one. Failure to include it will result in the SQL+ prompt that you got. The file does not have to be an SQL table,

Re: [U2] Unique Ids

2005-03-08 Thread Geoffrey Mitchell
You can do it with a Universe SQL table (Make MV values unique, that is). In traditional UV tables, however, you are correct. The uniqueness in this case is a combination of the primary key and the MV position. I would also guess that the person in question was referring to multivalues since

Re: [U2] Universe CREATE SCHEMA

2005-02-04 Thread Geoffrey Mitchell
List UV_USERS to find the initially configured administrator user. On our system it is uvsql. I'm not sure if that is a standard or something that we setup. At any rate, if you haven't done anything with SQL, there should only be one user in there, but you are looking for someone with

Re: [U2] Universe CREATE SCHEMA

2005-02-04 Thread Geoffrey Mitchell
Richard Taylor wrote: One other thing to watch out for is when you make an account into a Schema normal, non-sql users, will not have access to the files anymore. If you want to use the account as a Schema and as a regular UV account you can do so but you will need to grant permissions to the

Re: [U2] [UV] Transaction Compile Failure

2005-02-01 Thread Geoffrey Mitchell
The help for END TRANSACTION says: Use the END TRANSACTION statement to specify where processing is to continue after a transaction ends. This implies to me that there must be exactly one end transaction for each begin transaction. It also implies that if you do a rollback, execution will

[U2] Weird problem: SQL multipart primary key + triggers

2004-08-11 Thread Geoffrey Mitchell
, at least...have not tested exhaustively) on the table. While the trigger is there, it inserts the records with text mark separators instead of my alternate separator. If I drop the trigger, the problem goes away. Has anyone else witnessed this? -- Geoffrey Mitchell

[U2] Re: Weird problem: SQL multipart primary key + triggers (CORRECTION)

2004-08-11 Thread Geoffrey Mitchell
Actually, the separator becomes a null character (char zero), not a text mark On Wed, 2004-08-11 at 17:31, Geoffrey Mitchell wrote: OK, this is a strange one: Platform: UV 10.0.16 / HP-UX 11.11 I have an SQL table with a multi-part primary key for which I have specified an alternate

Re: [U2] Univere Login Security

2004-08-04 Thread Geoffrey Mitchell
please visit http://listserver.u2ug.org/ --- [This E-mail scanned for viruses by Declude Virus] -- Geoffrey Mitchell 314-684-1062 Programmer/Analyst [EMAIL PROTECTED] Knights Direct --- u2-users mailing list [EMAIL

Re: [U2] [UV] 10.x File Triggers

2004-08-02 Thread Geoffrey Mitchell
] To unsubscribe please visit http://listserver.u2ug.org/ --- [This E-mail scanned for viruses by Declude Virus] -- Geoffrey Mitchell 314-684-1062 Programmer/Analyst [EMAIL PROTECTED] Knights Direct --- u2-users

RE: [U2] [UV] 10.x File Triggers

2004-08-02 Thread Geoffrey Mitchell
with that url? I tried searching on u2ug.org but came up empty handed. Perry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Mitchell Sent: Monday, August 02, 2004 9:27 AM To: [EMAIL PROTECTED] Subject: Re: [U2] [UV] 10.x File Triggers Search

[OT] Re: [U2] smbmount problem...

2004-07-19 Thread Geoffrey Mitchell
http://listserver.u2ug.org/ --- [This E-mail scanned for viruses by Declude Virus] -- Geoffrey Mitchell 314-684-1062 Programmer/Analyst [EMAIL PROTECTED] Knights Direct --- u2-users mailing list [EMAIL PROTECTED

Re: [U2] [UV] CONVERT.SQL (UV files SQL tables)

2004-06-03 Thread Geoffrey Mitchell
to this e-mail. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/ --- [This E-mail scanned for viruses by Declude Virus] -- Geoffrey Mitchell 314-684-1062 Programmer/Analyst

[U2] Re: [OT] unsubscribe

2004-05-11 Thread Geoffrey Mitchell
by replying to this message and delete this e-mail immediately. --- u2-users mailing list [EMAIL PROTECTED] http://www.u2ug.org/listinfo/u2-users --- [This E-mail scanned for viruses by Declude Virus] -- Geoffrey Mitchell 314-684-1062 Programmer