Re: [U2] [UD]
Hm, I really forgot this online help.But still - I do not have any statements for user aobrts defined for phantoms, nothing even ins LOGIN/PA. Maybe there are some UDT.OPTIONS that may influence the behaviour, that I'm not sure. What I mean with max error handling, is that all UD defined error conditions (at least what we know :)) are defined and producing some CRT output. What I may miss, is this flushing to flat file. I've seen many many times that if I the phantom dies, the _PH_/ output is not consistent. At the same time, in this case there is also not this ...completed... printout. It also seems to me, that this is quite specific to UDT 6.09 combined with SunOs 5.9. We never ever had thiis problem for example with UDT 5.x/6.x and RH. [EMAIL PROTECTED] wrote: We have an "overnight" process that does pretty much the same. Occasionally someone had their backup routine running at the same time. This locks the files at the OS level and causes UniData to stop with an error when it tries to do the read/write. We get the same error message (may be a different number) right at the end - but prior to that there are a bunch of "permission denied" errors. Perhaps it's within your error handling (I would not categorize ours as "maximum"). If your error handling is "trapping" the problem and not creating any output for the _ph_ to pickup maybe your just not "seeing" the problem. Does your error handling log/print the errors? I just checked HELP PHANTOM and this was in there: Phantom run basic error exit code The following table lists the exit codes generated by phantom processes: Code Description 1Runtime error 3User abort statement 4Phantom process requested input data 5Phantom process was interrupted 6Message queue error Hth Colin Alfke Calgary Canada -Original Message- From: Lembit Pirn As a matter of fact, no ! The two last lines are just: >> Phantom run basic error, exit 3. PHANTOM process 14038 has completed. << I've seen this quite many times before and never found out why it is ending. In principle it is just simple SELECT ... LOOP WHILE READ ... WRITE ... REPEAT loop with maximum error handling on read/write. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] [UD]
As a matter of fact, no ! The two last lines are just: >> Phantom run basic error, exit 3. PHANTOM process 14038 has completed. << I've seen this quite many times before and never found out why it is ending. In principle it is just simple SELECT ... LOOP WHILE READ ... WRITE ... REPEAT loop with maximum error handling on read/write. [EMAIL PROTECTED] wrote: Is there anything else in the _PH_ file? Usually there is a more descriptive error, something like 'requested input'. Hth Colin Alfke Calgary Canada -Original Message- From: Lembit Pirn Hi ! Does anybody know what this error message actually means ? Phantom run basic error, exit 3. I went through all manuals I have but found nothing. We are running UD 6.09 on Sun OS 5.9. -- Lembit Pirn --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
[U2] [UD]
Hi ! Does anybody know what this error message actually means ? Phantom run basic error, exit 3. I went through all manuals I have but found nothing. We are running UD 6.09 on Sun OS 5.9. -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Any have a Sun Sparc Box
We are running: SunOS medi 5.10 Generic_118833-03 sun4u sparc SUNW,Sun-Fire-V240 and SunOS medi3 5.9 Generic_112233-12 sun4u sparc SUNW,Sun-Blade-1500 UniData 6.09 Baakkonen, Rodney A (Rod) 46K wrote: We run both our production and our development off Sun Sparc Boxes. It is the 32 bit implementation of the OS: SunOS 5.9 Generic_118558-09 sun4u sparc SUNW,Sun-Fire-880 We have been on Solaris for about 4 years and currently are on Unidata 7.1.0. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of george r smith Sent: Thursday, September 14, 2006 11:04 AM To: u2-users@listserver.u2ug.org Subject: [U2] Any have a Sun Sparc Box All, Anyone have any experience with Sun Sparc boxes as development boxes for Unidata. Anyone heard if IBM might certify Unidata on the Solaris AMD boxes. thanks grs --- 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/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] UDT for next
Thanks all, my stupidiy ... Martin Phillips wrote: Hi Lembit, FOR T=1 TO DCOUNT(R.X,@SM) CRT 'In loop ':T NEXT It never goes to CRT if the R.X is empty. Does anybody know - is it a feature or bug ? Seems right to me. DCOUNT("",@SM) evaluates to zero hence you end up with FOR T = 1 TO 0 which will not execute the loop at all. As a general point of style/performance, beware that the end point of a FOR loop is evaluated for every cycle of the loop. Thus, if R.X had 1000 elements, you would extract and count them 1000 times. The perfomance will decrease rapidly as the number of elements goes up. Unless the count could change during execution of the loop, you should write N = DCOUNT(R.X,@SM) FOR T=1 TO N CRT 'In loop ':T NEXT 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/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
[U2] UDT for next
Hi ! We are running udt 6.1.x on Solaris and I discovered upredicted behaviour. FOR T=1 TO DCOUNT(R.X,@SM) CRT 'In loop ':T NEXT It never goes to CRT if the R.X is empty. Does anybody know - is it a feature or bug ? -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Knowing where you have come from in a Unibasic subroutine
You can try SYSTEM(52), I think. Martin Hutchinson wrote: I am looking for a command or method to determine where a Unibasic subroutine has been called from. Something similar to when you execute a debug statement and type '?'. Unidata obviously knows where it is when executing a called subroutine but can I get my hands on it at runtime? Any comments or ideas gratefully received. regards Martin Hutchinson --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Universe & Java
We have used Eclipse. Mike Randall wrote: Redback makes the entire U2 structure available to both .Net and Java. The real beauty of the product is that it's strictly an interface which allows you to fully utilize and work natively in the environment of your choice *if* that's what you want. You also have the flexibility to do as much or as little of your business logic in U2 as you see fit. Use Redback and pick your favorite IDE. Mike R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony Dzikiewicz Sent: Monday, May 29, 2006 11:23 AM To: u2-users@listserver.u2ug.org Subject: [U2] Universe & Java I was wondering what IDE if that folks are using to develop Universe/Java ? From time to time I mess around with Java, and I would like to use something that will be able to expose all the properties/methods of the UniObjects. I was using Visual Cafi and I remember that it did not do this. I think that program is non-existent. So, I need something else and Im looking for suggestions. So, all of you Java guys and gals what do you use to develop in Universe/Java ? Anthony -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] php and udt
Yes, we have. If You are interested, please contact me off-line. Symeon Breen wrote: Hi - has anyone got experiance or ideas of using php to access unidata data and unibasic routines - this would be on linux ? I know there used to be a perl DBI but that was for udt v 4.0 so I presume it does not work now. I have a few ideas but want to know if someone has been there before. Thanks Symeon --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] [UV] unirpc daemon, stopping and re-starting it from cron
You probably run some script in cron. So, in case You are using i.e. Born shell You may include something like: LANG=C export LANG in this script. Jacques G. wrote: As above, LANG=C (or similar) must be set for rpcd to work correctly. other uv services work fine with LANG set to anything, rpc needs it tho ... How can I check for the setting of LANG both on my current Universe setup and what its value is within the cron job ? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] [UV] unirpc daemon, stopping and re-starting it from cron
Is the LANG setting correct (C) ? Senn, Bruce wrote: FWIW, you can't always be sure of the environment when running something from cron. You might be missing something in the PATH variable or some other environment variable. I guess a question is whether this has worked in the past or is something new that you are trying to do? HTH. Bruce. Bruce J. Senn Phone: (518) 388-6664 Senior System Manager FAX:(518) 388-6458 Union College E-mail: [EMAIL PROTECTED] Schenectady, NY 12308 WWW: http://www1.union.edu/~sennb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jacques G. Sent: Tuesday, May 09, 2006 4:02 PM To: u2-users@listserver.u2ug.org Subject: [U2] [UV] unirpc daemon, stopping and re-starting it from cron Hello, We have a cron job which does the following: 1- Uses Universe's uv.rc script to stop Universe and unirpc daemon 2- Make a backup of the Production account into a different filesystem on the production machine. 3- Restart Universe & unirps using the uv.rc script 4- Start the backup to tape of the copy of the production environment. When Universe is re-started along with the unirpc daemon within the cron job, Universe works but the unirpc daemon doesn't work correctly. It must be stopped manually from the uv menu and re-started. Has anyone here encountered a similar problem ? I've tried to get support help from IBM but I get the run-around. I'm told that IBM won't debug my companies script even though I've repeatedly told them that the script we are using the uv.rc script that was written by IBM. We are running Universe 10.1.8 on a HP.UX 11i machine. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --- 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/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Unidata 6.0 Key length
To my knowledge this is dependent on OS platform You are running. Try LIMIT from ECL. u2ug wrote: REPOSTED (REDIRECTED) E-MAIL: Buffington, Wyatt <[EMAIL PROTECTED]> Does anyone know what is the maximum length of a key in a Unidata directory? -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] [UV] UniVerse Peculiarity
I do not know about UniVerse but in UniData I use PCPERFORM instead, just my .5 cents [EMAIL PROTECTED] wrote: Yes, "I" may be failing... "IT", as in "The Script" may be failing "A senior moment a day keeps the neighbors away" --Karl Pearson To all. I have a program that simply execute a unix script. This script is a two line script that reads... mt -f /dev/rmt/3m status > /data4/FTP.WORKDIR/check.status chmod 666 /data4/FTP.WORKDIR/check.status When I run the program from TCL, the program performs beautifully. When I try to execute this program from another program (using a basic EXECUTE statement), it fails every time I may be failing because the environment the calling program is executing as doesn't have a PATH variable setup correctly. Try putting the full path to the executables, I.e.: /usr/bin/mt and /bin/chmod HTH, Karl If I however change to a superuser and run this program, the execute statement performs as it should and I get the desired results. It is not a permissions problem, since I can run the program that executes the script from TCL (as a non-superuser) UniVerse 10.0.19 HPUX 11.0 Any ideas, thoughts, comments, suggestions. Cheers, Barry Rogen PNY Technologies, Inc. Senior Programmer/Analyst (973) 515 - 9700 ext 5327 [EMAIL PROTECTED] - Far better it is to dare mighty things, to win glorious triumphs even though checkered by failure, than to rank with those poor spirits who neither enjoy nor suffer much because they live in the gray twilight that knows neither victory nor defeat.t. roosevelt NOT INTENDED AS A SUBSTITUTE FOR A WRITING NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS THERETO, SHALL CONSTITUTE A BINDING CONTRACT, OR ANY CONTRACTUAL OBLIGATION BY PNY, OR ANY INTENT TO ENTER INTO ANY BINDING OBLIGATIONS, NOTWITHSTANDING ANY ENACTMENT OF THE UNIFORM ELECTRONIC TRANSACTIONS ACT, THE FEDERAL E-SIGN ACT, OR ANY OTHER STATE OR FEDERAL LAW OF SIMILAR SUBSTANCE OR EFFECT. THIS EMAIL MESSAGE, ITS CONTENTS AND ATTACHMENTS ARE NOT INTENDED TO REPRESENT AN OFFER OR ACCEPTANCE OF AN OFFER TO ENTER INTO A CONTRACT. NOTHING IN THIS E-MAIL, IN ANY E-MAIL THREAD OF WHICH IT MAY BE A PART, OR IN ANY ATTACHMENTS THERETO SHALL ALTER THIS DISCLAIMER. This e-mail message from PNY Technologies, Inc. is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- karl _/ _/ _/ _/_/_/ __o _/ _/ _/ _/_/ _-\<._ _/_/_/ _/_/_/ (_)/ (_) _/ _/ _/ _/ .. _/ _/ arl _/_/_/ _/ earson[EMAIL PROTECTED] -- IT Director, ATS Industrial Supply, Inc. http://www.atsindustrial.com Toll-free: 800-789-9300 x29 Direct2Desk: 801-978-4429 Facsimile: 801-972-3888 -- --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Pushing envelope on openSocket
We are running UDT (6.x) on Solaris & RH and normally we have around > 200 k open/close sockets a day without any issues. And we started to use sockets already since 2003 (don't remember even ;-) ) with version udt 5.x. It may be different of course for UV. Good luck ! Baker Hughes wrote: Hey friends, Is it true that you can only do 6k to 10k openSocket's (non-persistent) before having to reboot? We send each Credit Card Authorization (CCA) request to a certain port on a Linux server, running Live Processor. We do an openSocket, writeSocket, readSocket, closeSocket - for each CCA. The response is instantaneous (at least with the LP server in loopback mode). In phase nn we will provide on-screen response to the sales agent, so we're trying to do this all real-time, vs. polling some directory. We've just been made aware of an issue regarding the number of sockets you can open, not concurrently but consecutively, before the whole Transport layer craters, and errors out for any subsequent socket command. Reportedly, the resources don't get freed up at the *nix level, even though you've closed the socket. Has anyone encountered this issue, or heard credible reports thereof? Any work arounds, patches, technical bulletins, intelligence, or water cooler reports. TIA - Baker R. Baker Hughes UniVerse Programming Mouser Electronics, Inc. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Mustamde tee 4 Tallinn 10621 Estonia phone: +372 6566 232 GSM: +372 5028707 e-mail: [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
[U2] UDT
Hi there ! Has anybody seen this message: U_mutexwait(1), mainId:589829, subId:1, errno=28. We are running UDT 6.0.9 on SunOS 5.9. We started to get this message from time to time (seems to happen more often if the CPU load is on higher side, but still < 1) when we start any udt processes or even when compiling any UniBasic program. Any hints will be greatly appreciated. -- Lembit Pirn 7+7 Software +372 6566232 [EMAIL PROTECTED] Mustamde tee 4 10621 Tallinn Estonia --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] How to release locks (LIST.READU)
--- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Finding last day of month
You can try ICONV(date,code) and check STATUS(). If status() returns other than 0 then date is valid Marco Manyevere wrote: Hi, Given a date like 20040203, I want to return the last valid date for that month and year (20040229 in this case). What is the shortest code fragment to achieve this? At the moment I'm replacing the day with 01, then iconv, add 35 days to the internal date and then oconv and replace the day again with 01. I'm then on the first day of the next month. I then iconv, subtract 1 day and oconv. Thanks for any help. - Yahoo! Messenger NEW - crystal clear PC to PCcalling worldwide with voicemail --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
[U2] UDT ICONV/OCONV
Hi ! Can anybody explain, why ICONV('11.2333','MD10)=11 but OCONV(11.2333,'MD10')=11.2 Is it a bug ? -- Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Unidata acount on unix
Please also note, that in case You need unirpc, LANG should be C, otherwise You will run into problems with UOJ Susan Joslyn wrote: Than you all for the response (all below). I had tried 'newacct' and it didn't fly but I think the bit about including $UDTBIN in the path was the key. At any rate, once I used a full path to newacct it seemed to do the trick. Thanks! Martin Canty: just like Windoze, only better. 'newacct' You will also need to specify a valid unix group & owner. Mike Randall: It's been a while but I believe it was makeudt? Wally Terhune: same.You can also avoid the lists and prompts for owner and group by specifying eg newacct root sys Ken Wallis: Its the same ... You might need to make sure that your PATH includes $UDTBIN, and indeed that $UDTBIN is set, but once that is done, "newacct " should work. Mike Randall: So what was makeudt? Martin Canty: If I remember (in my dim & distant past), it's used to compile a new UniData executable... Used if custom C routines need to be compiled into UniData. Kevin King: ...to rebuild the udt executable from object libraries. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] UniObjects Ports?
By default UDT UO works on port 31438, so You probablu must enable this Dave Tabor wrote: Hi, Everyone. I'm trying to get a program that works fine on our intranet, to work from a remote location. If I put in the external IP address of the server from 'outside' it never connects. I'm guessing this is a firewall issue. Are there any ports that need to be opened in the firewall specifically for UniObjects? Should I approach this a different way? Any other thoughts? Thanks, Dave --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
[U2] UniData error
Hi ! After power crash we try to copy from crashed file to the new file and we get error messages for crashed groups, but then unusual error message showed up as well. Does anybody know what this error message actually mean: 1:blk check error in U_post_read for file 'IMP', key 'IO*MP 0222145*RDMS_13542_44368%13542%44183', number=147079 UPL error = 104 : Lock name not found Lockname (46597 22282252) RX -- 79872 upl unlock error(104). We are running UniData 6.09 on Solaris. -- Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] [UV] Run phantom as another user
One of the possibilites is probably to start shell script , in which you can change UID, start phantom and exit it. Adrian Matthews wrote: I can't seem to find it now but I'm sure I read in the release notes for one of the new releases that a user name can be specified at the command line when launching a phantom now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Buss, Troy (Logitek Systems) Sent: 25 January 2005 02:20 To: u2-users@listserver.u2ug.org Subject: [U2] [UV] Run phantom as another user Is there a way to run a phantom process as another user using the PHANTOM command? We have a situation where we have a background phantom process periodically monitoring a directory on another server. But, when the user that launched the phantom processor changes their password, the file open fails (due to expired credentials). We would like to have the phantom process 'run as' another user account that has the minimum access it needs where the password does not ever expire and create the failed open file problem. We are simply opening the file as a "F" voc pointer with line 2 "\\server\sharename\directory". The universe config parameter ALLOWNFS is set to 1. Thanks! -Troy --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ The information contained in this email is strictly confidential and for the use of the addressee only, unless otherwise indicated. If you are not the intended recipient, please do not read, copy, use or disclose to others this message or any attachment. Please also notify the sender by replying to this email or by telephone +44 (0)20 7896 0011 and then delete the email and any copies of it. Opinions, conclusions (etc.) that do not relate to the official business of this company shall be understood as neither given nor endorsed by it. IG Markets Limited and IG Index Plc are authorised and regulated by the Financial Services Authority and, in Australia, by the Australian Securities and Investments Commission. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] [UD] Files from UD Unix to UD Windows
What kind of Unix You have ? From Linux to Windows there is no need to use convdata/convidx.We never do it except copyinf files from Solaris to Linux or Windows. Have You installed both UDT's with the same LANGGROUP ? Marc Harbeson wrote: There is a convdata command that will change it from *nix to windows. Read about it in the u2 .PDF -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 1:26 PM To: [EMAIL PROTECTED] Subject: [U2] [UD] Files from UD Unix to UD Windows Is there a way to use files ftp'ed from UD on UNIX to UD on Windows XP? I'm not going to bore you with why other than I want to know if I can do it. I ftp the file, set up the voc pointer and I get the message "File D_FILE.837 does not belong to current language group" Any ideas? Bruce M Neylon Health Care Management Group --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/ --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/ -- Lembit Pirn O\ Seitse pluss Seitse Tondi 1 Tallinn 11313 Estonia tel. +372 6566232 [EMAIL PROTECTED] --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Syntax for WRITE ... ON ERROR
Brian Had You tried WRITE X ON F.Y,KEY ON ERROR IF something THEN do what END ELSE do else END END It should work. Lembit Pirn Seitse pluss Seitse O\ Tondi 1 Tallinn 11313 +372 6566232 [EMAIL PROTECTED] - Original Message - From: "Brian Leach" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 11, 2004 5:40 PM Subject: RE: [U2] Syntax for WRITE ... ON ERROR Wendy, Write MyRecord On MYFILE, MyID ON ERROR Crt "file write failed e.g. permissions error" End Then Crt "This worked a treat" End Else Crt "This failed miserably" End Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wendy Smoak Sent: 09 October 2004 00:46 To: [EMAIL PROTECTED] Subject: [U2] Syntax for WRITE ... ON ERROR From the manual: WRITE Syntax WRITE expr {ON | TO} [file.var,] record.ID.expr [ON ERROR statements] There's no 'END', so how does it know what belongs to 'ON ERROR' and what's just the next line of the program? I need to put an IF statement in the ON ERROR clause, to check for the STATUS()=10 and do something different if that happens. A quick test shows that I only get one line for ON ERROR-- code on a second line beneath it gets executed whether the write succeeds or not (though I didn't try an IF block). Any advice? A GOSUB statement, or ?? -- Wendy Smoak --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/ 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] To unsubscribe please visit http://listserver.u2ug.org/ --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/
[U2] UD & Fedora
Hi ! Has anybody out there has tried UniData 6.01 on Fedora. It installed without problems but we experience problems with UO and UOJ. Whenever we try to connect, we get error 39207 - slave-read error. It occurs with UniObjects and UO for Java. Any hints will be highly appreciated. Lembit Pirn 7+7 Software Tallinn, Estonia [EMAIL PROTECTED] --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/
Re: [U2] Preventing Unix Login
Can't You use dbpause ? or just stop telnetd ? Lembit Pirn 7+7 Software Tondi 1 Tallinn 11313 Estonia +372 65 66 232 [EMAIL PROTECTED] - Original Message - From: "Brutzman, Bill" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 21, 2004 7:39 PM Subject: [U2] Preventing Unix Login > We are getting file overflow error messages on our Sales Order files and I > want to make sure that nobody can login as it is resizing. > > Maybe I am overly concerned. > > We are on UV 8.3.3 on HP-Unix v10. Suggestions are welcome. > > Bill Brutzman > Manager, IT > HK MetalCraft Mfg Corp > PO Box 775 > 35 Industrial Road > Lodi NJ 07644-0775 > > 973.471.7770 x145 .voice > 973.471.9666 .fax > > www.hkMetalCraft.com > > [demime 1.01d removed an attachment of type application/octet-stream which had a name of Brutzman, Bill.vcf] > --- > u2-users mailing list > [EMAIL PROTECTED] > http://www.u2ug.org/listinfo/u2-users --- u2-users mailing list [EMAIL PROTECTED] http://www.u2ug.org/listinfo/u2-users