RE: [U2] Information on datastage

2005-06-27 Thread David Jordan
Some articles on datastage acquisition. http://www.arnnet.com.au/index.php?id=1347205012eid=-100 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] Dynamic Connect - Always On Top

2005-06-27 Thread Brutzman, Bill
I need to right-click on the blue title bar and uncheck Always On Top. Saving the session does not appear to correct this problem. How can this be better configured? --Bill --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] George Roehsner/GIANTMD/US/Ahold is out of the office.

2005-06-27 Thread George Roehsner
I will be out of the office starting 06/27/2005 and will not return until 06/30/2005. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] {Spam?} Unidata question

2005-06-27 Thread Barry Green
Hi Group, I'm using Unidata 6.1 on a Windows 2000 server. I'm having problems when I run a backup (using Arcserver) if users do not disconnect their sessions correctly the backup fails. I'm looking for a way to run a batch file before the backup which does the following: -

[U2] George Roehsner/GIANTMD/US/Ahold is out of the office.

2005-06-27 Thread George Roehsner
I will be out of the office starting 06/27/2005 and will not return until 06/30/2005. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] GPG encryption from within Universe

2005-06-27 Thread Ed Weissman
Anyone using gpg from GNUpg for encryption? Running IBM Universe on Windows NT. I downloaded this DOS based encryption software from www.gnupg.org as required by one of our trading partners. It works perfectly from a DOS command prompt - gpg --armor --recipient XXX -encrypt-file FILENAME

RE: [U2] GPG encryption from within Universe

2005-06-27 Thread Knowlton, Rod
If it works from a command line in C:\, try adding --homedir=C:\ to your command line string in Universe. - Rod -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ed Weissman Sent: Monday, June 27, 2005 1:54 PM To: u2-users@listserver.u2ug.org Subject: [U2]

Re: [U2] GPG encryption from within Universe

2005-06-27 Thread Key Ally
Ed, Don't execute it that way. Encapsulate it in a BAT file that starts by changing the directory to to the gpg directory. Let UniVerse run that new BAT on-demand. No looping needed. - Chuck Ed Weissman wrote: Anyone using gpg from GNUpg for encryption? Running IBM Universe on

[U2] RE: [OT] GPG encryption from within Universe

2005-06-27 Thread Matt Bettinger
Hi. -Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Ed Weissman Sent: Monday, June 27, 2005 1:54 PM To: u2-users@listserver.u2ug.org Subject: [U2] GPG encryption from within Universe Anyone using gpg from GNUpg for encryption? Running IBM

RE: [U2] Dynamic Connect - Always On Top

2005-06-27 Thread Bob Woodward
It may be the way you're getting to the Dynamic Connect session. Try looking at where your shortcuts are pointing to and/or try saving your session to a new session name. I have a number of saved sessions that give me different color schemes and different servers. I save those sessions to my

RE: [U2] GPG encryption from within Universe {Unclassified}

2005-06-27 Thread HENDERSON MIKE, MR
Ed What version of UniVerse? There are 'issues' with the DOS /c ... command if you try to pass it arguments (like FILENAME or path names) with embedded spaces. There is a fix for this in 10.1.1 From the 10.1.1 Release Notes: 5616At this release, a new GCI function, UVRunCommand, has been

RE: [U2] [List] Long Subject Lines

2005-06-27 Thread Tony Gravagno
Further discussion about the free Outlook macro can/should be taken to a Nebula RD e-mail list which I've created for the purpose. Please e-mail for info. In the mean time, a small update was made for the {Spam?} text we've seen recently: http://removethisNebula-RnD.com/freeware/ Responses to

[U2] - Determining time sequence

2005-06-27 Thread phil walker
I need to generate a timebased sequential key which is independent of daylight savings time, so that I can consistently know in what order transactions took place even when they occur over the daylight saving time changes. I have found the following in the help system about the BASIC SYSTEM(99)

RE: [U2] - Determining time sequence

2005-06-27 Thread Kevin King
Why not put the time in the record and use a purely sequential key? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of phil walker Sent: Monday, June 27, 2005 4:38 PM To: u2-users@listserver.u2ug.org Subject: [U2] - Determining time sequence I need to

RE: [U2] - Determining time sequence

2005-06-27 Thread Ross Ferris
Maybe you should (re)read the thread on sequential IDS -- simply have a counter that you increment and you can then be sure to maintain the correct sequence of events. If you want you could then add time() as part of the key, but the REAL, absolute sequence is then derived from your sequential ID,

RE: [U2] - Determining time sequence {Unclassified}

2005-06-27 Thread HENDERSON MIKE, MR
What doubts, Phil? Seems, at a very quick glance, to work OK on UV10.0.15/Win2K3 If you could have more than one transaction per second, you could code GMTSecs = SYSTEM(99) MilliTime = TIME() TimeStamp = GMTSecs + MilliTime - INT(MilliTime) This would give you ~18 millisecond resolution = ~6

RE: [U2] - Determining time sequence

2005-06-27 Thread phil walker
The thing is I do not want to end up with a bottle neck as the idea behind this is to create a log of transactions across the entire system which can then be used to replicate the data into SQL Server in sequential order. So I want a system wide sequential ID not per file. Using time and looping

RE: [U2] - Determining time sequence {Unclassified}

2005-06-27 Thread phil walker
Mike, My only doubt is having not used this before, is making sure that the number is indeed sequential and does not get adjusted with DST. Agreed it shouldn't but I am not sure how I would test this apart from waiting until DST to start/finish. I guess if it is valid, then I could use your

RE: [U2] - Determining time sequence

2005-06-27 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: What doubts, Phil? Seems, at a very quick glance, to work OK on UV10.0.15/Win2K3 If you could have more than one transaction per second, you could code GMTSecs = SYSTEM(99) MilliTime = TIME() TimeStamp = GMTSecs + MilliTime - INT(MilliTime) This would give

RE: [U2] - Determining time sequence

2005-06-27 Thread [EMAIL PROTECTED]
Phil Walker wrote: My only doubt is having not used this before, is making sure that the number is indeed sequential and does not get adjusted with DST. Agreed it shouldn't but I am not sure how I would test this apart from waiting until DST to start/finish. If you are on UNIX you can simply

RE: [U2] - Determining time sequence

2005-06-27 Thread Bruce Nichol
Goo'day, At 10:42 28/06/05 +1000, you wrote: And how many milliseconds are you allowing in each second Mike? 1000/18 ~= 55 I knew Wellington had its charms, but time going past 10 times more quickly wasn't one that sprang to my mind first ;^) So *that's* why they all look so old and

RE: [U2] - Determining time sequence {Unclassified}

2005-06-27 Thread HENDERSON MIKE, MR
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, 28 June 2005 12:42 To: u2-users@listserver.u2ug.org Subject: RE: [U2] - Determining time sequence [snip] This would give you ~18 millisecond resolution = ~6

RE: [U2] - Determining time sequence

2005-06-27 Thread Stuart . Boydell
Another possability is to implement the UUID generator for your OS. It's gauranteed to be unique and you can also implement this scheme across machines. eg. aix: sh -c /.../uuid_gen linux: uuidgen win: uuidgen.exe (win sdk command line tool) or CreateObject(Scriptlet.TypeLib).Guid,38 (Win

RE: [U2] - Determining time sequence

2005-06-27 Thread Timothy Snyder
[EMAIL PROTECTED] wrote on 06/27/2005 09:32:35 PM: If you are on UNIX you can simply set TZ to different values before running a program which records SYSTEM(99). To expand on this, you could switch to a time zone that doesn't observe Daylight Saving Time before running the program. Tim

RE: [U2] - Determining time sequence

2005-06-27 Thread Stuart . Boydell
One thing I forgot to mention about using system(99) is that, if for any reason, the machines clock is adjusted backwards (eg. ntd), there is an increased probability of duplicate numbers arising. With uuid, this should be handled by the uuid implimentation. Regards, Stuart Boydell [EMAIL

[U2] Clear Screen Problem

2005-06-27 Thread Pankaj Gupta04
Hi All, We have moved our universe development environment from one server to other server. Now at the new server, we are facing problem with CS (Clear screen) command. Whenever we do CS, the screen is cleared but at the top right corner there is $20 prompt. We are using wyse50 terminals as it is