RE: [U2] Creating a new record from UniObjects

2006-02-23 Thread Nick Cipollina
Kind of like executing a sql server stored proc.

Thanks,
 
Nick Cipollina
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Wendy Smoak
Sent: Thursday, February 23, 2006 6:05 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Creating a new record from UniObjects

On 2/22/06, Jeff Powell <[EMAIL PROTECTED]> wrote:

> I'll look at how to implement using this. Because I'm new to UniData
> I've really only done a uni.command and parsed the response. That was
> fast but not very robust.
>
> I am planning to take a class in Denver next month but I think you may
> have given me a jump start.

I didn't mean to suggest that you should use the DAO pattern, just
that there are some examples of reading and writing scattered
throughout the page that might help. :)  I never finished that
example, it doesn't even show how to deal with multivalued and
mv-associated fields. :/

You'll probably also want to learn how to call subroutines from UOJ. 
IMO, that's the single most useful method for getting data out.  One
call, do whatever you need to do in UniBasic code on the database
side, and return whatever data the Java code needs.

--
Wendy
---
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/


RE: [U2] [UV] SYSTEM() for execution level?

2006-02-23 Thread Chris Day
HI there,

Not sure that there is a SYSTEM() code but there is a UniVerse variable
@LEVEL that returns the nesting level of execution statements.

Hope this helps,

Chris Day
Pre-Sales Consultant
Meier Business Systems
Melbourne * Sydney * Kuala Lumpur * Singapore 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Barry Brevik
Sent: Friday, 24 February 2006 11:09 AM
To: U2-users (E-mail)
Subject: [U2] [UV] SYSTEM() for execution level?

Anyone know if there is a SYSTEM() code that will return the execution
level
of the running process?

Barry Brevik
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


CAUTION: This email and any attachments are confidential, may be privileged, 
and are intended for use solely by the addressee. The confidentiality and/or 
privilege in this email is not waived, lost or destroyed if it has been 
transmitted to you in error. If you receive this email in error, please notify 
MBS by reply email immediately, delete the email and destroy any printed 
copies. You must not disclose, disseminate, distribute, reproduce or use the 
information contained in this email if you are not the intended recipient. The 
content and opinions contained in this email are those of the individual sender 
and may not necessarily reflect the views and opinions of MBS. MBS does not 
guarantee that this email is free from viruses, errors, interception or 
interference. Use of this email and any attachments is at the sole risk of the 
user. MBS does not accept any liability for any loss or damage to your computer 
system or network (including any consequential damage) which may occ!
ur directly or indirectly from the use of this email. 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] SYSTEM() for execution level?

2006-02-23 Thread u2
@LEVEL does that.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Barry Brevik
Sent: Thursday, February 23, 2006 7:09 PM
To: U2-users (E-mail)
Subject: [U2] [UV] SYSTEM() for execution level?


Anyone know if there is a SYSTEM() code that will return the execution
level of the running process?

Barry Brevik
---
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/


[U2] [UV] SYSTEM() for execution level?

2006-02-23 Thread Barry Brevik
Anyone know if there is a SYSTEM() code that will return the execution level
of the running process?

Barry Brevik
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Article

2006-02-23 Thread Robert Colquhoun
Hello,

http://www.economist.com/business/displaystory.cfm?story_id=811

Who said prime has been all but forgotten?

;-)

 - Robert
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Creating a new record from UniObjects

2006-02-23 Thread Wendy Smoak
On 2/22/06, Jeff Powell <[EMAIL PROTECTED]> wrote:

> I'll look at how to implement using this. Because I'm new to UniData
> I've really only done a uni.command and parsed the response. That was
> fast but not very robust.
>
> I am planning to take a class in Denver next month but I think you may
> have given me a jump start.

I didn't mean to suggest that you should use the DAO pattern, just
that there are some examples of reading and writing scattered
throughout the page that might help. :)  I never finished that
example, it doesn't even show how to deal with multivalued and
mv-associated fields. :/

You'll probably also want to learn how to call subroutines from UOJ. 
IMO, that's the single most useful method for getting data out.  One
call, do whatever you need to do in UniBasic code on the database
side, and return whatever data the Java code needs.

--
Wendy
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


u2-users@listserver.u2ug.org

2006-02-23 Thread Stevenson, Charles
A quick explanation for UV NEWBIES.

> Sosomeone have an idea of how some files contained on the 
> account have eluded entry into this file?
> 
> If an account save is performed would those files be excluded 
> from the save?

I know Deb & her responders already know this, but for the sake of any
newbies:

&UFD& is an F-pointer to the current working directory. 
On Unix it looks like this:

   VOC &UFD&
   01 File - Used by UniVerse to access the current directory.
   02 .
   03 D_UFD

The single dot in <2> has the usual Unix meaning in pathname contexts:
shorthand for the path you see if you do "SH -C'pwd' ".
So its just another Type-19 file.
Whatever shows up via "ls -l ." is what  will show up in &UFD&
(allowing for proper adjustment for UV & OS treatment of special
characters.)

!!! BUT BE CAREFUL !!! : Normally you use Type-19 to store flat files
like basic source & object, edi files, etc.  But &UFD& has your hashed
data files in it.


The same idea holds if you're running on Windows, but the commands &
special characters are different.


The name "&UFD&" is a holdover from Prime Information,  UV's spiritual
ancestor.
In PRIMOS, it stood for User File Directory.  Ampersands were also
abundant under Primos and we inherited them for &HOLD&, &SAVEDLISTS&,
&PH&, &COMO&, &PARTFILES&.

Chuck Stevenson
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UD] type-ahead buffer

2006-02-23 Thread Bill Haskett
Can the UniData type-ahead buffer be turned off?  I know
INPUTCLEAR/CLEARINPUT will clear it but how can I turn it off so a session
cannot type ahead?

Bill Haskett
Advantos Systems, Inc.
www.advantos.net 
(760)944-5570 (CA)
(360)923-4838 (WA)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Access IBM Knowledge base

2006-02-23 Thread Jerry Banker

On Unix

find . -print | fnuxi

- Original Message - 
From: "Ross Ferris" <[EMAIL PROTECTED]>

To: 
Sent: Thursday, February 23, 2006 2:53 AM
Subject: RE: [U2] Access IBM Knowledge base



I have a case in point at the moment - trying to access an article to
remind myself on how to use "fnuxi" on ALL files in a directory  the
information is there, but ...

(reminders gratefully accepted :)

Ross Ferris
Stamina Software
Visage > Better by Design!


-Original Message-
From: [EMAIL PROTECTED] [mailto:owner-u2-
[EMAIL PROTECTED] On Behalf Of Vance, Kathy
Sent: Thursday, 23 February 2006 8:23 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Access IBM Knowledge base

All,

I remember we had a discussion on the accessibility to the IBM

knowledge

base several weeks ago. Yesterday, I received my IBM user ID from our
vendor (tech support), which allows me to view the locked articles in
IBM KB. I believe this user list has very positive impact on this move
made by IBM. IBM KB should be opened to everybody, I think.

I would like to thank the people for their hard working in order to
maintain this user mail list. The list is a wonderful place for us to
share our knowledge. Meanwhile, it provides a communication channel so
that IBM could hear our voices. I have learnt a lot from the others via
the list.

Kathy
---
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/

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Access IBM Knowledge base/Blink Error

2006-02-23 Thread Clifton Oliver
Yes. It is a broken file. Records have a header that contain a  
forward pointer and a backward pointer. The backward pointer is the  
address of the previous record XOR'd with the record length as an  
integrity check. Unless you are comfortable with file internals and  
using filepeek, its time to backup the file and run fixtool.



--

Regards,

Clif

~~~
W. Clifton Oliver, CCP
CLIFTON OLIVER & ASSOCIATES
Tel: +1 619 460 5678Web: www.oliver.com
~~~


On Feb 23, 2006, at 8:37 AM, Debster wrote:

Yeah but yesterday I was seeking information on an "Blink error"  
with the
ominous "internal data error" clause added in both the U2 and AIX  
areas and
was unable to find anything.  Anyone have a clue as to what this  
might be?


 ~ Debbie

"Anyone can hold the helm when the sea is calm"

-Syrus Publilius

www.infinite-systems.net


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Ross Ferris
Sent: Thursday, February 23, 2006 3:53 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Access IBM Knowledge base


I have a case in point at the moment - trying to access an article to
remind myself on how to use "fnuxi" on ALL files in a  
directory  the

information is there, but ...

(reminders gratefully accepted :)

Ross Ferris
Stamina Software
Visage > Better by Design!


-Original Message-
From: [EMAIL PROTECTED] [mailto:owner-u2-
[EMAIL PROTECTED] On Behalf Of Vance, Kathy
Sent: Thursday, 23 February 2006 8:23 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Access IBM Knowledge base

All,

I remember we had a discussion on the accessibility to the IBM

knowledge

base several weeks ago. Yesterday, I received my IBM user ID from our
vendor (tech support), which allows me to view the locked articles in
IBM KB. I believe this user list has very positive impact on this  
move

made by IBM. IBM KB should be opened to everybody, I think.

I would like to thank the people for their hard working in order to
maintain this user mail list. The list is a wonderful place for us to
share our knowledge. Meanwhile, it provides a communication  
channel so
that IBM could hear our voices. I have learnt a lot from the  
others via

the list.

Kathy
---
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/
---
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/


u2-users@listserver.u2ug.org

2006-02-23 Thread Anthony Dzikiewicz
There could be lots of good reasons for files to be there if you are
running on Unix.  There could be log files for whatever, maybe the
'uvspool' directory is pointed there ?, there could be script files that
running via cron for automation. If users have your account as their
home directory, then there could be clutter from that situation.  Maybe
if you post what some of those unknown files look like, someone might be
able to identify them as such and such.  

There is the utility CLEAN.ACCOUNT that might be of some use to you.  In
any case, backup everything before you start

Good Luck
Anthony
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


u2-users@listserver.u2ug.org

2006-02-23 Thread Martin Phillips
Hi Debbie,

> I also remember being able to run a full set of Account File Stats and
> utilzing the Account Save/Restore to resize the files if I found more than
> 70% of the files hitting GRP100.

Beware!! The display produced by ACCOUNT.FILE.STATS is wrong!

The column headed "> 100%" is actually the number of groups over 75% full
because it includes the GRP100 value which is groups up to 100% full. For
best performance, you actually usually want your files to have most groups
tightly packed but not overflowed, i.e. in the GRP100 figure.

I have been explaining the anomoly (and its equivalent in FILE.STAT) for
many years when teaching UniVerse courses. It would be nice to see it fixed
one day.


Martin Phillips
Ladybridge Systems
17b Coldstream Lane, Hardingstone, Northampton NN4 6DB
+44-(0)1604-709200
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Access IBM Knowledge base/Blink Error

2006-02-23 Thread Vance, Kathy
I remember you could choose to let the site send you an email, which
would tell you why you could not view the articles. Thn you could ask
your vendor or IBM based on the error showing on the email.

I did that yesterday in order to view the articles. I got help from my
vendor.

Could you try it?

Kathy

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Debster
Sent: Thursday, February 23, 2006 8:37 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Access IBM Knowledge base/Blink Error

Yeah but yesterday I was seeking information on an "Blink error" with
the
ominous "internal data error" clause added in both the U2 and AIX areas
and
was unable to find anything.  Anyone have a clue as to what this might
be?

 ~ Debbie

"Anyone can hold the helm when the sea is calm"

-Syrus Publilius

www.infinite-systems.net


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Ross Ferris
Sent: Thursday, February 23, 2006 3:53 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Access IBM Knowledge base


I have a case in point at the moment - trying to access an article to
remind myself on how to use "fnuxi" on ALL files in a directory  the
information is there, but ...

(reminders gratefully accepted :)

Ross Ferris
Stamina Software
Visage > Better by Design!

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2-
>[EMAIL PROTECTED] On Behalf Of Vance, Kathy
>Sent: Thursday, 23 February 2006 8:23 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Access IBM Knowledge base
>
>All,
>
>I remember we had a discussion on the accessibility to the IBM
knowledge
>base several weeks ago. Yesterday, I received my IBM user ID from our
>vendor (tech support), which allows me to view the locked articles in
>IBM KB. I believe this user list has very positive impact on this move
>made by IBM. IBM KB should be opened to everybody, I think.
>
>I would like to thank the people for their hard working in order to
>maintain this user mail list. The list is a wonderful place for us to
>share our knowledge. Meanwhile, it provides a communication channel so
>that IBM could hear our voices. I have learnt a lot from the others via
>the list.
>
>Kathy
>---
>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/
---
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/


RE: [U2] Access IBM Knowledge base/Blink Error

2006-02-23 Thread Glenn Herbert
A blink error occurs when the internal linkage between records becomes 
inconsistent.  Specifically, the backward link of a record no longer 
references the location from which you just came in the file.  For 
instance, recordA forward links(flinks) to recordB which forward links to 
recordC.  In this scenerio, recordC also backward links (blinks) to 
recordB, which backward links to recordA.  This is considered to have link 
consistency.

I believe when I coded this all up (back in the dark ages it seems!) and 
made blink verification mandatory (flink verification was already of this 
state), I added the "internal data error" tag to indicate that this wasn't 
a message that should be ignored (though for years prior we had blink 
values in record headers and never verified them without issue - but 
that's a whole other story).   The blink verification simply takes the 
last location (in our above example that would be the location of recordA) 
and XOR's that value with the size of the current record (which would be 
recordB).  That computed value should match the blink value stored in the 
header of recordB.  If it doesn't match you get that nifty message showing 
computed and actual blink values along with the "internal data error" 
message and you are aborted out to fix the file (using uvfixfile, filepeek 
or whatever handy tool you choose - assuming you know how to fix it).

Disregarding hardware problems, one cause of blink loss is due to group 
splitting.  This happens in both static and dynamic files, but since 
dynamic files have more internal movement of data during balancing they 
tend to exhibit blink loss more often.  Usually this occurs when records 
are rebalanced from one group into another - this is generally just a copy 
of the data from one place to another, but sometimes I've seen occurence 
where the flink's are updated, yet the first blink in the new group is 
incorrect. 

I believe there are quite a number of people who are pretty adept at 
repairing these things - just understanding what the message means can 
help you determine what to do next.  Good luck!
=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
"I reject your reality and substitute my own" - Adam Savage

Glenn M. Herbert - Connectivity Development  Engineer
Information Integration Solutions, IBM Software Group
50 Washington Street Westboro, MA 01581
 508-599-7281 direct 



"Debster" <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED]
02/23/2006 08:37 AM
Please respond to
u2-users@listserver.u2ug.org


To

cc

Subject
RE: [U2] Access IBM Knowledge base/Blink Error






Yeah but yesterday I was seeking information on an "Blink error" with the
ominous "internal data error" clause added in both the U2 and AIX areas 
and
was unable to find anything.  Anyone have a clue as to what this might be?

 ~ Debbie

"Anyone can hold the helm when the sea is calm"

-Syrus Publilius

www.infinite-systems.net


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Ross Ferris
Sent: Thursday, February 23, 2006 3:53 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Access IBM Knowledge base


I have a case in point at the moment - trying to access an article to
remind myself on how to use "fnuxi" on ALL files in a directory  the
information is there, but ...

(reminders gratefully accepted :)

Ross Ferris
Stamina Software
Visage > Better by Design!

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2-
>[EMAIL PROTECTED] On Behalf Of Vance, Kathy
>Sent: Thursday, 23 February 2006 8:23 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Access IBM Knowledge base
>
>All,
>
>I remember we had a discussion on the accessibility to the IBM
knowledge
>base several weeks ago. Yesterday, I received my IBM user ID from our
>vendor (tech support), which allows me to view the locked articles in
>IBM KB. I believe this user list has very positive impact on this move
>made by IBM. IBM KB should be opened to everybody, I think.
>
>I would like to thank the people for their hard working in order to
>maintain this user mail list. The list is a wonderful place for us to
>share our knowledge. Meanwhile, it provides a communication channel so
>that IBM could hear our voices. I have learnt a lot from the others via
>the list.
>
>Kathy
>---
>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/
---
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/


u2-users@listserver.u2ug.org

2006-02-23 Thread Brian Phillips
> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Debster
> Sent: Thursday, February 23, 2006 8:34 AM
> To: u2-users@listserver.u2ug.org
> Subject: [U2] &UFD&
> 
> Sosomeone have an idea of how some files contained on the 
> account have eluded entry into this file?

Remote files (files with paths pointing to other accounts) will not be in
&UFD&.
What do the VOC records look like for some of the "missing" files?
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Access IBM Knowledge base/Blink Error

2006-02-23 Thread Debster
Yeah but yesterday I was seeking information on an "Blink error" with the
ominous "internal data error" clause added in both the U2 and AIX areas and
was unable to find anything.  Anyone have a clue as to what this might be?

 ~ Debbie

"Anyone can hold the helm when the sea is calm"

-Syrus Publilius

www.infinite-systems.net


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Ross Ferris
Sent: Thursday, February 23, 2006 3:53 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Access IBM Knowledge base


I have a case in point at the moment - trying to access an article to
remind myself on how to use "fnuxi" on ALL files in a directory  the
information is there, but ...

(reminders gratefully accepted :)

Ross Ferris
Stamina Software
Visage > Better by Design!

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2-
>[EMAIL PROTECTED] On Behalf Of Vance, Kathy
>Sent: Thursday, 23 February 2006 8:23 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Access IBM Knowledge base
>
>All,
>
>I remember we had a discussion on the accessibility to the IBM
knowledge
>base several weeks ago. Yesterday, I received my IBM user ID from our
>vendor (tech support), which allows me to view the locked articles in
>IBM KB. I believe this user list has very positive impact on this move
>made by IBM. IBM KB should be opened to everybody, I think.
>
>I would like to thank the people for their hard working in order to
>maintain this user mail list. The list is a wonderful place for us to
>share our knowledge. Meanwhile, it provides a communication channel so
>that IBM could hear our voices. I have learnt a lot from the others via
>the list.
>
>Kathy
>---
>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/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


u2-users@listserver.u2ug.org

2006-02-23 Thread Debster
Sosomeone have an idea of how some files contained on the account have
eluded entry into this file?

If an account save is performed would those files be excluded from the save?

This is on Universe 9.6.2.1 Unix 5.2

I have a massive files move upcoming and was considering utilizing an
account save prior as a safeguard but I want to be assured that I capture
all account files.  Currently the daily file saves are purely unix driven
and there have been some issues with not being able to restore data (don't
ask me I wasn't there yet!)

I also remember being able to run a full set of Account File Stats and
utilzing the Account Save/Restore to resize the files if I found more than
70% of the files hitting GRP100.  Is this still an option?  I think the last
time I did this was on Microdata/Mentor boxes running ye old PICK at ADP or
Ultimate umpteen years ago.

Gotta Love Clean up

 ~ Debbie

"Anyone can hold the helm when the sea is calm"

-Syrus Publilius

www.infinite-systems.net
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UD] Using Veritas Cluster Server with Unidata

2006-02-23 Thread Andy Pflueger
Hi,

We have a project in the works up the corporate chain which involves
setting up our Unidata/Oracle production system in a Veritas Cluster
Server environment for full fault tolerance and high availability.
This also includes a much needed hardware upgrade of our existing prod
box. My goal here is to collect more info on how Veritas Cluster
Server is to be setup and used with Unidata.

I'm being told by our Unix (Solaris SPARC 8/9) administrator that
they've purchased the Veritas Cluster Server agent for Unidata. Is
this a cake walk to setup and configure? Does anybody out there have
any general docs which they might send to me offline?

TIA,
Andy Pflueger
Ivy Hill Corporation
[EMAIL PROTECTED]

--
The Linux philosophy is 'Laugh in the face of danger'.
Oops. Wrong One. 'Do it yourself'. Yes, that's it.
Linus Torvalds
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Access IBM Knowledge base

2006-02-23 Thread asvin . dattani
My apologies - I replied to the wrong message last night

[EMAIL PROTECTED] wrote on 22/02/2006 21:27:35:

> You've gone very quiet
> *
> HSBC Bank plc
> Registered Office: 8 Canada Square, London E14 5HQ, United Kingdom
> Registered in England - Number 14259
> Authorised and Regulated by the Financial Services Authority
> *




HSBC Bank plc may be solicited in the course of its placement efforts for 
a new issue, by investment clients of the firm for whom the Bank as a firm 
already provides other services. It may equally decide to allocate to its 
own proprietary book or with an associate of HSBC Group. This represents a 
potential conflict of interest. HSBC Bank plc has internal arrangements 
designed to ensure that the firm would give unbiased and full advice to 
the corporate finance client about the valuation and pricing of the 
offering as well as internal systems, controls and procedures to identify 
and manage conflicts of interest.

HSBC Bank plc
Registered Office: 8 Canada Square, London E14 5HQ, United Kingdom
Registered in England - Number 14259
Authorised and regulated by the Financial Services Authority.




-
This transmission has been issued by a member of the HSBC Group "HSBC"
for the information of the addressee only and should not be reproduced
and/or distributed to any other person. Each page attached hereto must
be read in conjunction with any disclaimer which forms part of it.
Unless otherwise stated, this transmission is neither an offer nor the
solicitation of an offer to sell or purchase any investment. Its
contents are based on information obtained from sources believed to be
reliable but HSBC makes no representation and accepts no responsibility
or liability as to its completeness or accuracy.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Access IBM Knowledge base

2006-02-23 Thread Ross Ferris
I have a case in point at the moment - trying to access an article to
remind myself on how to use "fnuxi" on ALL files in a directory  the
information is there, but ...

(reminders gratefully accepted :)

Ross Ferris
Stamina Software
Visage > Better by Design!

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2-
>[EMAIL PROTECTED] On Behalf Of Vance, Kathy
>Sent: Thursday, 23 February 2006 8:23 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Access IBM Knowledge base
>
>All,
>
>I remember we had a discussion on the accessibility to the IBM
knowledge
>base several weeks ago. Yesterday, I received my IBM user ID from our
>vendor (tech support), which allows me to view the locked articles in
>IBM KB. I believe this user list has very positive impact on this move
>made by IBM. IBM KB should be opened to everybody, I think.
>
>I would like to thank the people for their hard working in order to
>maintain this user mail list. The list is a wonderful place for us to
>share our knowledge. Meanwhile, it provides a communication channel so
>that IBM could hear our voices. I have learnt a lot from the others via
>the list.
>
>Kathy
>---
>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/


SV: [U2] Is there a Better Editor?

2006-02-23 Thread Claus Derlien
Well Martin.

If you are refering to the SED editor, then I can recommend it, i bought
it in 1998, and never looked back again :-)

Best regards from Denmark 

Claus Derlien


Martin Phillips wrote:

> On the subject of third party editors, we have one that is 
> loosely based on the EDFS editor of Prime Information, 
> something that U2 users were crying out for in years gone by. 
> Tightly integrated with the underlying environment, it can 
> edit records in any U2 file and has many features aimed at 
> the application developer.
> 
> It's not free but at 100GBP (approx US$150) for a permanent, 
> unlimited site licence including reasonable support, it isn't 
> going to break the bank. Our users report significant 
> productivity gains compared to using AE/ED.
> 
--nodisclaim--

Frie Funktionfrer - faglig organisation og tvfrfaglig a-kasse - www.f-f.dk

***
Denne email og alle filer vedlagt som bilag kan indeholde fortroligt materiale, 
der kun er beregnet for adressaten,
og maa ikke udleveres eller kopieres til uvedkommende. Har De ved en 
fejltagelse modtaget denne email, bedes
De venligst omgaaende meddele os dette pr. telefon : 6313 8550. Paa forhaand 
tak.
***
This email and any files transmitted with it may contain confidential 
information intended for the addressee(s) only.
The information is not to be surrendered or copied to unauthorised persons. If 
you have received this
communication in error, please notify us immediately by telephone: +45 6313 
8550. Thank you.
***
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Is there a Better Editor?

2006-02-23 Thread Mark Johnson
Accusoft's WED is absolutely huge. Your programs will come to life as you
have a higher degree of visibility on them than the regular EDIT.

Unlike notepad or wordpad, WED is MV oriented with keyword highlighting,
indenting, double clicking to bring in INCLUDES and called subs, Compiling,
multiple windows, colors, color printing etc. Plus the normal cut & paste
and windows keyboard shortcuts.

I'm a converted EDit person who never got into VI or AE and it's great. I
speak with Peter Schellenbach on a weekly basis and I'll be writing an
article on WED soon. There are some nice features that will be added soon as
well.

Do not use it (or any program editor) as a data editor as you could offset
the fields pretty easily.

When combined with the GUI designer and run time, and at $1,000 US for 50
licenses, it's the absolute best bargain, hands down.

My 2 cents.
Mark Johnson
- Original Message -
From: "Dave Taylor" <[EMAIL PROTECTED]>
To: 
Sent: Tuesday, February 21, 2006 7:46 PM
Subject: Re: [U2] Is there a Better Editor?


> Michael,
>
> Yes.
>
> Download a free 30-day trial of Accuterm 2K2 from AccuSoft Enterprises at
> www.asent.com.
>
> Try their Windows editor, WED, at TCL and you'll love it.
>
> It will also move data back and forth between Unidata and your PC for
> whatever purposes you wish.
>
> You can buy it direct from AccuSoft on line.
>
> Dave Taylor
> President
> Sysmark Information Systems, Inc.
> 49 Aspen Way
> Rolling Hills Estates, CA 90274
> 800-SYSMARK (800-797-6275)
> (O) 310-544-1974
> (C) 310-561-5200
> (P) 800-339-1497
> (F) 310-377-3550
> Your Source for Integrated EDI Translation and DataSync Integration
> www.sysmarkinfo.com
>
> - Original Message -
> From: "Caskey, Michael" <[EMAIL PROTECTED]>
> To: 
> Sent: Tuesday, February 21, 2006 3:10 PM
> Subject: [U2] Is there a Better Editor?
>
>
> > Hi all, this is my first post to the board, so a big "Hi" to you all!
> >
> > I'm probably showing off my lack of knowledge here, but I hope someone
> > might have the knowledge I seek, so...
> >
> > I have been tasked with creating reports from our UniData system using
> > UniQuery.  For building queries, I have been given a tool called
> > PARADEX.  This tool seems extremely ancient to me.  The interface is
> > extremely cumbersome.  To edit anything, special commands are employed
> > to edit my queries, one line at a time.  I'm already fairly lost in the
> > system, so the last thing I need is cumbersome tools to make my life
> > even more difficult.  I like things to be easy peasy.  :)
> >
> > So, my questions are:
> >
> > 1. Is there a better way to run these queries?
> >
> > and
> >
> > 2. Is there a better query editor; text-based or GUI or both?
> >
> >
> >
> > Thank you all!
> >
> > Michael T. Caskey
> > ---
> > 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/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/