Re: [U2] ODBC Difficulties

2006-01-12 Thread Simon Lewington
Kevin King...
 I am having some difficulties getting the Unidata ODBC driver to work
 properly.
...
 I have verified the registry settings per the
 ODBC documentation, verified the location and contents of uci.config,
 and verified the ODBC configuration settings.  Still, when trying to
 connect to the ODBC data source via Excel, a message appears saying
 that the driver can't find the UCI configuration in the system
 registry.

 Is there possibly a second place in the registry where that ODBC
 driver is expecting to find the path to uci.config?

Is this the informix/ibm registry location problem?  There was at least one
version of the ODBC client software where the install wrote keys to
HKLM\software\ibm but the software looked in HKLM\software\informix.  This
tends to work in the development office where the informix keys exist from
an older install.

You could use sysinternals' regmon
http://www.sysinternals.com/Utilities/Regmon.html to see what's being
looked at.

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


RE: [U2] ODBC Difficulties

2006-01-12 Thread Kevin King
BRILLIANT!  Thanks Simon (for regmon)!  This should be very useful.

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


[U2] System Migration issues

2006-01-12 Thread Sirulnick, Steve
I am migrating an old AIX server running U2 to RH Linux.  Because of the
server's limitations, I need to transfer files between the two devices via
FTP and then converting the files for Linux use.  After doing so, my
distributed files are getting corrupted. It looks like the IBM provided
fixtool utility repairs the files, but it's taking way too long for my
larger distributed files.  Making a HUGE assumption that it's the file
transfer responsible for the file corruption, is there a preferred method
for copying data files?

 

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


Re: [U2] PROC Question

2006-01-12 Thread Mark Johnson
Microdata allows multiple lines on PROCS, and I used to be very good at PQN
procs but I don't recall the syntax.

I would stay with the offered suggestions.
My 1 cent
- Original Message -
From: Bill Haskett [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Wednesday, January 11, 2006 1:35 PM
Subject: RE: [U2] PROC Question


 Bob:

 I used to be pretty proficient in PROC and have never heard of this...but
 that doesn't mean it doesn't exist.  :-)

 Bill


  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Bob Woodward
  Sent: Wednesday, January 11, 2006 9:35 AM
  To: U2-Users List
  Subject: [U2] PROC Question
 
  Hi folks,
 
  I can't find anything in the IBM Doc's for ProVerb's that
  tells me how to create an entry that will allow me to put
  multiple commands on a single line.  In a nutshell, from a
  menu when a user selects an option, I want to be able to
  execute multiple commands.
 
  Currently, I use multiple lines such as:
 IF A = 5 [USER.PL BASIC.PGM1
 IF A = 5 [USER.PL BASIC.PGM2
 IF A = 5 G 10
 
  What I want to be able to do is:
 IF A = 5 [USER.PL BASIC.PGM1];[USER.PL BASIC.PGM2];G 10
 
  Is my mind fried?  Maybe...  But is there something that will work?
 
  BobW
  ---
  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] PROC Question

2006-01-12 Thread Mark Johnson
One final oft-seen PROC thing.

You can have a PROC that has statement labels within have those statement
sections referenced individually from the outside.

Example
PROX AAA
PQN
100 T HERE AT 100
X
200 T HERE AT 200
X
300 T HERE AT 300
X

and have calling PROCS likewise:

[PROX AAA] 100
(some other proc statements)
[PROX AAA] 200
(some other proc statements
[PROC AAA] 300

So it's like haveing a library of SUBs in one place.

My 1 cent.
Mark Johnson
- Original Message -
From: Bob Woodward [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Wednesday, January 11, 2006 2:50 PM
Subject: RE: [U2] PROC Question


 Thanks, everyone.  I got exactly the answer I was afraid I would get.
 Yes, my mind is fried...  heavy sigh

 Because of system programming standards, I need to stay with a PROC but
 I was hoping to be able to streamline them a little bit.

 I appreciate the answers everyone offered, including the ones to quit
 using PROC's (and the thought has crossed my mind a number of times) but
 for the most part, we keep the PROC's pretty simple.

 Again, thanks.

 BobW


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Bob Woodward
 Sent: Wednesday, January 11, 2006 9:35 AM
 To: U2-Users List
 Subject: [U2] PROC Question

 Hi folks,

 I can't find anything in the IBM Doc's for ProVerb's that tells me how
 to create an entry that will allow me to put multiple commands on a
 single line.  In a nutshell, from a menu when a user selects an
 option, I want to be able to execute multiple commands.

 Currently, I use multiple lines such as:
IF A = 5 [USER.PL BASIC.PGM1
IF A = 5 [USER.PL BASIC.PGM2
IF A = 5 G 10

 What I want to be able to do is:
IF A = 5 [USER.PL BASIC.PGM1];[USER.PL BASIC.PGM2];G 10

 Is my mind fried?  Maybe...  But is there something that will work?

 BobW
 ---
 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] System Migration issues

2006-01-12 Thread Baker Hughes
Could you T-Load them to a virtual tape file (.vtf) and then ftp that to
wherever you want?

R. Baker Hughes
UniVerse Programming
Mouser Electronics, Inc.


I am migrating an old AIX server running U2 to RH Linux.  Because of the
server's limitations, I need to transfer files between the two devices
via FTP and then converting the files for Linux use.  After doing so, my
distributed files are getting corrupted. It looks like the IBM provided
fixtool utility repairs the files, but it's taking way too long for my
larger distributed files.  Making a HUGE assumption that it's the file
transfer responsible for the file corruption, is there a preferred
method for copying data files?

 

Steve
---
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] System Migration issues

2006-01-12 Thread karlp
You didn't say which U2 product, which makes all the difference in the
world for this answer. So, because I know a bit of this on Universe, I'll
target my answer at that DBMS.

My experience with distributed file transfers is that FTP is fine.
HOWEVER, when the file is on the new system, you must run fnuxi on the
file before doing anything else. Fnuxi clears the distributed parts out of
the file header, thus making it a standard hashed file again. So, the main
file has to be removed and then the file re-distributed. The Partfile
algorithm is hard-coded in each file's header as is the absolute path to
each partfile.

HTH

Karl


quote who=Sirulnick, Steve
 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred method
 for copying data files?



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


Re: [U2] System Migration issues

2006-01-12 Thread u2
[EMAIL PROTECTED] wrote:
 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred method
 for copying data files?
 
Two possible problems. You ARE transferring them in ftp in binary mode?

And you have run the clean-up tool that corrects the byte order? (I think 
that's what Karl is talking about)

You might also find it easier to do a UVBACKUP and then restore that, because 
that (I think) gets round all the endian issues and that sort of stuff.

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


RE: [U2] System Migration issues

2006-01-12 Thread Robert Paterson
If it is UniData - you probably need to consider the endian of the files
(which is the same consideration in fact if it is UniVerse).

So - you would need to run convdata, convidx, convcode and quite
possibly convmark.

Each are fairly well documented in the manuals - but my guess is that
will fix the problem if you are UniData based.

If it is UniVerse, FORMAT.CONV (which is what fnuxi was renamed to be),
is your answer.

Hope that helps.


This e-mail is for the use of the intended recipient(s) only. If you have 
received this e-mail in error, please notify the sender immediately and then 
delete it. If you are not the intended recipient, you must not use, disclose or 
distribute this e-mail without the author's prior permission. We have taken 
precautions to minimize the risk of transmitting software viruses, but we 
advise you to carry out your own virus checks on any attachment to this 
message. We cannot accept liability for any loss or damage caused by software 
viruses.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] System Migration issues

2006-01-12 Thread Scott Richardson
Hello Steve,
Are you setting the FTP transfer process to binary mode
before doing the transfer?

What versions of UniVerse or UniData?
Any compatible tape device between the servers?

Have you tried a process similar to the following:
1) creating a type 1 file
2) copying data from larger distributed file to the type 1 file
3) compress the type 1 file
4) ftp using binary mode
5) uncompress on new server
6) manually create the new larger distributed file
7) copy from the Type 1 file to the newly created distributed file

That is one approach - can probably come up with a few other ideas.

I am local to you in the greater Boston area, and have some expertise
in server migrations and U2 environments. Can I be of  some assistance?

Regards,
Scott Richardson
Senior Systems Engineer / Consultant
Marlborough, MA 01752
888-912-9681 SkyPage (numeric  voice mail paging)
Email: [EMAIL PROTECTED]
Web: http://home.comcast.net/~CheetahFTL/CC/CheetahFTL_1.htm

- Original Message - 
From: Sirulnick, Steve [EMAIL PROTECTED]
To: u2-users@listserver.u2ug.org
Sent: Thursday, January 12, 2006 9:42 AM
Subject: [U2] System Migration issues


 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred method
 for copying data files?



 Steve
 ---
 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] RE System Migration Issues

2006-01-12 Thread Brian Leach
Steve

Assuming UniVerse, uvbackup and uvrestore is safest: it is item level and will 
create new files on the target.

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


RE: [U2] PROC Question

2006-01-12 Thread Tony Gravagno
Bob Woodward wrote:
 What I want to be able to do is:
IF A = 5 [USER.PL BASIC.PGM1];[USER.PL BASIC.PGM2];G 10

In RPL the subvalue mark is used to accomplish this:
IF A = 5 [USER.PL BASIC.PGM1]\[USER.PL BASIC.PGM2]\G 10

Use ctrl-\ for the subvalue mark.

I'm positive that we can do GS 10\GS 20 in RPL, not positive that works in
Proc/PQN.  Even if that does work, I'm not positive the stack will be
maintained in RPL or PQN after a call to an external subroutine - been a
long time.  Try it and let us know.

Personally I prefer to branch down to code blocks as others suggest.

HTH
Tony, Nebula RD

(RPL is owned and maintained by the Realtime Software Corporation and is
only available for D3.)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] System Migration issues

2006-01-12 Thread Michael Doyle
Test your assumption by performing some manner of CRC on the files
before and after transit. If you can perform an md5 checksum on AIX,
Redhat will have a compatible program called md5sum. But realistically,
ftp file transfer should have nil affect on the files.

-Mike Doyle
Unix Developer / Administrator
AMO Recoveries


On Thu, 2006-01-12 at 09:42 -0500, Sirulnick, Steve wrote:
 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred method
 for copying data files?
 
  
 
 Steve
 ---
 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] PROC Question

2006-01-12 Thread Bob Woodward
Hi Tony.

It looks like this is a no-go in UV, too.  I ended up using the
branching method many have suggested.

Thanks.
BobW
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tony Gravagno
Sent: Thursday, January 12, 2006 8:26 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] PROC Question

Bob Woodward wrote:
 What I want to be able to do is:
IF A = 5 [USER.PL BASIC.PGM1];[USER.PL BASIC.PGM2];G 10

In RPL the subvalue mark is used to accomplish this:
IF A = 5 [USER.PL BASIC.PGM1]\[USER.PL BASIC.PGM2]\G 10

Use ctrl-\ for the subvalue mark.

I'm positive that we can do GS 10\GS 20 in RPL, not positive that works
in
Proc/PQN.  Even if that does work, I'm not positive the stack will be
maintained in RPL or PQN after a call to an external subroutine - been a
long time.  Try it and let us know.

Personally I prefer to branch down to code blocks as others suggest.

HTH
Tony, Nebula RD

(RPL is owned and maintained by the Realtime Software Corporation and is
only available for D3.)
---
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] System Migration issues

2006-01-12 Thread Doug Miller

Your source files are not in use by chance are they?
If so that could be your problem.  You may be catching 1/2 of a write 
when the copy is being transferred.


At 08:42 AM 1/12/2006, you wrote:

I need to transfer files between the two devices via
FTP and then converting the files for Linux use.  After doing so, my
distributed files are getting corrupted.



Doug Miller   [EMAIL PROTECTED]
Manager of Technical Services
Strategy 7Dallas TX 
---

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


RE: [U2] System Migration issues

2006-01-12 Thread Sirulnick, Steve
Here's more information:  I am using universe and ran fnuxi (transferring in
binary mode is a given).  I have also tried removing the file header with no
joy. I've tried to rebuild the header, but the partfiles were damaged. It
could be because the algorithm may have been different from one system to
the other when trying to rebuild.  Even so, is there a quicker way of
repairing the file headers so they can be rebuild or created again?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 12, 2006 10:36 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] System Migration issues

You didn't say which U2 product, which makes all the difference in the
world for this answer. So, because I know a bit of this on Universe, I'll
target my answer at that DBMS.

My experience with distributed file transfers is that FTP is fine.
HOWEVER, when the file is on the new system, you must run fnuxi on the
file before doing anything else. Fnuxi clears the distributed parts out of
the file header, thus making it a standard hashed file again. So, the main
file has to be removed and then the file re-distributed. The Partfile
algorithm is hard-coded in each file's header as is the absolute path to
each partfile.

HTH

Karl


quote who=Sirulnick, Steve
 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred method
 for copying data files?



 Steve
 ---
 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/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] System Migration issues

2006-01-12 Thread Timothy Snyder
Michael Doyle wrote on 01/12/2006 12:52:14 PM:

 If AIX used \n as a line terminator (in keeping with standard UNIX 
practice,)
 binary vs ascii mode would not be an issue, but according to the 
ever-accurate
 wikipedia, it uses EBCDIC 0x15: http://en.wikipedia.org/wiki/Newline

Since anybody can post anything into a wiki, any information contained 
therein should be taken with a huge grain of salt.  AIX is a UNIX system, 
not a mainframe system, as claimed in the link.  It uses ASCII, not 
EBCDIC.  You can move text files directly between AIX and any other UNIX 
without problems.  Besides, binary files like databases should -  as 
pointed out by many other posters - be moved with binary mode, which means 
that the line terminator issue is not a factor.

We need to hear back from the OP as to whether binary mode was used and 
what was meant by converting the files for Linux use.  Then we can get 
closer to a solution.

Tim Snyder
Consulting I/T Specialist , U2 Professional Services
North American Lab Services
DB2 Information Management, IBM Software Group
717-545-6403
[EMAIL PROTECTED]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] System Migration issues

2006-01-12 Thread Sirulnick, Steve
Thank you for all your emails.  I will even get more specific so I don't
waste your time. When trying to run a REBUILD.DF, it could not read or find
the header. When I tried to remove the header and tried to DEFINE.DF, I got
a message saying that the partblocks were bad.  This is when I used the
fixtool utility on the first set of distributed files.  I was then able to
perform a DEFINE.DF and recreate my data.  This was the first set, however.
The second set of data is still running under fixtool but it has been
running for almost 13 hours on only one distributed file (I have 9 more to
go!).  

Of course, this is a test in preparation for the live migration; however, I
will not have that kind of downtime when performing the migration.  If I can
do something better, I would like to know.

Many Thanks!

-Original Message-
From: Sirulnick, Steve [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 12, 2006 1:03 PM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] System Migration issues

Here's more information:  I am using universe and ran fnuxi (transferring in
binary mode is a given).  I have also tried removing the file header with no
joy. I've tried to rebuild the header, but the partfiles were damaged. It
could be because the algorithm may have been different from one system to
the other when trying to rebuild.  Even so, is there a quicker way of
repairing the file headers so they can be rebuild or created again?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 12, 2006 10:36 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] System Migration issues

You didn't say which U2 product, which makes all the difference in the
world for this answer. So, because I know a bit of this on Universe, I'll
target my answer at that DBMS.

My experience with distributed file transfers is that FTP is fine.
HOWEVER, when the file is on the new system, you must run fnuxi on the
file before doing anything else. Fnuxi clears the distributed parts out of
the file header, thus making it a standard hashed file again. So, the main
file has to be removed and then the file re-distributed. The Partfile
algorithm is hard-coded in each file's header as is the absolute path to
each partfile.

HTH

Karl


quote who=Sirulnick, Steve
 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred method
 for copying data files?



 Steve
 ---
 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/
---
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] EDA Tool - Unable to save EDA map content

2006-01-12 Thread Simon Lewington
I'm trying to set up EDA using the 'EDA tool', and getting an error when
trying to create the EDA map.

I'll call this in to IBM support tomorrow, but I'm in the UK so am firing
this to the list in case some of you guys in the States have seen this
before and so might be able to help more quickly.

Full details are...

Unidata 7.1.0
DB2 8.1.10.812
Win XP Pro sp 2

New Unidata account created, and set up as 'edatest' in ud_database.  I've
checked that I can run other tools on this account OK - eg I can create xsd
files and mappings in the xml/db mapping tool.

RMC 'EDA Schema Files'
Select Unidata account 'edatest'
Map name 'testa'
Select 'TAPES' file
Data source UDDemo1
Leave selection unchanged (all checked except ID).
Finish

Error dialog:
Title: 'Save EDA map Content Failed'
Message: 'Could not write EDA map schema test1 into account edatest on
server localhost.

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


RE: [U2] System Migration issues

2006-01-12 Thread karlp
I don't know if fixtool works the same way as fnuxi used to, but when I
ran it (and I apologize for not mentioning it earlier), it would run
forever, as you're seeing now, when going through the file. Since the
header was the only thing that had issues, I found that I could do:

fnuxi FILENAME

and then after about 15 seconds, just hit CTRL-C and terminate the fnuxi
process. Then I could do DEFINE.DF . . . .   and the file was back up.
Since you've lost 13 hours already, I don't know if I'd attempt a break.
It might just finish in 2 more minutes...

Karl


quote who=Sirulnick, Steve
 Thank you for all your emails.  I will even get more specific so I don't
 waste your time. When trying to run a REBUILD.DF, it could not read or
 find
 the header. When I tried to remove the header and tried to DEFINE.DF, I
 got
 a message saying that the partblocks were bad.  This is when I used the
 fixtool utility on the first set of distributed files.  I was then able to
 perform a DEFINE.DF and recreate my data.  This was the first set,
 however.
 The second set of data is still running under fixtool but it has been
 running for almost 13 hours on only one distributed file (I have 9 more to
 go!).

 Of course, this is a test in preparation for the live migration; however,
 I
 will not have that kind of downtime when performing the migration.  If I
 can
 do something better, I would like to know.

 Many Thanks!

 -Original Message-
 From: Sirulnick, Steve [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 12, 2006 1:03 PM
 To: 'u2-users@listserver.u2ug.org'
 Subject: RE: [U2] System Migration issues

 Here's more information:  I am using universe and ran fnuxi (transferring
 in
 binary mode is a given).  I have also tried removing the file header with
 no
 joy. I've tried to rebuild the header, but the partfiles were damaged.
 It
 could be because the algorithm may have been different from one system to
 the other when trying to rebuild.  Even so, is there a quicker way of
 repairing the file headers so they can be rebuild or created again?

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 12, 2006 10:36 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] System Migration issues

 You didn't say which U2 product, which makes all the difference in the
 world for this answer. So, because I know a bit of this on Universe, I'll
 target my answer at that DBMS.

 My experience with distributed file transfers is that FTP is fine.
 HOWEVER, when the file is on the new system, you must run fnuxi on the
 file before doing anything else. Fnuxi clears the distributed parts out of
 the file header, thus making it a standard hashed file again. So, the main
 file has to be removed and then the file re-distributed. The Partfile
 algorithm is hard-coded in each file's header as is the absolute path to
 each partfile.

 HTH

 Karl


 quote who=Sirulnick, Steve
 I am migrating an old AIX server running U2 to RH Linux.  Because of the
 server's limitations, I need to transfer files between the two devices
 via
 FTP and then converting the files for Linux use.  After doing so, my
 distributed files are getting corrupted. It looks like the IBM provided
 fixtool utility repairs the files, but it's taking way too long for my
 larger distributed files.  Making a HUGE assumption that it's the file
 transfer responsible for the file corruption, is there a preferred
 method
 for copying data files?



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



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

RE: [U2] System Migration issues

2006-01-12 Thread Tom Dodds
I had the same problem with a migration from a Data General to an
AIX/UniVerse 10.1.7.  I undid the distribution on the Data General, did the
migration, and re-build the distribution on the UniVerse side and it worked
fine.  The problem is that when you migrate the file, it actually get
created anew and the header information is lost from you original system.

HTH

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sirulnick, Steve
Sent: Thursday, January 12, 2006 2:53 PM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] System Migration issues

Thank you for all your emails.  I will even get more specific so I don't
waste your time. When trying to run a REBUILD.DF, it could not read or find
the header. When I tried to remove the header and tried to DEFINE.DF, I got
a message saying that the partblocks were bad.  This is when I used the
fixtool utility on the first set of distributed files.  I was then able to
perform a DEFINE.DF and recreate my data.  This was the first set, however.
The second set of data is still running under fixtool but it has been
running for almost 13 hours on only one distributed file (I have 9 more to
go!).  

Of course, this is a test in preparation for the live migration; however, I
will not have that kind of downtime when performing the migration.  If I can
do something better, I would like to know.

Many Thanks!
2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UDT] Stack following user and causing core dumps?

2006-01-12 Thread Raymond DeGennaro II
We've got a customer site that is having problems with one user ID 
always getting core dumps as soon as they start UniData.  This even 
happens in a brand new, nothing but what 'newacct' puts in it, 
account.


They're pretty convinced that it's due to the contents of the 
.Command stack getting too large, because when they delete the stack, 
the problem goes away for a while.  The problem login us used 
non-interactively to call UDT from the Unix command line, often with 
@SENTENCE data approaching MAXSENTENCE in length.


I've never seen another site core dump due to large command stacks 
and I've never seen the command stack follow a user ID from account 
to account.  Needless to say, I'm more than a bit stumped.


Ray
--
.=.
| =-=-=-=-=-=-= Eagle Rock Information Systems Corp =-=-=-=-=-=-= |
| -=-=-=-=-=-=- web and database business solutions -=-=-=-=-=-=- |
|   http://www.eriscorp.commailto:[EMAIL PROTECTED]   |
|Midwest Regional Office: 815-547-0662 (voice)  815-547-0353 (Fax)|
.=.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UD] XML Question...

2006-01-12 Thread David Wolverton
We have a theory question...

I have a C function that when it completes, can return an complete XML
document as a 'string' instead of making me call the C function over and
over to 'bleed out' all the data...

So... Now I'm sitting in my UniBASIC routine, with a complete XML document
in hand, assigned to a UniBASIC Variable - but - and this is the part that
confuddles me - it appears none of the U2 UniBASIC XML extensions would be
usable against that XML item held in a variable unless I write it out to
disk, then 'open' it and read it...

And that seemed weird - will I really have to incur multiple disk-IO to
handle this? (Or even more frightening, have to write my own in-line
parser?!?)

Just wondering how others are doing it, or if I'm missing something from my
readings of the BASIC Extentions guide...

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


Re: [U2] [UD] XML Question...

2006-01-12 Thread Craig Bennett

David,

So... Now I'm sitting in my UniBASIC routine, with a complete XML document
in hand, assigned to a UniBASIC Variable - but - and this is the part that
confuddles me - it appears none of the U2 UniBASIC XML extensions would be
usable against that XML item held in a variable unless I write it out to
disk, then 'open' it and read it...
  
Which version of UV are you running? From memory the BASIC DOM routines 
will allow you to process the XML from memory rather than from disk.


eg:

XDOMOpen(YOURXMLINHERE, XML.FROM.STRING, mydom)


HTH,


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


Re: [U2] [UD] XML Question...

2006-01-12 Thread Wendy Smoak
On 1/12/06, David Wolverton [EMAIL PROTECTED] wrote:

 So... Now I'm sitting in my UniBASIC routine, with a complete XML document
 in hand, assigned to a UniBASIC Variable - but - and this is the part that
 confuddles me - it appears none of the U2 UniBASIC XML extensions would be
 usable against that XML item held in a variable unless I write it out to
 disk, then 'open' it and read it...

I've only done it the other way around, creating XML in UniBASIC and
sending it out with CallHTTP.  When I was working with it (a while
ago) I could not create XML in memory, I had to write it to a file and
then read it back in as text.  I suspect you're seeing the same thing
in reverse, unfortunately.

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


RE: [U2] [UDT] Stack following user and causing core dumps?

2006-01-12 Thread colin.alfke
Never had a command stack big enough to cause problems. Since it's being
called from the Unix command line could you not simply clear the stack
prior to running the command? Or you could set the CSTACKSZ environment
variable for this user so it won't get so big.

We have a directory under UniData home called cmdstack and it puts all
of the stacks in there so they work across all accounts. Not exactly
sure how it was setup. 

Hth
Colin Alfke
Calgary, Canada

-Original Message-
From: Raymond DeGennaro II

We've got a customer site that is having problems with one 
user ID always getting core dumps as soon as they start 
UniData.  This even happens in a brand new, nothing but what 
'newacct' puts in it, account.

They're pretty convinced that it's due to the contents of the 
.Command stack getting too large, because when they delete the 
stack, the problem goes away for a while.  The problem login 
us used non-interactively to call UDT from the Unix command 
line, often with @SENTENCE data approaching MAXSENTENCE in length.

I've never seen another site core dump due to large command 
stacks and I've never seen the command stack follow a user ID 
from account to account.  Needless to say, I'm more than a bit stumped.

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


RE: [U2] System Migration issues

2006-01-12 Thread Sirulnick, Steve
Thanks Tom.  This worked perfectly.  I saved my dictionaries before I
removed the distributed file header then added it later after I created the
new DF header.

-Original Message-
From: Tom Dodds [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 12, 2006 4:03 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] System Migration issues

I had the same problem with a migration from a Data General to an
AIX/UniVerse 10.1.7.  I undid the distribution on the Data General, did the
migration, and re-build the distribution on the UniVerse side and it worked
fine.  The problem is that when you migrate the file, it actually get
created anew and the header information is lost from you original system.

HTH

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sirulnick, Steve
Sent: Thursday, January 12, 2006 2:53 PM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] System Migration issues

Thank you for all your emails.  I will even get more specific so I don't
waste your time. When trying to run a REBUILD.DF, it could not read or find
the header. When I tried to remove the header and tried to DEFINE.DF, I got
a message saying that the partblocks were bad.  This is when I used the
fixtool utility on the first set of distributed files.  I was then able to
perform a DEFINE.DF and recreate my data.  This was the first set, however.
The second set of data is still running under fixtool but it has been
running for almost 13 hours on only one distributed file (I have 9 more to
go!).  

Of course, this is a test in preparation for the live migration; however, I
will not have that kind of downtime when performing the migration.  If I can
do something better, I would like to know.

Many Thanks!
2ug.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] [UD] XML Question...

2006-01-12 Thread David Wolverton
We're on UniData -- but that's the exact thing I needed ... I just hadn't
gotten that far in the Docs!! 

Perfect - it's just what I was looking for.

David W.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Craig Bennett
Sent: Thursday, January 12, 2006 7:08 PM
...
Which version of UV are you running? From memory the BASIC DOM routines will
allow you to process the XML from memory rather than from disk.

eg:

XDOMOpen(YOURXMLINHERE, XML.FROM.STRING, mydom)


HTH,


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


RE: [U2] System Migration issues

2006-01-12 Thread Tom Dodds
Thanks, that's what being a consultant is worth, not the money, it worked,
it helped.

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sirulnick, Steve
Sent: Thursday, January 12, 2006 9:33 PM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] System Migration issues

Thanks Tom.  This worked perfectly.  I saved my dictionaries before I
removed the distributed file header then added it later after I created the
new DF header.

-Original Message-
From: Tom Dodds [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 12, 2006 4:03 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] System Migration issues

I had the same problem with a migration from a Data General to an
AIX/UniVerse 10.1.7.  I undid the distribution on the Data General, did the
migration, and re-build the distribution on the UniVerse side and it worked
fine.  The problem is that when you migrate the file, it actually get
created anew and the header information is lost from you original system.

HTH

Tom Dodds
[EMAIL PROTECTED]
708-234-9608 Office
630-235-2975 Cell

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Sirulnick, Steve
Sent: Thursday, January 12, 2006 2:53 PM
To: 'u2-users@listserver.u2ug.org'
Subject: RE: [U2] System Migration issues

Thank you for all your emails.  I will even get more specific so I don't
waste your time. When trying to run a REBUILD.DF, it could not read or find
the header. When I tried to remove the header and tried to DEFINE.DF, I got
a message saying that the partblocks were bad.  This is when I used the
fixtool utility on the first set of distributed files.  I was then able to
perform a DEFINE.DF and recreate my data.  This was the first set, however.
The second set of data is still running under fixtool but it has been
running for almost 13 hours on only one distributed file (I have 9 more to
go!).  

Of course, this is a test in preparation for the live migration; however, I
will not have that kind of downtime when performing the migration.  If I can
do something better, I would like to know.

Many Thanks!
2ug.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/