RE: [U2] [UV] Triggers, transaction state and interaction with the 'outside world' [AD]

2005-09-08 Thread Tony Gravagno
MICHAEL.HENDERSON wrote: The mechanism chosen by our architecture team is Microsoft BizTalk Server Please can anyone offer any experienced-based advice here, or suggest an alternative d which is easier, better, and/or quicker than my ideas. And yes, I'd at least consider a buy my

Re: [U2] [UV] Triggers, transaction state and interaction with the 'outside world' {Unclassified}

2005-09-08 Thread Craig Bennett
Mike, I think your best solution would the IBM MQSeries interface (be aware that IBM have not provided access to the transaction/rollback aspects of MQ in their UV interface, this has led us to not switch to the new UV-MQ interface). If you can't use the MQSeries interface (and fair enough

[U2] [AD] Help Wanted [/AD]

2005-09-08 Thread U2UG
Reposted without endorsement for non-member: [EMAIL PROTECTED] Trust Company of America, a leading provider of financial services nationwide, has an immediate opening for a Senior Multivalue Database Programmer / Analyst. The ideal candidate for this position will have broad knowledge of

Memo: Re: [U2] UV: 64 bit files

2005-09-08 Thread asvin . dattani
Hi Mark, We use 64 bit files extensively for large files. The only drawback that we have found is that the Unix size of the file increases when you convert from 32 bit to 64 bit (because of larger forward and backward pointers). Theoretically, if you have a large number of very small records the

Re: [U2] [UV] Triggers, transaction state and interaction with the 'outside world' {Unclassified}

2005-09-08 Thread Ray Wurlod
Sequential file I/O is permitted while a transaction is active, so your trigger subroutine could write to a file that some server process (not in a transaction) was waiting on. Sequential file I/O statements can also work with named pipes, though these are more difficult in a Windows

Re: [U2] [AD] Help Wanted [/AD]

2005-09-08 Thread dave
Reposted without endorsement for non-member: [EMAIL PROTECTED] {SNIP} Relocation will not be considered - we are seeking a local candidate. Would be nice if those 'local' candidates knew who they were. Where is 'local'? -- Dave --- u2-users mailing list u2-users@listserver.u2ug.org To

RE: [U2] How to count records present in TYPE 30 file from unix shell prompt ??

2005-09-08 Thread Rod Hills
How about executing a FILE.STAT- Let's say your universe account is at /u1/uv and you want a record count of the VOC. Then enter cd /u1/uv nrec=`echo VOC | /u1/uv/bin/file.stat | awk '/^Number of rec/{print $5}'` Hope that helps... Rod Hills -Original Message- From: [EMAIL PROTECTED]

RE: [U2] [AD] Help Wanted [/AD]

2005-09-08 Thread Kevin King
Englewood, CO, apparently. Checked the website. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, September 08, 2005 7:07 AM To: u2-users@listserver.u2ug.org Would be nice if those 'local' candidates knew who they were.

[U2] sysback

2005-09-08 Thread Kevin King
I have a client on an AIX system using sysback for backup. I tried to selectively restore one file from the tape a few days ago and it got about 40% through loading and failed. Now, I am suspecting that when you restore from tape it doesn't go directly where you want it, but rather to a temp

RE: [U2] [AD] Help Wanted [/AD]

2005-09-08 Thread Jeff Fitzgerald
Their website seems to indicate they are 'here' in Englewood, Colorado -- part of the metro Denver area... Jeff Fitzgerald Fitzgerald Long, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, September 08, 2005 7:50 AM

Re: [U2] [AD] Help Wanted [/AD]

2005-09-08 Thread Gordon J Glorfield
h nationwide... Wonder what nation we are taking about? Trust Company of America... Does that imply the USA? Or is it some other western hemisphere country? Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 [EMAIL PROTECTED] wrote on 09/08/2005

RE: [U2] How to count records present in TYPE 30 file from unix shell prompt ??

2005-09-08 Thread George Gallen
I received the following error using UV10. [EMAIL PROTECTED] CBS-BLUE]$ echo HOLD | /usr/uv/bin/file.stat File name= HOLD Cannot process type 1, 19, 25 or 30 file HOLD. Looks like VOC is a type 3 file (which did work). file.stat does not seem to work with 1,19,30 files. George

RE: [U2] Unusual problem w/Dynamic Connect 'speed'

2005-09-08 Thread Joe Walter
Hi Robert, Plain old MS Telnet does NOT suffer from the same speed issues. Screens refresh blazingly fast using MS Telnet. Dynamic Connect just crawls. It's completely unbearable. Again, I just can't figure it out. It's the same version of Dynamic Connect in use by hundreds of my customers and

RE: [U2] Unusual problem w/Dynamic Connect 'speed'

2005-09-08 Thread brian
These may be way off-base here but: 1. Does the emulation you are using change the response time? e.g. if you switch from say vt100 to wyse60? 2. What is the network traffic like? Could DC be packeting up the telnet stuff differently than windows telnet? (AFAIR that is part of the telnet

RE: [U2] Unusual problem w/Dynamic Connect 'speed'

2005-09-08 Thread George Gallen
Could this be a reverse DNS lookup on connect issue with the server or firewall? If this is a unix machine, just to test, try putting an entry in the /etc/hosts file with the IP of the otherend with a definition, and see if the slowdown stops. If it does, then the DNS server is having a hard

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Jeff Schasny
FILE.STAT only works on static hashed Universe files. Since you seem determined to do this from unix how about this: cd to the unix directory holding the Univese account in question and execute the following /path to the uv/bin directory/uv COUNT WHATEVERFILENAME -Original Message- I

RE: [U2] Unusual problem w/Dynamic Connect 'speed'

2005-09-08 Thread Kevin King
C:\Windows\System32\Drivers\Etc\Hosts (XP, change Windows to WinNT on 2K) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George Gallen \ I believe Windows has a host file for local DNS entries but I'm not sure where it lives...possible c:\hosts (I think

Re: [U2] How to count records present in TYPE 30 file from unix shell prompt ??

2005-09-08 Thread Jerry Banker
Why not just do a count? $home/uv/bin/uv COUNT VOC - Original Message - From: [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, September 08, 2005 10:29 AM Subject: RE: [U2] How to count records present in TYPE 30 file from unix shell prompt ?? quote who=Rod Hills

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Rod Hills
For type 30 we have to be a bit creative... cd /u1/uv # Need to make an alias command called ANALYZE to file.stat ln bin/file.stat bin/ANALYZE # Be sure path includes binaries for universe PATH=/u1/uv/bin;$PATH # Get number of recs nrec=`echo FILE30 | ANALYZE -o STATS | awk '/^Number of

RE: [U2] Unusual problem w/Dynamic Connect 'speed'

2005-09-08 Thread Donnie Jacobs
On windows XP, it's in C:\WINDOWS\SYSTEM32\DRIVERS\ETC\HOSTS -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George Gallen Sent: Thursday, September 08, 2005 10:43 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Unusual problem w/Dynamic Connect

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Rod Hills
Not sure what happened to my last post, here are the proper lines- cd /u1/uv # Need to make an alias command called ANALYZE to file.stat ln bin/file.stat bin/ANALYZE # Be sure path includes binaries for universe PATH=/u1/uv/bin;$PATH # Get number of recs nrec=`echo FILE30 | ANALYZE -o STATS |

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Rod Hills
To get around auto-formatting, I'm putting in extra blank lines cd /u1/uv # Need to make an alias command called ANALYZE to file.stat ln bin/file.stat bin/ANALYZE # Be sure path includes binaries for universe PATH=/u1/uv/bin;$PATH # Get number of recs nrec=`echo FILE30 | ANALYZE -o STATS

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread George Gallen
looked fine to me, all of them.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Rod Hills Sent: Thursday, September 08, 2005 2:26 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] How to count records present in TYPE 30 file from unix To get around

RE: [U2] [UV] Triggers, transaction state and interaction with the 'outside world' {Unclassified}

2005-09-08 Thread HENDERSON MIKE, MR
Craig -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig Bennett Sent: Thursday, 8 September 2005 18:27 To: u2-users@listserver.u2ug.org Subject: Re: [U2] [UV] Triggers, transaction state and interaction with the 'outside world'

Re: [U2] [UV] Triggers, transaction state and interaction with the 'outside world' {Unclassified}

2005-09-08 Thread Craig Bennett
Mike, In this particular instance, 'hard real-time' isn't an issue, a delay of a few seconds would be quite OK. I wasn't commenting on hard real-time. MQ Series and MSMQ guarantee delivery not delivery time (I could be wrong about MSMQ). Rather I was thinking about how guaranteed you need

Re: [U2] [UV] Triggers, transaction state and interaction with the 'outside world' {Unclassified}

2005-09-08 Thread Craig Bennett
Mike, have a look at this MSMQ example from MSDN: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msmq/msmq_using_transactions_1gz2.asp I don't know if GCI presents any special problems under windows but this looks like it might work to send a single message transaction

RE: [U2] Listserver is Bowdlerising my posts... help

2005-09-08 Thread Stuart . Boydell
I have tried plain text - but even that gets chomped (sometimes) S -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, 9 September 2005 01:32 To: u2-users@listserver.u2ug.org Subject: Re: [U2] Listserver is Bowdlerising

RE: [U2] Listserver is Bowdlerising my posts... help

2005-09-08 Thread Bruce Nichol
Goo'day, Stuart, At 13:08 09/09/05 +1000, you wrote: I have tried plain text - but even that gets chomped (sometimes) S Perhaps the list's own personal tooth fairy is cutting out all the waffley bits.g ... Sorry! -- No virus found in this incoming message. Checked by AVG

RE: [U2] Listserver is Bowdlerising my posts... help

2005-09-08 Thread karlp
quote who=[EMAIL PROTECTED] I have tried plain text - but even that gets chomped (sometimes) All right admin folks... I'm out of ideas. If you Have Majordomo set to archive, then you could go searching in ~/majordomo-1.94.5/archives/u2-users.archive/NN for Stuart.Boydell and see what the

RE: [U2] Listserver is Bowdlerising my posts... help

2005-09-08 Thread David Jordan
Hi Stuart Could you send to [EMAIL PROTECTED] the original email and the corrupted email on U2? I cannot see any cause to the U2 list as all we see is the result You do not appear to have had the problem in the past. Has your company put something new up on the company email server that may be