Re: [U2] easy way to get count of a DIM()?

2011-08-18 Thread Glorfield, Gordon
First off, I've never seen that syntax before.  Do you mean:

DIM X(25)

or do you mean you are setting X to the 25th value in a dimensioned variable?  
And I don't understand what you mean when you say some records get taken out. 
 How are they taken out?

I'm a little confused by your question.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Thursday, August 18, 2011 1:30 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] easy way to get count of a DIM()?


I'm trying to get the count of a dimensioned array DIM() in UniVerse 10.x

Let's say we have a variable that's set to an array:

X = DIM(25)

if I wanted to find out the count of X later on in the program (let's say some 
records get taken out and we need the count), how would
you do this?

Thanks,

Chris

  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Comparing numeric strings

2011-08-12 Thread Glorfield, Gordon
Unidata has no equivalent to the UV COMPARE function.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of u2ug
Sent: Friday, August 12, 2011 1:20 PM
To: U2 Users List
Subject: Re: [U2] Comparing numeric strings

Have you looked at the COMPARE() function ?
Does the trick under universe.


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rob Sobers
Sent: Friday, August 12, 2011 1:11 PM
To: U2 Users List
Subject: Re: [U2] Comparing numeric strings

Thanks all.  I should have mentioned that I already knew about the
alpha-concatenation hack. I was sort of looking for a cleaner approach.
It looks like SCMP falls down on floating point numbers.  That should
probably be mentioned in the docs, but instead it just fails silently.
;-(

-Rob

On Fri, Aug 12, 2011 at 9:51 AM, Rex Gozar rgo...@gmail.com wrote:

 In July I added to PickWiki:


 http://www.pickwiki.com/cgi-bin/wiki.pl?UniVerse_Tips_And_Tricks#Forci
 ng_string_comparison_on_numbers

 rex

 On Fri, Aug 12, 2011 at 8:15 AM, Rob Sobers rsob...@gmail.com wrote:
  Say you have two strings that happen to be numeric:
 
  FOO = 401.0101
  BAR = 401.0101000
 
  Since UniBasic is untyped, even though I've wrapped each value in 
  quotes
 ,
  they are treated as numbers.  As a result, FOO EQ BAR evaluates to
@TRUE.
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Odd error message

2011-07-22 Thread Glorfield, Gordon
Had a user get a message I've not seen before.  Message was: Index: 0 to one 
dimension is out of range.  The system kicked the user to TCL after this 
message.  We are running UniData 7.2.4 on HP UX.

I went into the system but was unable to duplicate the error.  Has anyone seen 
this message before and what causes it?

Thanks,
Gordon

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

Vertis Communications is a results-driven marketing communications company that 
delivers inventive advertising, direct marketing and interactive solutions to 
prominent brands across North America. Our deep industry knowledge and 
extensive range of offerings-including integrated data solutions, digital 
program management systems, creative services, world-class print and mail 
production, logistics, out-of-home and business process outsourcing-are used to 
deliver superior program performance that drives bottom line results for our 
clients. With 100 strategically positioned locations and more than 5,000 
dedicated professionals, we deliver impeccable quality and fast turn-around to 
any market.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Intergration of an existing file?

2011-06-21 Thread Glorfield, Gordon
What do you mean your system does not recognize the file?  Do you mean 
UniData doesn't recognize it?  Is there a VOC item pointing to the file?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Greg Coelho
Sent: Tuesday, June 21, 2011 3:44 PM
To: U2 Users List
Subject: Re: [U2] Intergration of an existing file?

Hi guys,

Quick question: I've got a custom Unidata file that my system does not 
recognize.  The file is a HASH Type 0 - which should be compatible with 
the system...  Any suggestions what I might try to get the system to 
recognize this file or to do a CREATE.FILE and COPY and end up with a 
recognizable file?

As always - Thanks!

Greg
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Selecting a List

2011-06-08 Thread Glorfield, Gordon
What about SWAP?

SWAP str.expr1 WITH str.expr2 IN var

The UniBasic SWAP command replaces all occurrences of one substring with a 
second substring. The search string does not have to be the same length as the 
replacement string. SWAP supports mulitbyte languages.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Greg Coelho
Sent: Wednesday, June 08, 2011 11:47 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Selecting a List

Hi All,

Again, I need a little help. 

The following PROCEDURE LINE works just fine.  In this case I'm just 
inserting the variable V.CALENDAR.YEAR to complete my file suite and I am 
going after 2  alphanumeric records ('P2021422' 'P2083158').

PROCEDURE LINE SELECT GLA.:V.CALENDAR.YEAR: WITH GLA.REF.NO = 
'P2021422' 'P2083158'

The problem arises when I attempt to select from a LIST (below)

PROCEDURE LINE SELECT GLA.:V.CALENDAR.YEAR: WITH GLA.REF.NO = :
VL.JS.LIST.VAR1

Of course the system does not like the Value Marker so I need to get rid 
of it...

VL.JS.LIST.VAR1 = ':CONVERT (@VM,' ',VL.JS.LIST.VAR1):'

The hope here is to replace @VM with ' ' and then place the ' at each 
end... but CONVERT will only switch one for one - one @VM for a single 
single quote (') which results in a quote mismatch.

Any suggestions?

Greg
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Printing to Remote Warehouse

2011-05-26 Thread Glorfield, Gordon
We solved a similar issue here in a rather low tech way.  We set one of our 
print spoolers to produce PDF files that are then emailed to the user.  They 
can then open and print from their PC.  They don't even need to stay connected 
to the network once the file/email is received.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wols Lists
Sent: Thursday, May 26, 2011 10:54 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Printing to Remote Warehouse

On 25/05/11 22:22, Bryan Evans wrote:
 I apologize upfront if this is more related to Unix rather than UniVerse.
 We have a remote warehouse that connects to us via telent on a dumb
 terminal.  They have a line printer hooked up to the dumb terminal.  When we
 print packing lists, we open up the aux port and send the print job to the
 printer.  We are looking to eliminate the dumb terminal, but we are stuck on
 how to send a print job to a local printer hooked to a PC.  Has anyone done
 this before?  Is it possible?  The remote warehouse is not on our network -
 the only way they can connect is via telent.

If you're planning to replace the network with a PC, and you're
connecting over a phone line, then aren't the dial-up costs a factor?

What I'd do is at least think about getting a broadband connection, then
linking your PC into the main network through a VPN. Will the PC be
running Windows or Linux?

If it's linux, once the VPN is in place, the PC will be transparently on
your network, and you can run a print spooler such as CUPS. If it's
Windows, the same probably applies.

The big question is what's the *physical* connection between the
warehouse and the main network, and do you plan to change that? As soon
as you swap the terminal for a PC you should be a able to run a network
over that, even if it's something as old-fashioned as SLIP (serial line
Internet Protocol iirc).
 
 We are running UniVerse 10.2 on HP-UX and use AccuTerm as our emulation
 software.
 
 Thanks in advance,
 
 Bryan Evans

Cheers,
Wol
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] ED Manuals

2011-05-25 Thread Glorfield, Gordon
For Unidata the ED and AE editors are documented in the Unidata Commands 
Reference.  However the documentation is scanty.  It tells you what they are 
and how to start them but there is nothing about the functional commands within 
the editors.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Ron Hutchings
Sent: Wednesday, May 25, 2011 10:21 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] ED Manuals


Are there versions of the manuals in the U2 archives?  I thought I had the 
archives bookmarked but I can't find them.
  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Unidata bit depth

2011-03-25 Thread Glorfield, Gordon
I was going to hide my ignorance by being quiet but I can't take.  So I'll bite 
(pun intended).  What is bit depth?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King
Sent: Friday, March 25, 2011 4:05 PM
To: U2 Users List
Subject: [U2] Unidata bit depth

Is there any command in Unidata that will show the bit depth of the Unidata
executable (on AIX, preferably)?

-- 
-Kevin
http://www.PrecisOnline.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Unidata bit depth

2011-03-25 Thread Glorfield, Gordon
Ah so.  Just because you are running on a 64 bit system you can still be 
running 32 bit Unidata.  And for hashed files both static sized and dynamic, 64 
bit Unidata does not get past the 2G file limit.  For some of the log files 
though it does allow files to grow past the 2G size.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King
Sent: Friday, March 25, 2011 4:25 PM
To: U2 Users List
Subject: Re: [U2] Unidata bit depth

You know, like 32-bit vs. 64-bit?  And perhaps it is I who is being
ignorant; if a system is 64-bit AIX does that mean that it's running 64-bit
Unidata?  And does 64-bit Unidata get past the 2G file size limitations of
32-bit?
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Site blocked

2011-03-24 Thread Glorfield, Gordon
Our network admins use a product called Websense to restrict access to certain 
web sites such as Facebook and Myspace.  For some reason Websense blocks my 
access to the wordpress.com domain saying that it is categorized as a Black 
Friday Site.  Is there a mirror site for these helpful documents like the one 
below?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rob Sobers
Sent: Wednesday, March 23, 2011 7:53 PM
To: U2 Users List
Subject: Re: [U2] Does anyone have an MV BASIC cheatsheet?

Here's a cheat sheet for the UniBasic debugger:

http://u2tech.files.wordpress.com/2010/10/unibasic-debugger-cheat-sheet-v1-0-0.pdf

-Rob

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [OT] Site blocked

2011-03-24 Thread Glorfield, Gordon
One would think.  But he just informed me that in the version they are using 
they can only make exceptions for individual links.  Took almost 2 weeks to get 
an exception in place to access the Request for Comments Open Letter that was 
posted prior to the board election.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Marc Harbeson
Sent: Thursday, March 24, 2011 1:38 PM
To: 'U2 Users List'
Subject: Re: [U2] Site blocked

Your admins should be able to exempt u2tech.files.wordpress.com while
leaving wordpress.com locked down...

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Glorfield, Gordon
Sent: Thursday, March 24, 2011 1:35 PM
To: 'U2 Users List'
Subject: [U2] Site blocked

Our network admins use a product called Websense to restrict access to
certain web sites such as Facebook and Myspace.  For some reason Websense
blocks my access to the wordpress.com domain saying that it is categorized
as a Black Friday Site.  Is there a mirror site for these helpful
documents like the one below?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rob Sobers
Sent: Wednesday, March 23, 2011 7:53 PM
To: U2 Users List
Subject: Re: [U2] Does anyone have an MV BASIC cheatsheet?

Here's a cheat sheet for the UniBasic debugger:

http://u2tech.files.wordpress.com/2010/10/unibasic-debugger-cheat-sheet-v1-0
-0.pdf

-Rob

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [OT] Site blocked

2011-03-24 Thread Glorfield, Gordon
This is how it was explained to me.  We are an advertising company and do 
inserts and direct mailings for various stores.  We create for these clients 
advertisements for Black Friday.  At some time in the past some of these Black 
Friday ads mysteriously appeared on wordpress.com in advance of when the client 
wanted them released.  Therefore the clients have 'requested' that access to 
that domain (among others) be restricted from within our network.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dawn Wolthuis
Sent: Thursday, March 24, 2011 4:24 PM
To: U2 Users List
Subject: Re: [U2] [OT] Site blocked

Bummer. I did a blog a couple of years ago on wordpress.com and was
thinking of setting up one for someone else there, also a business
blog. Is there a reason that wordpress.com is considered bad? Are they
opposed to wikipedia and other professional resources that sound like
they are too informal too?  I'm curious why they could not open up
wordpress.com completely.  --dawn

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Does anyone have an MV BASIC cheatsheet?

2011-03-23 Thread Glorfield, Gordon
Seems I remember a tutorial program that taught the basics (no pun intended) of 
the Pick DBMS/OS.  As I recall it was PROF.  I can't find anything online about 
it though.  Does anyone have any information about this program?

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jon Wells
Sent: Wednesday, March 23, 2011 4:57 PM
To: U2 Users List
Subject: Re: [U2] Does anyone have an MV BASIC cheatsheet?

I wonder if Sierra Bravo has something like that.

Jon

--- On Wed, 3/23/11, Dawn Wolthuis dw...@tincat-group.com wrote:

 From: Dawn Wolthuis dw...@tincat-group.com
 Subject: [U2] Does anyone have an MV BASIC cheatsheet?
 To: U2 Users List u2-users@listserver.u2ug.org
 Date: Wednesday, March 23, 2011, 2:17 PM
 I have cheatsheets for JavaScript,
 HTML, and CSS for training student
 interns but do not have one for MV BASIC. It's a long shot,
 but just
 in case anyone has one, I'd love to see and use it.
 Thanks.  --dawn
 
 -- 
 Dawn M. Wolthuis
 
 Take and give some delight today
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] PROC language documentation

2011-03-15 Thread Glorfield, Gordon
Group,

I know I'm dredging up long ago memories but the company I'm working for now 
still has many PROCs running.  I haven't used PROC for 20+ years now and I've 
forgotten most of what I did know.  Never did like that cryptic language.  That 
being said can someone on this list point me to some documentation on the PQN 
version?

Thanks,
Gordon

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

Vertis Communications is a results-driven marketing communications company that 
delivers inventive advertising, direct marketing and interactive solutions to 
prominent brands across North America. Our deep industry knowledge and 
extensive range of offerings-including integrated data solutions, digital 
program management systems, creative services, world-class print and mail 
production, logistics, out-of-home and business process outsourcing-are used to 
deliver superior program performance that drives bottom line results for our 
clients. With 100 strategically positioned locations and more than 5,000 
dedicated professionals, we deliver impeccable quality and fast turn-around to 
any market.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] PROC language documentation

2011-03-15 Thread Glorfield, Gordon
P.S. We are a Unidata shop.  If that makes any difference.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Glorfield, Gordon
Sent: Tuesday, March 15, 2011 11:57 AM
To: 'U2 Users List'
Subject: [U2] PROC language documentation

Group,

I know I'm dredging up long ago memories but the company I'm working for now 
still has many PROCs running.  I haven't used PROC for 20+ years now and I've 
forgotten most of what I did know.  Never did like that cryptic language.  That 
being said can someone on this list point me to some documentation on the PQN 
version?

Thanks,
Gordon

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

Vertis Communications is a results-driven marketing communications company that 
delivers inventive advertising, direct marketing and interactive solutions to 
prominent brands across North America. Our deep industry knowledge and 
extensive range of offerings-including integrated data solutions, digital 
program management systems, creative services, world-class print and mail 
production, logistics, out-of-home and business process outsourcing-are used to 
deliver superior program performance that drives bottom line results for our 
clients. With 100 strategically positioned locations and more than 5,000 
dedicated professionals, we deliver impeccable quality and fast turn-around to 
any market.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] PROC language documentation

2011-03-15 Thread Glorfield, Gordon
Thanks to all for your suggestions.  I've downloaded both the UniVerse ProVerb 
and the Reality documentations.  The UV document seems to have all I'll need 
and is a bit easier to deal with.  The Reality docs are a set of html documents 
and you have to download the entire manual set.  Rocket has their documents in 
PDF form and you can download the parts that you need.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Brian Leach
Sent: Tuesday, March 15, 2011 1:31 PM
To: 'U2 Users List'
Subject: Re: [U2] PROC language documentation

FWFW the proVerb guide is part of the UniVerse documentation set, you can
download this from the rocket website if you don't have it to hand..

.. oh, and the free mvDeveloper has syntax highlighting for PROC .. talk
about a clash of worlds :)

Brian

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Glorfield, Gordon
Sent: 15 March 2011 15:57
To: 'U2 Users List'
Subject: [U2] PROC language documentation

Group,

I know I'm dredging up long ago memories but the company I'm working for now
still has many PROCs running.  I haven't used PROC for 20+ years now and
I've forgotten most of what I did know.  Never did like that cryptic
language.  That being said can someone on this list point me to some
documentation on the PQN version?

Thanks,
Gordon

[SNIP]
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Scripps Networking Services - softwaresearch.com

2011-02-24 Thread Glorfield, Gordon
I will second the positive feedback on Matt Hart.  He got me my current 
position.  And it is an excellent position indeed.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Address
Sent: Thursday, February 24, 2011 10:56 PM
To: U2 Users List
Subject: Re: [U2] Scripps Networking Services - softwaresearch.com

Excellent recruiters

--- On Thu, 2/24/11, Charlie Noah cwn...@comcast.net wrote:

From: Charlie Noah cwn...@comcast.net
Subject: Re: [U2] Scripps Networking Services - softwaresearch.com
To: U2 Users List u2-users@listserver.u2ug.org
Date: Thursday, February 24, 2011, 6:26 PM

Hi David,

Larry is definitely one of the good guys, as is Matt Hart.
Matt Hart
PICK/U2 Recruiting  Consulting
Execu-Sys, Ltd
(800)423-1964 x302

It's a tough time to be looking for a job.

Good luck!

Charlie Noah


On 02-24-2011 5:08 PM, DavidJMurray (mvdbs.com) wrote:
 As a side but related - has anyone had dealings with softwaresearch.com -
 Larry Okeson?

 I'm on the job hunt and am trying to identify the good from the bad.

 Cheers,

 djm


 Bessel, Karen wrote:
 Has anybody heard about a job opportunity with this company, contact names
 Dan Maxwell and/or Jenna Wade?



 -

 Learn and Do
 Excel and Share


 http://mvdbs.com http://mvdbs.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Purging and Indexing

2011-02-16 Thread Glorfield, Gordon
Good Morning,

Looking for opinions and experiences here.  We are trying to do some system 
cleanups.  We found that our PO file has over 10 million records dating back 
some 7 years.  We've decided that 2 years of PO history is plenty to keep on 
file.

Currently there are no indices on this file.  Our question is would it be 
quicker to do a select and delete of the older records before building an index 
on invoice date or would it be quicker to build the index first to use in the 
select for the purge?  This index has been identified as being needed for some 
reporting.

My thinking is that while the select for the purge may go quicker, if the index 
is in place prior to the purge then the delete process not only has to delete 
the selected records it also has to update the index on the fly.

TIA,
Gordon

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

Vertis Communications is a results-driven marketing communications company that 
delivers inventive advertising, direct marketing and interactive solutions to 
prominent brands across North America. Our deep industry knowledge and 
extensive range of offerings-including integrated data solutions, digital 
program management systems, creative services, world-class print and mail 
production, logistics, out-of-home and business process outsourcing-are used to 
deliver superior program performance that drives bottom line results for our 
clients. With 100 strategically positioned locations and more than 5,000 
dedicated professionals, we deliver impeccable quality and fast turn-around to 
any market.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Does UV have a BLOCK command

2011-02-10 Thread Glorfield, Gordon
I've been following this thread somewhat cursorily.  But I've not seen a 
mention by anyone of the built in transaction handling in U2.  I'm speaking 
about the TRANSACTION START THEN END construct with TRANSACTION.COMMIT and 
TRANSACTION.ABORT commands.  This would seem to fit the bill of the original 
poster.

Just my 2 cents,
Gordon

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

[snip]
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] [UV][AIX] System Management and Performance Tools

2011-01-20 Thread Glorfield, Gordon
Look at Nagios.  It's open source and very adaptable to a wide variety of 
system and process monitoring. www.nagios.org.

Gordon


- Original Message -
From: u2-users-boun...@listserver.u2ug.org 
u2-users-boun...@listserver.u2ug.org
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Thu Jan 20 21:39:35 2011
Subject: Re: [U2] [UV][AIX] System Management and Performance Tools

We have used nmon on AIX. But we don't use UV on AIX here. It's free and 
doesn't come with anything fancy like the commercial toolsets...

I have used GlancePlus on HP-UX. There is an AIX version available and a trial 
can be arranged via:
https://h10078.www1.hp.com/cda/hpms/display/main/hpms_content.jsp?zn=btocp=1-11-15-28^9637_4000_100

Whatever tool you use, where it lets you categorise UNIX processes will help. 
In the past, a previous employer hired a consultant from HP to do the analysis 
(GlancePlus temp license came with the consultancy). He put together a report 
to help tune HP-UX and help us identify processes that we needed to optimise.

Whatever the tool, clearly you need to have a good handle of what processes you 
run. You can do additional stuff like have your own phantom verb which logs 
when it is fired up and get your any program run as phantom to log it's PID, 
@PARASENTENCE and @SENTENCE values into a log file (along with date time 
stamps, etc). Correlate these with your performance collections stats which 
hopefully includes PIDs and UNIX commands (uv, uvsh, phantom, u2amiproxy, etc, 
etc)..

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Boydell, Stuart
Sent: Friday, 21 January 2011 11:04 AM
To: U2 Users List
Subject: [U2] [UV][AIX] System Management and Performance Tools

Hi,
Just wondering if anyone has any recommendations for systems 
monitoring/management tools for aix5.3/uv10.2.4. I've seen occasional 
discussions on the topic here over the years.
Ideally, what we would like to do is be able to track down those end of month 
type processes which bog the system down with CPU  IO bottlenecks during peak 
load periods.
I suppose this could be done with something like topas, truss and PORT.STATUS 
but just wondering what is available.
There was a tool called DPMonitor that looked like it could be suitable - 
does this exist in any form?
Also, does anyone know if the Travels with Mark: A Hitchhiker's Guide to the 
UniVersehttp://www.google.com/url?sa=tsource=webcd=1sqi=2ved=0CBIQFjAAurl=http%3A%2F%2Fwww.mail-archive.com%2Fu2-users%40listserver.u2ug.org%2Fmsg13400.htmlrct=jq=dm-dw-dm-0512baldridge-iei=jMs4TavnI4mYvAOC0uiJCgusg=AFQjCNGTQCWE14j2-XEP6lQSFjTnMi98Zgcad=rja
 series on performance tuning is available anywhere. It was on the IBM 
developerworks site but, no more.


** IMPORTANT MESSAGE *   
This e-mail message is intended only for the addressee(s) and contains 
information which may be
confidential. 
If you are not the intended recipient please advise the sender by return email, 
do not use or
disclose the contents, and delete the message and any attachments from your 
system. Unless
specifically indicated, this email does not constitute formal advice or 
commitment by the sender
or the Commonwealth Bank of Australia (ABN 48 123 123 124) or its subsidiaries. 
We can be contacted through our web site: commbank.com.au. 
If you no longer wish to receive commercial electronic messages from us, please 
reply to this
e-mail by typing Unsubscribe in the subject line. 
**



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Mac Connection to UniVerse

2010-12-01 Thread Glorfield, Gordon
Don,

Carnation Software makes MacWise terminal emulator specifically designed for 
connecting to multi-dimensional databases such as U2.  They provide emulations 
for a wide variety of terminals.  See http://www.carnationsoftware.com/ for 
more information.

Gordon

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Don P. Nagai
Sent: Wednesday, December 01, 2010 12:48 AM
To: 'U2 Users List'
Subject: Re: [U2] Mac Connection to UniVerse

Actually I've never used a Mac so the built in terminal is news to me!  We
have a client that may decide to deploy a Mac or two so we'll give it a go.
Thanks for the terminal emulator info as well.

 

  _  

From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rob Sobers
Sent: Tuesday, November 30, 2010 6:03 PM
To: U2 Users List
Subject: Re: [U2] Mac Connection to UniVerse

 

Hey Don,

I believe Dynamic Connect, wIntegrate, and the other client tools that
Rocket makes are Windows only.  Can you just use Mac's built in terminal to
telnet or ssh to your UniVerse server?  What type of terminal emulation does
your server expect?

Here are some resources that might help:

http://en.wikipedia.org/wiki/List_of_terminal_emulators#Mac_OS

http://en.wikipedia.org/wiki/List_of_terminal_emulators#Mac_OS
http://www.macwise.com/

Regards,

http://superuser.com/questions/105009/most-efficient-terminal-emulator-for-
unidata-universe-or-other-mv-based-systemsRob
Sobers
http://accidentalhacker.com

On Tue, Nov 30, 2010 at 8:36 PM, Don P. Nagai
dpna...@nei-pro-info.comwrote:

 Has anyone installed Dynamic Connect on a Mac to connect to a UniVerse
 server via telnet?



 Thanks.



 Don

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users 

  _  

No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1170 / Virus Database: 426/3288 - Release Date: 11/29/10

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Upgrading and Migrating from Unix to Windows

2010-11-08 Thread Glorfield, Gordon
Along with being limited to two users, the UniData and UniVerse Personal 
Editions also have an eight-process limit and a limitation of modulo 10007 
assigned to a file. Also, the following add-ons do not function: Connection 
Pooling, EDA, NFA, RFS, UV/Net.

Right off of Rocket's U2 downloads page.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bob Woodward
Sent: Monday, November 08, 2010 2:08 PM
To: Richard Conway; U2 Users List
Subject: Re: [U2] Upgrading and Migrating from Unix to Windows

I think the size limit is something like a modulo of 10009 or there
abouts, if memory serves me right.  It's been a long time.  You should
be able to get the limitations from Rocket.  

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Richard
Conway
Sent: Monday, November 08, 2010 10:30 AM
To: U2 Users List
Subject: Re: [U2] Upgrading and Migrating from Unix to Windows

What are the file size restrictions with PE? Is there a comprehensive
list of the restrictions present in PE anywhere that I can
read/download?

Richard

- Original Message -
From: Bob Woodward bob_woodw...@k2sports.com
To:   Richard Conway rich...@rlcnet.co.uk, U2 Users List
u2-users@listserver.u2ug.org
Sent: Monday Monday 08 November 2010 18:20:24
Subject: [U2] Upgrading and Migrating from Unix to Windows

I think, at the very least, you're probably going to have an issue with
the PE version limiting your file sizes.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Richard
Conway
Sent: Monday, November 08, 2010 5:00 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Upgrading and Migrating from Unix to Windows

I am about to try to upgrade an old Unidata server running Unidata 3.x
on SGI Irix, to another machine running Windows Server 2003. I am going
to set up the Windows box with Unidata 7.2.7 PE initially.

Has anyone tried such a drastic move? What is the best upgrade path to
try? Unidata 3.x on Irix to Unidata 7 on Linux, then on to Unidata 7 on
Windows? Or would a single jump upgrade actually work, with the help of
vocupgrade and PATHSUB?

Richard

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] I'm baaaack

2010-10-28 Thread Glorfield, Gordon
Greetings Group,

I just started a new position with a company running a Unidata / SB+ shop after 
my hiatus from the multivalue market.  It seems some things have changed since 
I left (Rocket instead of IBM) but many things seem the same.  I look forward 
to the discussions on this group which I've missed.

Gordon

Gordon J Glorfield | Software Application Engineer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

Vertis Communications is a results-driven marketing communications company that 
delivers inventive advertising, direct marketing and interactive solutions to 
prominent brands across North America. Our deep industry knowledge and 
extensive range of offerings-including integrated data solutions, digital 
program management systems, creative services, world-class print and mail 
production, logistics, out-of-home and business process outsourcing-are used to 
deliver superior program performance that drives bottom line results for our 
clients. With 100 strategically positioned locations and more than 5,000 
dedicated professionals, we deliver impeccable quality and fast turn-around to 
any market.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] SB+ User Group

2010-10-28 Thread Glorfield, Gordon
Does anyone have a line on a SB+ discussion group?  As it's been about 15 years 
since I last used SB+ I have a few questions.

Gordon J Glorfield | Software Application Developer | Vertis Communications
250 W. Pratt Street, Suite 1800 | Baltimore, MD, 21201
T 410-361-8664 | M 443-280-7093
gglorfi...@vertisinc.com | http://www.vertisinc.com

Vertis Communications is a results-driven marketing communications company that 
delivers inventive advertising, direct marketing and interactive solutions to 
prominent brands across North America. Our deep industry knowledge and 
extensive range of offerings-including integrated data solutions, digital 
program management systems, creative services, world-class print and mail 
production, logistics, out-of-home and business process outsourcing-are used to 
deliver superior program performance that drives bottom line results for our 
clients. With 100 strategically positioned locations and more than 5,000 
dedicated professionals, we deliver impeccable quality and fast turn-around to 
any market.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users