RE: Printing to local printer

2004-03-05 Thread Anthony Youngman
Look into pipes and smbprint (comes with samba).

Sorry I can't be more specific than that, but I believe you can tie a
program to a pipe (opening the pipe will invoke the program), and I've
used smbprint (from within WP/SCO) to print from nix to a print queue on
a windows server. That didn't have a print queue on the nix server, but
don't forget WP had all its printer capability, drivers, the works, all
built in.

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Dana Baron
Sent: 04 March 2004 18:54
To: U2 Users Discussion List
Subject: RE: Printing to local printer

Wol,

Thanks for the idea. Looks promising but we're on a Unix server. Is
there a
way to refer to the local printers across operating systems? My SETPTR
documentation refers to mode 2 and the DEVICE setting as sending output
to
the Unix special file. Can the shared printer be defined as a unix
special
file without setting up a network print queue?

Dana Baron
System Manager
Smugglers' Notch Resort


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Anthony Youngman
Sent: Thursday, March 04, 2004 7:02 AM
To: U2 Users Discussion List
Subject: RE: Printing to local printer

What I'd do ...

This is UV, but I got the impression that UD might well work the same
way ...

A lot of our printers, rather than saying AT DEVICE in the SETPTR
statement, say AT \\windows\sharename. So each printer is set up on
the local pc to which it is attached, and the UV server knows nothing
about it at the Windows level (we have UV/NT).

Cheers,
Wol

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Dana Baron
Sent: 26 February 2004 19:07
To: [EMAIL PROTECTED]
Subject: Printing to local printer

Hi,

We use Unidata (v5.2) on a DEC/Compaq/HP Alpha under Tru64 Unix (v5.0a).
Most of our users connect to our Unidata system via terminal emulation
software (SmartTerm) from Windows-based PCs. Some of those users
function as
point-of-sale terminals. We're now trying to integrate credit card
validation via the internet directly from those work stations. We're
still
in test mode, but most of this seems to working OK. One remaining issue
is
printing the CC receipt. We would like the receipts to print on CC
receipt
printers attached to the workstation as either parallel or serial
printers.
We'd rather not set up print queues for all of these. Any ideas on how
to
accomplish this?

Dana Baron
System Manager
Smugglers' Notch Resort

 --
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users






***

This transmission is intended for the named recipient only. It may
contain
private and confidential information. If this has come to you in error
you
must not act on anything disclosed in it, nor must you copy it, modify
it,
disseminate it in any way, or show it to anyone. Please e-mail the
sender to
inform us of the transmission error or telephone ECA International
immediately and delete the e-mail from your information system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2
9911
7799, Hong Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New York
+1
212 582 2333.



***

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: [UV] Ever wondered how something works...

2004-03-05 Thread Martin Phillips
 Yes, but Q will subsequently log you off the system in UV, even if at
 the select list

Personally, I find Q so annoying that I take it out of the VOC where
possible.  I am forever quitting out of one page reports and finding I have
just logged myself out.

I also take out P as the shortcut for HUSH.  I'm sure most users have at
some time mistyped an ED command, not looked at the error and gone on to
type P.  OK, it's easy to reverse this one but on the rare occasion that I
want to use HUSH, I'll type the full command.

Martin Phillips
Ladybridge Systems
17b Coldstream Lane, Hardingstone, Northampton NN4 6DB
+44-(0)1604-709200

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: How to safely kill a runaway unidata process

2004-03-05 Thread Robert Paterson
Running deleteuser from the command prompt as an administrator should
suffice. Run it without arguments to get the syntax.

Robert Paterson
Technology Support Manager
IBM Certified Solutions Expert


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Dave S
Sent: 04 March 2004 22:55
To: [EMAIL PROTECTED]
Subject: How to safely kill a runaway unidata process


One of our users decided to run a report this morning at 9:30 and it still
running.
 
They lost the connection to the server, the process id is still out there
and we are unable to kill it. We tried the DELETUSER PID command and it did
not go away.
 
The process is using 200 megs of memory.
 
We are running Unidata 6.06 on Windows 2000.


-
Do you Yahoo!?
Yahoo! Search - Find what you're looking for faster.
-- 
u2-users mailing list
[EMAIL PROTECTED] http://www.oliver.com/mailman/listinfo/u2-users
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: VB primer help ?

2004-03-05 Thread Brian Leach


I'm just adding a few points to clarify Ian's excellent example - 

A. Ian's example uses the Oracle provider. For Access you need:

PROVIDER=Microsoft.Jet.OLEDB.4.0

B. Access has problems with some field names unless you enclose them in
square braces. 
Also be careful about delimiters around the data 

e.g. 

INSERT INTO [MyTableName] ([AString],[A Number],[ADate]) VALUES ('Some
Value',SomeNumber,#Some Date#)

C. You can do the whole thing in VBScript including reading the import file.

However this is a little non-obvious - you need to instantiate a
Scripting.FileSystemObject along the lines of:

set fso = CreateObject(scripting.filesystemobject)
Set F = FSO.OpenTextFile(fn, 1)
Do while not F.AtEndOfStream
  s = F.ReadLine 
  MyFields = split(s,MyDelimiter)
  ' do some processing here
Loop

F.Close

I'll let you work out the rest yourself!


Brian Leach

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Ian McGowan
 Sent: 05 March 2004 06:56
 To: 'U2 Users Discussion List'
 Subject: RE: VB primer help ?
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Maybe one of 
 you has a 
 trivial example of updating a row in a VB macro?  All the examples I 
 can find are doing it using a macro EXTERNAL to the 
 database, when the 
 one I'm using is run from inside the project... did that make sense?
 
 is there any reason you can't use ODBC or OLEDB and just 
 issue an update statement?  that would seem the most direct 
 route.  this link has an example of the connection string to 
 use for access:
 
 http://www.asp101.com/tips/index.asp?id=98
 
 and here's a vbscript example that inserts a bunch of rows.
 you would want to loop over your flat file reading a line at 
 a time, issuing updates like:
 
 sql = update mytable set fieldx = '  valuex  ' where
 sql = sql   primarykey = '  mykey  '
 con.execute(sql)
 
 
 UID = system1
 PWD = ***
 Service = marin
 
 Set oAux = CreateObject(Sys1Aux.CAux)
 Set Con = CreateObject(ADODB.Connection) Set rs = 
 CreateObject(ADODB.RecordSet) Con.Open( 
 PROVIDER=MSDAORA;DATA SOURCE=  Service  ;USER ID=  UID 
  ;PASSWORD=  PWD)
 
 for i = 1 to 1
   sql=insert into trin_temp values ('  i  ','  
 GUIDGen(oAux)  ')
   wscript.echo sql
   con.execute (sql)
 next
 
 Function GUIDGen(Aux)
   Dim sGUID
   sGuid = Aux.GuidGen
   ' Get rid of the cute curly stuff
   sGUID = Mid(sGUID, 2, Len(sGUID) - 2)
   GUIDGen = sGUID
 End Function
 --
 -
 --
 u2-users mailing list
 [EMAIL PROTECTED]
 http://www.oliver.com/mailman/listinfo/u2-users
 
 __
 __
 This email was checked by MessageLabs SkyScan before entering 
 Microgen.



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Memo: Re: SPOOLER NUMBER

2004-03-05 Thread asvin . dattani




Hi Alan,

Been off for a day, so I dont know if anybody else has already suggested
this, but something like this should work:

EXECUTE sh -c 'ls -lsat /u1/universe/uvspool | grep ayockey'  CAPTURING
OUT

/u1/universe/uvspool is the Unix directory where Universe spoolers are
stored. It may be different on your system.

ayockey is the user name that you are looking for.

OUT1 will contain the last spooler file for that user. The file name is
of the format

uvnaa

where n is the actual Universe spooler number.

hth.

asvin




Alan Yockey [EMAIL PROTECTED] on 04 Mar 2004 10:22

Please respond to U2 Users Discussion List [EMAIL PROTECTED]

Sent by:[EMAIL PROTECTED]

To:[EMAIL PROTECTED]
cc:
bcc:

Subject:SPOOLER NUMBER


 I am also interested in ways to manipulate spool files in Universe? The
spool number would be a big help so I could use usm commands to redirect
output externally to the report program which produced the spool file.
Universe 9.3 on DGUX

Is there a function with universe / basic to tell me the id of the last
print job generated from my current uv login?

Universe 10.0.13
RedHat Linux 8.0


Alan  Jayne Yockey
[EMAIL PROTECTED]
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


**
 This message originated from the Internet. Its originator may or
 may not be who they claim to be and the information contained in
 the message and any attachments may or may not be accurate.
**







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

   Member of the HSBC Bank marketing group. We sell life assurance,
   pensions and collective investment schemes and advise only on our
   own range of these products.
   



_

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
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Pick AP-Pro Discs

2004-03-05 Thread Anthony Youngman
How about UVPE/linux?

Especially if it's initially a proof of concept, that would be a legit
use of UVPE. And while the system might be slow, it'll run on outdated
hardware no problem, so when they go live, the only cost they've got
is the UV licence.

The only thing I would say about the hardware is, as always, stuff it
full to the gills with RAM if you can (and remember that the swap =
twice ram rule is *NOT*!!! obsolete).

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Johnson
Sent: 29 February 2004 19:43
To: U2 Users Discussion List
Subject: Re: Pick AP-Pro Discs

I had considered this option as well as the MV-Lite environments already
out
there. This is really a low-key client (private club membership) that i
am
making a good deal on developing the app from scratch. Once they get
their
original system duplicated (dbase) to Pick, I can enhance their
application
with many desired features and they will have a greater appreciation for
what the system can do for them. Perhaps, they can even grow.

As it is, I'm searching my office for the red-box set of AP-Pro install
discs from a converted client to install on an older P1-133 box. I'll
steal
an Arnet board from one of my other AP boxes (I don't need 24 users
anymore)
and 'build' them a good starting system. That's why I also solicited any
older AP-Pro systems.

thanks.
- Original Message -
From: Tony Gravagno [EMAIL PROTECTED]
To: 'U2 Users Discussion List' [EMAIL PROTECTED]
Sent: Sunday, February 29, 2004 2:10 PM
Subject: RE: Pick AP-Pro Discs


If you had more of these deals you could setup a hosted environment
(your
choice of DBMS including U2 and D3).  You use your own licenses on that
system and do your development there.  End-users can SSH into their own
production accounts and pay you some monthly rate for using your app and
resources until they're ready to move up.  Voila', your own ASP.  The
initial cost of getting a licensed DBMS and ports may be prohibitive,
but
the advantage is that the system still belongs to you when the end-user
has
moved on to their own environment or even to a hosted solution of their
own.
If you already have a licensed environment then it should cost nothing
to
move the license to a hosted box, so the cost of getting this going is
trivial.

Note that (to my knowledge) it violates license agreements to run live
end-users on development software provided by any of the MV DBMS
vendors.
You might be able to get a free temporary license to let users run for a
couple months on a try before they buy basis.  If you can manage that
then
they can host a DBMS locally and still pay you for your app.

Couple ways to cut this cookie...
Let me know if any of this is of interest.
Tony
Nebula RD
[EMAIL PROTECTED]

-Original Message-
I would like to acquire... an older Pick AP-Pro system... I only
 need 3-5 users.

I have a new client that I want to break into the Pick world
with an inexpensive application to start. I can develop their
new app on my own AP-Pro yet in 2 months they will want their
own system. We've explored the concepts of a W2K/D3 or U2 box
and its cost would kill the deal. I want to get my foot in the
door and as they grow, we can convert later.

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users




***

This transmission is intended for the named recipient only. It may contain private and 
confidential information. If this has come to you in error you must not act on 
anything disclosed in it, nor must you copy it, modify it, disseminate it in any way, 
or show it to anyone. Please e-mail the sender to inform us of the transmission error 
or telephone ECA International immediately and delete the e-mail from your information 
system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2 9911 7799, Hong 
Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New York +1 212 582 2333.

***

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Hennessey, Mark F.
snip
I can't find the info just now, but I have seen a java implementation of a terminal 
emulator that runs in a browser.  It should pop up in Google rather readily.
/snip

I think BlueZone from http://www.seagullsoftware.com/products/bluezone_terminal.html 
would fit the bill for PCs.  I'm not sure if they can support Linux or real *nix 
though.
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: Pick AP-Pro Discs

2004-03-05 Thread Mark Johnson
I'll restate the question:
snip
Does anyone have the box, manuals and installation diskettes for AP-Pro for
the Pentium I system that they could give/loan/sell?

I have a new client that I want to break into the Pick world
with an inexpensive application to start. I can develop their
new app on my own AP-Pro yet in 2 months they will want their
own system. We've explored the concepts of a W2K/D3 or U2 box
and its cost would kill the deal. I want to get my foot in the
door and as they grow, we can convert later.
snip

Thanks for all that replied with offers of alternate pick environments but
given my time constraints I don't want to venture into something new at this
time. I am comfortable with AP-Pro, installation  support-wise.

I have many clients on a variety of MV platforms and AP-Pro is the most
appropriate for this situation. I know how to install, remove, create
accounts etc on it.

Oddly enough, i've not been in on the decision for which MV that my other
clients have. I just come in after the original installers take their money
 run with no application support. This client has zero Pick background and
is running an app on dBase 3. AP-Pro would be nirvana for them.

Thanks again.

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Anthony Youngman
Not this old chestnut again !!!

Fire up an xterm, or konsole, or whatever you fancy, on the client
desktop. Telnet into the uv server, SET.TERM.TYPE VT100, and off you go.

End of story. *ANY* linux command shell will almost certainly emulate a
vt100 as its default setting. And if you have multiple emulators with
multiple emulations, it's not that difficult to write a program that
goes into LOGIN, fires off the answerback sequence to the terminal,
and sets up the correct terminal type.

Here we had a mix of wyse85s, pt200s and pt250s, and wIntegrate (we're
now down to wIntegrate running pt250 emulation and the odd wyse in vt100
mode). Barring screw-ups the user never enters terminal type because
it's all sorted out automatically.

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Vance Dailey
Sent: 04 March 2004 20:43
To: [EMAIL PROTECTED]
Subject: Brower based terminal emulator

We are considering running Linux on our user desktops and I am looking
for a
recommendation for a terminal emulation solution. One possibility is to
find
a terminal emulation program which runs locally on each desktop under
Linux.
A second possibility is to setup a server and use a web browser (such as
Mozilla or FireFox) on the user desktops to access the applications.
Ideally
the solution will work on both Windows and Linux desktops given that
some
desktops will likely have to remain Windows based. We run Universe 9.6
and
currently use a mix of Dynamic Connect and Wintegrate 4. Our current
emulation is Wyse 60.

I look forward to hearing about any good or bad experiences anyone has
had.

Thanks,
Vance

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users




***

This transmission is intended for the named recipient only. It may contain private and 
confidential information. If this has come to you in error you must not act on 
anything disclosed in it, nor must you copy it, modify it, disseminate it in any way, 
or show it to anyone. Please e-mail the sender to inform us of the transmission error 
or telephone ECA International immediately and delete the e-mail from your information 
system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2 9911 7799, Hong 
Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New York +1 212 582 2333.

***

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Pick AP-Pro Discs

2004-03-05 Thread Brian Leach
Mark,

I assume you've asked the question on comp.databases.pick?
If not, you may get more joy there.

Brian 

 
 I'll restate the question:
 snip
 Does anyone have the box, manuals and installation diskettes 
 for AP-Pro for the Pentium I system that they could give/loan/sell?



This email was checked on leaving Microgen for viruses, similar
malicious code and inappropriate content by MessageLabs SkyScan.

DISCLAIMER

This email and any attachments are confidential and may also be
privileged.

If you are not the named recipient, please notify the sender
immediately and do not disclose the contents to any other
person, use it for any purpose, or store or copy the information.

In the event of any technical difficulty with this email, please
contact the sender or [EMAIL PROTECTED]

Microgen Information Management Solutions
http://www.microgen.co.uk
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


ReCompiling UV

2004-03-05 Thread Brutzman, Bill

If I migrate from A to B [like HP-Ux to AIX] do all of the UniBasic programs
need to be recompiled in order to run on the target platform ?

--Bill
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: How to Add Triggers on Dicts

2004-03-05 Thread Anthony Youngman
When you specify DICT FILENAME, UV treats it internally as if there
existed a VOC entry

0001: F
0002: D_FILENAME
0003: \uv_account\DICT.DICT

There is no reason whatsoever why you shouldn't create an explicit VOC
entry of exactly this form. After all, as far as UV is concerned, the
D_FILENAME file is a data file, just like any other ...

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Daly, Mark
Sent: 02 March 2004 14:28
To: 'U2 Users Discussion List'
Subject: RE: How to Add Triggers on Dicts

Well.. It wouldn't surprise me if the CREATE TRIGGER command doesn't
recognize the 'DICT' keyword. Triggers generally deal with data updates.

I guess you could create a dummy file pointer that points to the
dictionary
as though it were a data file. Then reference that pointer when creating
the
trigger. BUT - I haven't tried it. Not sure I would try it. 

Good luck!


-Original Message-
From: Dennis Bartlett [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 02, 2004 9:20 AM
To: 'U2 Users Discussion List'
Subject: RE: How to Add Triggers on Dicts


The trigger is currently working fine on DATA files. It's
just the
adding of it to DICT files that's boggling me at present.
Once I've got
that right, I'll have to think of some way to monitor Type
1/19 files,
but that's another day.
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users




***

This transmission is intended for the named recipient only. It may contain private and 
confidential information. If this has come to you in error you must not act on 
anything disclosed in it, nor must you copy it, modify it, disseminate it in any way, 
or show it to anyone. Please e-mail the sender to inform us of the transmission error 
or telephone ECA International immediately and delete the e-mail from your information 
system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2 9911 7799, Hong 
Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New York +1 212 582 2333.

***

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: ReCompiling UV

2004-03-05 Thread Martin Phillips
 If I migrate from A to B [like HP-Ux to AIX] do all of the UniBasic
programs
 need to be recompiled in order to run on the target platform ?

No.  If you need to run fnuxi to correct byte ordering on your files, you
have to do the same to the object code but everything else should be
compatible.

Martin Phillips
Ladybridge Systems
17b Coldstream Lane, Hardingstone, Northampton NN4 6DB
+44-(0)1604-709200

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: Pick AP-Pro Discs

2004-03-05 Thread Mark Johnson
Thanks. I will try it.
- Original Message - 
From: Brian Leach [EMAIL PROTECTED]
To: 'U2 Users Discussion List' [EMAIL PROTECTED]
Sent: Friday, March 05, 2004 9:01 AM
Subject: RE: Pick AP-Pro Discs


 Mark,
 
 I assume you've asked the question on comp.databases.pick?
 If not, you may get more joy there.
 
 Brian 
 
  
  I'll restate the question:
  snip
  Does anyone have the box, manuals and installation diskettes 
  for AP-Pro for the Pentium I system that they could give/loan/sell?
 
 
 
 This email was checked on leaving Microgen for viruses, similar
 malicious code and inappropriate content by MessageLabs SkyScan.
 
 DISCLAIMER
 
 This email and any attachments are confidential and may also be
 privileged.
 
 If you are not the named recipient, please notify the sender
 immediately and do not disclose the contents to any other
 person, use it for any purpose, or store or copy the information.
 
 In the event of any technical difficulty with this email, please
 contact the sender or [EMAIL PROTECTED]
 
 Microgen Information Management Solutions
 http://www.microgen.co.uk
 -- 
 u2-users mailing list
 [EMAIL PROTECTED]
 http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: Pick AP-Pro Discs

2004-03-05 Thread Mark Johnson
Is that a URL or how do i get into it.

thanks
 I assume you've asked the question on comp.databases.pick?
 If not, you may get more joy there.
 
 Brian 
 


-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Pick AP-Pro Discs

2004-03-05 Thread Gordon Glorfield
No, it's a newsgroup list.  Go to Google and get into the groups.  You'll
find it there.

Gordon J. Glorfield
Sr. Applications Developer
MAMSI (A UnitedHealth Company)
301-360-8839 



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Mark Johnson
Sent: Friday, March 05, 2004 10:02 AM
To: U2 Users Discussion List
Subject: Re: Pick AP-Pro Discs


Is that a URL or how do i get into it.

thanks
 I assume you've asked the question on comp.databases.pick?
 If not, you may get more joy there.
 
 Brian
 


-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Notice of Confidentiality:  The information included and/or attached in this
electronic mail transmission may contain confidential or privileged
information and is intended for the addressee.  Any unauthorized disclosure,
reproduction, distribution or the taking of action in reliance on the
contents of the information is prohibited.  If you believe that you have
received the message in error, please notify the sender by reply
transmission and delete the message without copying or disclosing it. 

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: UniVerse 10 :Network writes not allowed within a transacton.

2004-03-05 Thread Anthony Youngman
The whole point of using transactions is to ensure data integrity.

Writing across a network is a pretty sure-fire way of inviting integrity
problems.

The only way to guarantee that you don't have problems is to ban mixing
the two.

If you investigate the NFS protocol (which I guess your remote system is
using?) you will find that it explicitly guarantees that the integrity
of the link CANNOT be trusted. Now I think you see why transactions
forbid its use ...

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Ang Suan Yong
Sent: 04 March 2004 03:08
To: U2-users
Subject: UniVerse 10 :Network writes not allowed within a transacton.

Dear U2 Users,

Is anyone having idea regarding the uniVerse 10 when apply the
Begin/End Transaction, it do not allow to write to the remote file.
Once
execute the program , it prompt the belowing messages Network writes not
allowed within a transacton.
Is it the security of the Database ?

For eg , From Server A , having a program as below  to access
the
remote file of Server B ( ie ASY.FV )  which is code within the Begin /
End
Transaction

...
READU REC FROM ASY.FV , ID ELSE
CRT ERROR READ FILE
EXIT

BEGIN TRANSACTION
REC1 = TEST : X
WRITE REC TO ASY.FV,ID ELSE
CRT FAIL WRITE REC
END
IF ( P.ERROR ) THEN
ROLLBACK
END
COMMIT
END TRANSACTION
RELEASE ASY.FV

Error message is as follow

FATAL: Network writes not allowed within a transacton.
rolling back uncommitted transactions begun within this execution
environment.




Thanks and Regards



DISCLAIMER:-
This email is confidential and intended only for the use of the
individual
or entity named above and may contain information that is privileged. If
you
are not the intended recipient, you are notified that any dissemination,
distribution or copying of this email is strictly prohibited. If you
have
received this email in error, please notify us immediately by return
email
or telephone and destroy the original message.  Thank you.


-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users




***

This transmission is intended for the named recipient only. It may contain private and 
confidential information. If this has come to you in error you must not act on 
anything disclosed in it, nor must you copy it, modify it, disseminate it in any way, 
or show it to anyone. Please e-mail the sender to inform us of the transmission error 
or telephone ECA International immediately and delete the e-mail from your information 
system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2 9911 7799, Hong 
Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New York +1 212 582 2333.

***

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: How to safely kill a runaway unidata process

2004-03-05 Thread Marc Harbeson
Did you try killing it with UNIADMIN?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Dave S
Sent: Thursday, March 04, 2004 5:55 PM
To: [EMAIL PROTECTED]
Subject: How to safely kill a runaway unidata process

snip
are unable to kill it. We tried the DELETUSER PID command and it did not
go away.
snip
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: How to safely kill a runaway unidata process

2004-03-05 Thread Dave S
yes


-
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster.
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


multiplying totals

2004-03-05 Thread Kevin Michaelsen
I need help on the syntax when multiplying with an EVAL statement. I've 
tried simplify the statement. It goes something like this:
AVERAGE FIELD1 * TOTAL EVAL IF(FIELDZ=X )THEN COUNTER ELSE 0

I basically want the average of FIELD1 (MULTIPLIED) BY COUNTER

Any help would be appreciated.

kevin

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: [UV] multiplying totals

2004-03-05 Thread Ray Wurlod
You need the TOTAL function to keep the running totals, and the CALC keyword to use 
them in the formula.
CALC EVAL TOTAL(IF FIELDZ = X THEN COUNTER ELSE 0) * FIELD1 / TOTAL(1)
- Original Message -
From: Kevin Michaelsen [EMAIL PROTECTED]
Date: Fri, 05 Mar 2004 14:55:33 -0500
To: [EMAIL PROTECTED]
Subject: multiplying totals

 I need help on the syntax when multiplying with an EVAL statement. I've 
 tried simplify the statement. It goes something like this:
 AVERAGE FIELD1 * TOTAL EVAL IF(FIELDZ=X )THEN COUNTER ELSE 0
 
 I basically want the average of FIELD1 (MULTIPLIED) BY COUNTER
 
 Any help would be appreciated.
 
 kevin
 
 -- 
 u2-users mailing list
 [EMAIL PROTECTED]
 http://www.oliver.com/mailman/listinfo/u2-users
 

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Vance Dailey
I looks like a great product, but since its a windows application it will
not meet our needs. Thanks for the tip.
Vance

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Hennessey, Mark F.
Sent: Friday, March 05, 2004 8:43 AM
To: U2 Users Discussion List
Subject: RE: Brower based terminal emulator


snip
I can't find the info just now, but I have seen a java implementation of a
terminal emulator that runs in a browser.  It should pop up in Google rather
readily.
/snip

I think BlueZone from
http://www.seagullsoftware.com/products/bluezone_terminal.html would fit the
bill for PCs.  I'm not sure if they can support Linux or real *nix though.
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Vance Dailey
The price is right. I'll have to do some testing to see if changing from
wyse 60 is going to be a headache. Thanks for the suggestion.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Cameron Booth
Sent: Thursday, March 04, 2004 6:25 PM
To: U2 Users Discussion List
Subject: RE: Brower based terminal emulator


snip
Ideally the solution will work on both Windows and Linux desktops given that
some desktops will likely have to remain Windows based
/snip

Have a look at http://javatelnet.org/ can be run as an applet or an
application

Cheers,

Cam Booth



Disclaimer Notice
This message contains privileged and confidential information intended only
for the use of the addressee named above.  If you are not the intended
recipient of this message you are hereby notified that you must not
disseminate, copy or take any action or place any reliance on it. If you
have received this message in error please notify Ultradata immediately.
Any views expressed in this message are those of the individual sender,
except where the sender specifically states them to be the views of
Ultradata Australia Pty. Ltd.

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Vance Dailey
I had not considered such a minimal solution. I will have to see if our
application can run under a VT emulation. What are the limitations of
running Universe applications without a separate terminal emulator?
Thanks,
Vance

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Anthony Youngman
Sent: Friday, March 05, 2004 8:57 AM
To: U2 Users Discussion List
Subject: RE: Brower based terminal emulator


Not this old chestnut again !!!

Fire up an xterm, or konsole, or whatever you fancy, on the client
desktop. Telnet into the uv server, SET.TERM.TYPE VT100, and off you go.

End of story. *ANY* linux command shell will almost certainly emulate a
vt100 as its default setting. And if you have multiple emulators with
multiple emulations, it's not that difficult to write a program that
goes into LOGIN, fires off the answerback sequence to the terminal,
and sets up the correct terminal type.

Here we had a mix of wyse85s, pt200s and pt250s, and wIntegrate (we're
now down to wIntegrate running pt250 emulation and the odd wyse in vt100
mode). Barring screw-ups the user never enters terminal type because
it's all sorted out automatically.

Cheers,
Wol 
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Ian McGowan
On Fri, 2004-03-05 at 13:41, [EMAIL PROTECTED] wrote:
 I had not considered such a minimal solution. I will have to see if our
 application can run under a VT emulation. What are the limitations of
 running Universe applications without a separate terminal emulator?
 Thanks,

xterm *is* a terminal emulator.  it emulates a vt100 terminal (plus a
little extra).  i spend most of my day in multi-gnome-term with many
sessions open to a unidata host.  it works fine.  if you're doing crazy
things with fonts, line-drawing chars or colours it may not work so well
for you.  a cd-based distribution like http://www.knopper.net/knoppix/
seems like a natural way to test things out.

ian

-- 
Ian McGowan [EMAIL PROTECTED]

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: Brower based terminal emulator

2004-03-05 Thread Karl L Pearson
I downloaded and use a java-based telnet client that will also do SSH.
It can be found at: http://mud.de/se/jta/, but in searching for this on
Google by entering Java Telnet Application I also found this:

http://sourceforge.net/projects/jta/ which looks like the sourceforge
entry for the one above
and http://javassh.org/ I don't know what this one is.

JTA has been pretty nice for our applciation, which is a text-based
'green screen' application.

Let me know if you need help with it.

Karl

On Thu, 2004-03-04 at 14:19, Jefferson, Jim wrote:
 Vance:
 
 I can't find the info just now, but I have seen a java implementation of a terminal 
 emulator that runs in a browser.  It should pop up in Google rather readily.
 
 Jim
 
  -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]  On Behalf Of Vance Dailey
 Sent: Thursday, March 04, 2004 3:18 PM
 To:   'U2 Users Discussion List'
 Subject:  RE: Brower based terminal emulator
 
   File: ATT707352.txt  I have just started the search and I figured that this 
 group was the best
 place to start. I am hoping to find a pioneer without too many arrows in
 their back that could steer me to a workable solution. Another option I have
 considered is to find a Windows solution that runs under Wine. Thanks for
 the reply.
 Vance 
-- 
Karl L. Pearson
Director of IT,
ATS Industrial Supply
Direct: 801-978-4429
Toll-free: 888-972-3182 x29
Fax: 801-972-3888
http://www.atsindustrial.com
[EMAIL PROTECTED]

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: UniVerse 10 :Network writes not allowed within a transacton.

2004-03-05 Thread Ray Wurlod
I believe you will find that this is one of the things documented as being prohibited 
while a transaction is active.

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users