Re: [U2] SQL field name issue.

2010-08-18 Thread Kevin King
What about creating a view against the table and using the view in your
join?

-Kevin
http://www.PrecisOnline.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Robert Houben
You could probably just do the compile from the folder where your VOC is. I 
believe the basic.exe command opens the VOC and uses it to resolve the 
reference to the file, so the fact that it is elsewhere should work. Flying 
half from memory, so it might not work...

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Wednesday, August 18, 2010 2:21 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?


Thanks Robert,

That actually worked. There is one issue however. I had to copy my VOC into my 
programing folder for it to work. Our setup is as follows:

c:\CHRIS> this is where we keep our DATA tables. (VOC is also kept here)
c:\CHRISSYS  > this is where we keep our SOURCE code.

It would be nice if we could compile without moving the VOC everytime. I'll be 
working some more on this.

Chris


> From: robert.hou...@fwic.net
> To: u2-users@listserver.u2ug.org
> Date: Wed, 18 Aug 2010 14:01:31 -0700
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
>
> Try running it from the directory where the VOC resides with the 
> C:\IBM\UV\bin directory added to your path.
>
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, August 18, 2010 2:00 PM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
>
>
> So it seems like it wants to compile it but can't open the VOC. I'm not sure 
> which VOC it's trying to use (the one c:\Chris
> or the one in c:\IBM\uv\bin). This is what I get from the command line>
>
> C:\IBM\UV\bin>BASIC C:\CHRISSYS\LFUTILS TEST_HARNESS5
> Unable to open 'VOC' file
>
> I have made sure that in the folder security settings that I have full rights 
> to the IBM/*.* and CHRIS/*.* folders.
>
> Any ideas why it would be unable to open the VOC?
>
>
> * on a side note to Doug, we want to keep the compiling very simple without 
> many java scripts. Currently we're using a java
> script but we want to do it on a command line level IF possible.
>
>
>
> > From: d.hender...@moreheadstate.edu
> > To: u2-users@listserver.u2ug.org
> > Date: Wed, 18 Aug 2010 16:45:32 -0400
> > Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> >
> > ...should have clarified that the below command is executed at the OS 
> > command prompt.
> >
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org 
> > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Drew William 
> > Henderson
> > Sent: Wednesday, August 18, 2010 4:43 PM
> > To: U2 Users List
> > Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> >
> > Chris,
> >
> > Are you on Windows or Unix/Linux?
> >
> > On the ?nix version, you can execute uv/bin program "basic" to compile your 
> > programs (and assume you can catalog, as well, but never tried it.)  
> > Assuming uv/bin is in your PATH, if the folder/directory is SOURCE, and you 
> > want to compile the file PROG1, you can use the following command:
> >
> > basic SOURCE PROG1
> >
> > Wildcarding may be a problem, but can put multiple files on the command 
> > line.  Of course, you could write a quick script to do all this for you, as 
> > well.
> >
> > (DISCLAIMER: We're running 10.2 on Linux, and the above worked your 
> > mileage may vary! :-)  )
> >
> > If you're running Universe on Windows, I can't speak to that!
> >
> > HTH
> > Drew
> >
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org 
> > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > Sent: Wednesday, August 18, 2010 4:19 PM
> > To: u2-users@listserver.u2ug.org
> > Subject: [U2] easiest way to COMPILE/CATALOG for a build?
> >
> >
> > Hello,
> >
> > We just recently changed our entire repository from Source Safe to SVN and 
> > we're now using
> > hudson to automate our builds. This works great for Java since we can 
> > simply compile ALL
> > the programs using the JAVA compiler in a batch file.
> >
> > Universe however seems to require us sign into a Universe account and then 
> > compile/catalog
> > all our programs. Is there a way you can compile all programs in a folder 
> > from a batch file?
> > We need to do the same to CATALOG all our programs.
> >
> > Here's why:
> >
> > We submit all of our changes to 1 central SVN repository, when we want to 
> > 'release' the object code
> > to the production server it runs on a different UniVerse region and totally 
> > different server, so we
> > have the need to compile all the programs at once in the build, then 
> > CATALOG all of the programs
> > to the production universe region.
> >
> > Is there an easy way to do this?
> >
> > Right now we have a batch file that logins into our Java webapp, then it 
> > logs into universe from
> > the webapp so that it can compile/catalog

Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Chris Austin

Thanks Robert,

That actually worked. There is one issue however. I had to copy my VOC into my 
programing folder for it to work. Our setup is as follows:

c:\CHRIS> this is where we keep our DATA tables. (VOC is also kept here)
c:\CHRISSYS  > this is where we keep our SOURCE code. 

It would be nice if we could compile without moving the VOC everytime. I'll be 
working some more on this. 

Chris


> From: robert.hou...@fwic.net
> To: u2-users@listserver.u2ug.org
> Date: Wed, 18 Aug 2010 14:01:31 -0700
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> Try running it from the directory where the VOC resides with the 
> C:\IBM\UV\bin directory added to your path.
> 
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, August 18, 2010 2:00 PM
> To: u2-users@listserver.u2ug.org
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> 
> So it seems like it wants to compile it but can't open the VOC. I'm not sure 
> which VOC it's trying to use (the one c:\Chris
> or the one in c:\IBM\uv\bin). This is what I get from the command line>
> 
> C:\IBM\UV\bin>BASIC C:\CHRISSYS\LFUTILS TEST_HARNESS5
> Unable to open 'VOC' file
> 
> I have made sure that in the folder security settings that I have full rights 
> to the IBM/*.* and CHRIS/*.* folders.
> 
> Any ideas why it would be unable to open the VOC?
> 
> 
> * on a side note to Doug, we want to keep the compiling very simple without 
> many java scripts. Currently we're using a java
> script but we want to do it on a command line level IF possible.
> 
> 
> 
> > From: d.hender...@moreheadstate.edu
> > To: u2-users@listserver.u2ug.org
> > Date: Wed, 18 Aug 2010 16:45:32 -0400
> > Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> >
> > ...should have clarified that the below command is executed at the OS 
> > command prompt.
> >
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org 
> > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Drew William 
> > Henderson
> > Sent: Wednesday, August 18, 2010 4:43 PM
> > To: U2 Users List
> > Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> >
> > Chris,
> >
> > Are you on Windows or Unix/Linux?
> >
> > On the ?nix version, you can execute uv/bin program "basic" to compile your 
> > programs (and assume you can catalog, as well, but never tried it.)  
> > Assuming uv/bin is in your PATH, if the folder/directory is SOURCE, and you 
> > want to compile the file PROG1, you can use the following command:
> >
> > basic SOURCE PROG1
> >
> > Wildcarding may be a problem, but can put multiple files on the command 
> > line.  Of course, you could write a quick script to do all this for you, as 
> > well.
> >
> > (DISCLAIMER: We're running 10.2 on Linux, and the above worked your 
> > mileage may vary! :-)  )
> >
> > If you're running Universe on Windows, I can't speak to that!
> >
> > HTH
> > Drew
> >
> > -Original Message-
> > From: u2-users-boun...@listserver.u2ug.org 
> > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> > Sent: Wednesday, August 18, 2010 4:19 PM
> > To: u2-users@listserver.u2ug.org
> > Subject: [U2] easiest way to COMPILE/CATALOG for a build?
> >
> >
> > Hello,
> >
> > We just recently changed our entire repository from Source Safe to SVN and 
> > we're now using
> > hudson to automate our builds. This works great for Java since we can 
> > simply compile ALL
> > the programs using the JAVA compiler in a batch file.
> >
> > Universe however seems to require us sign into a Universe account and then 
> > compile/catalog
> > all our programs. Is there a way you can compile all programs in a folder 
> > from a batch file?
> > We need to do the same to CATALOG all our programs.
> >
> > Here's why:
> >
> > We submit all of our changes to 1 central SVN repository, when we want to 
> > 'release' the object code
> > to the production server it runs on a different UniVerse region and totally 
> > different server, so we
> > have the need to compile all the programs at once in the build, then 
> > CATALOG all of the programs
> > to the production universe region.
> >
> > Is there an easy way to do this?
> >
> > Right now we have a batch file that logins into our Java webapp, then it 
> > logs into universe from
> > the webapp so that it can compile/catalog but there has to be an easier way.
> >
> >
> >
> > ___
> > U2-Users mailing list
> > U2-Users@listserver.u2ug.org
> > http://listserver.u2ug.org/mailman/listinfo/u2-users
> > ___
> > U2-Users mailing list
> > U2-Users@listserver.u2ug.org
> > http://listserver.u2ug.org/mailman/listinfo/u2-users
> > ___
> > U2-Users mailing list
> > U2-Users@listserver.u2ug.org
> > http://listserver.u2ug.org/mailman/l

Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Robert Houben
Try running it from the directory where the VOC resides with the C:\IBM\UV\bin 
directory added to your path.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Wednesday, August 18, 2010 2:00 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?


So it seems like it wants to compile it but can't open the VOC. I'm not sure 
which VOC it's trying to use (the one c:\Chris
or the one in c:\IBM\uv\bin). This is what I get from the command line>

C:\IBM\UV\bin>BASIC C:\CHRISSYS\LFUTILS TEST_HARNESS5
Unable to open 'VOC' file

I have made sure that in the folder security settings that I have full rights 
to the IBM/*.* and CHRIS/*.* folders.

Any ideas why it would be unable to open the VOC?


* on a side note to Doug, we want to keep the compiling very simple without 
many java scripts. Currently we're using a java
script but we want to do it on a command line level IF possible.



> From: d.hender...@moreheadstate.edu
> To: u2-users@listserver.u2ug.org
> Date: Wed, 18 Aug 2010 16:45:32 -0400
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
>
> ...should have clarified that the below command is executed at the OS command 
> prompt.
>
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Drew William 
> Henderson
> Sent: Wednesday, August 18, 2010 4:43 PM
> To: U2 Users List
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
>
> Chris,
>
> Are you on Windows or Unix/Linux?
>
> On the ?nix version, you can execute uv/bin program "basic" to compile your 
> programs (and assume you can catalog, as well, but never tried it.)  Assuming 
> uv/bin is in your PATH, if the folder/directory is SOURCE, and you want to 
> compile the file PROG1, you can use the following command:
>
> basic SOURCE PROG1
>
> Wildcarding may be a problem, but can put multiple files on the command line. 
>  Of course, you could write a quick script to do all this for you, as well.
>
> (DISCLAIMER: We're running 10.2 on Linux, and the above worked your 
> mileage may vary! :-)  )
>
> If you're running Universe on Windows, I can't speak to that!
>
> HTH
> Drew
>
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, August 18, 2010 4:19 PM
> To: u2-users@listserver.u2ug.org
> Subject: [U2] easiest way to COMPILE/CATALOG for a build?
>
>
> Hello,
>
> We just recently changed our entire repository from Source Safe to SVN and 
> we're now using
> hudson to automate our builds. This works great for Java since we can simply 
> compile ALL
> the programs using the JAVA compiler in a batch file.
>
> Universe however seems to require us sign into a Universe account and then 
> compile/catalog
> all our programs. Is there a way you can compile all programs in a folder 
> from a batch file?
> We need to do the same to CATALOG all our programs.
>
> Here's why:
>
> We submit all of our changes to 1 central SVN repository, when we want to 
> 'release' the object code
> to the production server it runs on a different UniVerse region and totally 
> different server, so we
> have the need to compile all the programs at once in the build, then CATALOG 
> all of the programs
> to the production universe region.
>
> Is there an easy way to do this?
>
> Right now we have a batch file that logins into our Java webapp, then it logs 
> into universe from
> the webapp so that it can compile/catalog but there has to be an easier way.
>
>
>
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] SQL field name issue.

2010-08-18 Thread George Gallen
I'm setting up a mysql database based on some of our UV data.

Is there a way to create a field in MySQL that is a subfield?

For instance I have a field CID for customer ID, which is a superkey based on 3 
pieces
I have another file which has a key of "FILE-###" where the ### is the first 3 
characters of the CID

Aside from using  'concat("FILE-",substr(CID,1,3)) as NEWFIELDNAME' on the 
select line, is there any
way to define that process as NEWFIELDNAME in the field catalog for that table? 
So I could reference
it as NEWFIELDNAME? Sure would make the joins look a lot neater.


George Gallen
Senior Programmer/Analyst
Accounting/Data Division, EDI Administrator
ggal...@wyanokegroup.com
ph:856.848.9005 Ext 220
The Wyanoke Group
http://www.wyanokegroup.com



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Chris Austin

So it seems like it wants to compile it but can't open the VOC. I'm not sure 
which VOC it's trying to use (the one c:\Chris 
or the one in c:\IBM\uv\bin). This is what I get from the command line>

C:\IBM\UV\bin>BASIC C:\CHRISSYS\LFUTILS TEST_HARNESS5
Unable to open 'VOC' file

I have made sure that in the folder security settings that I have full rights 
to the IBM/*.* and CHRIS/*.* folders. 

Any ideas why it would be unable to open the VOC?


* on a side note to Doug, we want to keep the compiling very simple without 
many java scripts. Currently we're using a java
script but we want to do it on a command line level IF possible. 



> From: d.hender...@moreheadstate.edu
> To: u2-users@listserver.u2ug.org
> Date: Wed, 18 Aug 2010 16:45:32 -0400
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> ...should have clarified that the below command is executed at the OS command 
> prompt.
> 
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Drew William 
> Henderson
> Sent: Wednesday, August 18, 2010 4:43 PM
> To: U2 Users List
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> Chris,
> 
> Are you on Windows or Unix/Linux?
> 
> On the ?nix version, you can execute uv/bin program "basic" to compile your 
> programs (and assume you can catalog, as well, but never tried it.)  Assuming 
> uv/bin is in your PATH, if the folder/directory is SOURCE, and you want to 
> compile the file PROG1, you can use the following command:
> 
> basic SOURCE PROG1
> 
> Wildcarding may be a problem, but can put multiple files on the command line. 
>  Of course, you could write a quick script to do all this for you, as well.
> 
> (DISCLAIMER: We're running 10.2 on Linux, and the above worked your 
> mileage may vary! :-)  )
> 
> If you're running Universe on Windows, I can't speak to that!
> 
> HTH
> Drew
> 
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, August 18, 2010 4:19 PM
> To: u2-users@listserver.u2ug.org
> Subject: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> 
> Hello,
> 
> We just recently changed our entire repository from Source Safe to SVN and 
> we're now using 
> hudson to automate our builds. This works great for Java since we can simply 
> compile ALL 
> the programs using the JAVA compiler in a batch file.
> 
> Universe however seems to require us sign into a Universe account and then 
> compile/catalog
> all our programs. Is there a way you can compile all programs in a folder 
> from a batch file?
> We need to do the same to CATALOG all our programs. 
> 
> Here's why: 
> 
> We submit all of our changes to 1 central SVN repository, when we want to 
> 'release' the object code
> to the production server it runs on a different UniVerse region and totally 
> different server, so we 
> have the need to compile all the programs at once in the build, then CATALOG 
> all of the programs
> to the production universe region. 
> 
> Is there an easy way to do this?
> 
> Right now we have a batch file that logins into our Java webapp, then it logs 
> into universe from 
> the webapp so that it can compile/catalog but there has to be an easier way. 
> 
> 
> 
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Doug
Hi Chris:

[ad]
Within our XLr8Installer, part of our complete Eclipse plug-ins for U2
environment, you can build a install script through our XLr8Installer
plug-in for Java.  We use this tool all of the time to automate our
installations.  In fact we can go from Universe to Unidata, or Unidata to
Universe, or Universe to Universe, or Unidata to Unidata.  We you special
technology built in to UniObjects so our copies are very fast.   We can copy
the source code from any destination to a your target machine compile and
catalog the programs.  

Just to give you an idea. It took us 6 to 8 hours to install our payroll
system via the internet:  create files, copy dictionaries. compile
dictionaries, create indexes, copy data, copy programs, compile programs and
catalog programs.  With the current version of the XLr8Installer we can do
it 7 minutes.

If you have downloaded our tools you can go to Help/U2logic's XLr8
Tools/XLr8Installer for complete documentation on the tool.  You will only
spend nothing to try it and $99 to keep using it.
[/ad]

Regards,
Doug
www.u2logic.com/tools.html
"U2 Eclipse tool experts"

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Wednesday, August 18, 2010 2:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] easiest way to COMPILE/CATALOG for a build?


Hello,

We just recently changed our entire repository from Source Safe to SVN and
we're now using hudson to automate our builds. This works great for Java
since we can simply compile ALL the programs using the JAVA compiler in a
batch file.

Universe however seems to require us sign into a Universe account and then
compile/catalog all our programs. Is there a way you can compile all
programs in a folder from a batch file?
We need to do the same to CATALOG all our programs. 

Here's why: 

We submit all of our changes to 1 central SVN repository, when we want to
'release' the object code to the production server it runs on a different
UniVerse region and totally different server, so we have the need to compile
all the programs at once in the build, then CATALOG all of the programs to
the production universe region. 

Is there an easy way to do this?

Right now we have a batch file that logins into our Java webapp, then it
logs into universe from the webapp so that it can compile/catalog but there
has to be an easier way. 


  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Test ... please ignore

2010-08-18 Thread Bob Woodward
Don't look at the light!!!  Close your eyes and DON'T LOOK AT THE
LIGHT!!

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Larry Hiscock
Sent: Wednesday, August 18, 2010 1:30 PM
To: 'U2 Users List'
Subject: [U2] Test ... please ignore

Test, please ignore

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Chris Austin

Unfortunately we are on a Windows 2008 server platform. 

I will try putting the uv/bin in my PATH as well and giving it a go.



> From: d.hender...@moreheadstate.edu
> To: u2-users@listserver.u2ug.org
> Date: Wed, 18 Aug 2010 16:43:05 -0400
> Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> Chris,
> 
> Are you on Windows or Unix/Linux?
> 
> On the ?nix version, you can execute uv/bin program "basic" to compile your 
> programs (and assume you can catalog, as well, but never tried it.)  Assuming 
> uv/bin is in your PATH, if the folder/directory is SOURCE, and you want to 
> compile the file PROG1, you can use the following command:
> 
> basic SOURCE PROG1
> 
> Wildcarding may be a problem, but can put multiple files on the command line. 
>  Of course, you could write a quick script to do all this for you, as well.
> 
> (DISCLAIMER: We're running 10.2 on Linux, and the above worked your 
> mileage may vary! :-)  )
> 
> If you're running Universe on Windows, I can't speak to that!
> 
> HTH
> Drew
> 
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org 
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
> Sent: Wednesday, August 18, 2010 4:19 PM
> To: u2-users@listserver.u2ug.org
> Subject: [U2] easiest way to COMPILE/CATALOG for a build?
> 
> 
> Hello,
> 
> We just recently changed our entire repository from Source Safe to SVN and 
> we're now using 
> hudson to automate our builds. This works great for Java since we can simply 
> compile ALL 
> the programs using the JAVA compiler in a batch file.
> 
> Universe however seems to require us sign into a Universe account and then 
> compile/catalog
> all our programs. Is there a way you can compile all programs in a folder 
> from a batch file?
> We need to do the same to CATALOG all our programs. 
> 
> Here's why: 
> 
> We submit all of our changes to 1 central SVN repository, when we want to 
> 'release' the object code
> to the production server it runs on a different UniVerse region and totally 
> different server, so we 
> have the need to compile all the programs at once in the build, then CATALOG 
> all of the programs
> to the production universe region. 
> 
> Is there an easy way to do this?
> 
> Right now we have a batch file that logins into our Java webapp, then it logs 
> into universe from 
> the webapp so that it can compile/catalog but there has to be an easier way. 
> 
> 
> 
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Drew William Henderson
...should have clarified that the below command is executed at the OS command 
prompt.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Drew William 
Henderson
Sent: Wednesday, August 18, 2010 4:43 PM
To: U2 Users List
Subject: Re: [U2] easiest way to COMPILE/CATALOG for a build?

Chris,

Are you on Windows or Unix/Linux?

On the ?nix version, you can execute uv/bin program "basic" to compile your 
programs (and assume you can catalog, as well, but never tried it.)  Assuming 
uv/bin is in your PATH, if the folder/directory is SOURCE, and you want to 
compile the file PROG1, you can use the following command:

basic SOURCE PROG1

Wildcarding may be a problem, but can put multiple files on the command line.  
Of course, you could write a quick script to do all this for you, as well.

(DISCLAIMER: We're running 10.2 on Linux, and the above worked your mileage 
may vary! :-)  )

If you're running Universe on Windows, I can't speak to that!

HTH
Drew

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Wednesday, August 18, 2010 4:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] easiest way to COMPILE/CATALOG for a build?


Hello,

We just recently changed our entire repository from Source Safe to SVN and 
we're now using 
hudson to automate our builds. This works great for Java since we can simply 
compile ALL 
the programs using the JAVA compiler in a batch file.

Universe however seems to require us sign into a Universe account and then 
compile/catalog
all our programs. Is there a way you can compile all programs in a folder from 
a batch file?
We need to do the same to CATALOG all our programs. 

Here's why: 

We submit all of our changes to 1 central SVN repository, when we want to 
'release' the object code
to the production server it runs on a different UniVerse region and totally 
different server, so we 
have the need to compile all the programs at once in the build, then CATALOG 
all of the programs
to the production universe region. 

Is there an easy way to do this?

Right now we have a batch file that logins into our Java webapp, then it logs 
into universe from 
the webapp so that it can compile/catalog but there has to be an easier way. 


  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Drew William Henderson
Chris,

Are you on Windows or Unix/Linux?

On the ?nix version, you can execute uv/bin program "basic" to compile your 
programs (and assume you can catalog, as well, but never tried it.)  Assuming 
uv/bin is in your PATH, if the folder/directory is SOURCE, and you want to 
compile the file PROG1, you can use the following command:

basic SOURCE PROG1

Wildcarding may be a problem, but can put multiple files on the command line.  
Of course, you could write a quick script to do all this for you, as well.

(DISCLAIMER: We're running 10.2 on Linux, and the above worked your mileage 
may vary! :-)  )

If you're running Universe on Windows, I can't speak to that!

HTH
Drew

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Chris Austin
Sent: Wednesday, August 18, 2010 4:19 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] easiest way to COMPILE/CATALOG for a build?


Hello,

We just recently changed our entire repository from Source Safe to SVN and 
we're now using 
hudson to automate our builds. This works great for Java since we can simply 
compile ALL 
the programs using the JAVA compiler in a batch file.

Universe however seems to require us sign into a Universe account and then 
compile/catalog
all our programs. Is there a way you can compile all programs in a folder from 
a batch file?
We need to do the same to CATALOG all our programs. 

Here's why: 

We submit all of our changes to 1 central SVN repository, when we want to 
'release' the object code
to the production server it runs on a different UniVerse region and totally 
different server, so we 
have the need to compile all the programs at once in the build, then CATALOG 
all of the programs
to the production universe region. 

Is there an easy way to do this?

Right now we have a batch file that logins into our Java webapp, then it logs 
into universe from 
the webapp so that it can compile/catalog but there has to be an easier way. 


  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Test ... please ignore

2010-08-18 Thread Bob Rasmussen
On Wed, 18 Aug 2010, Larry Hiscock wrote:

> Test, please ignore

I'm trying... I'm trying... Oh, I just can't!

> 
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> 
> 

Regards,
Bob Rasmussen,   President,   Rasmussen Software, Inc.

personal e-mail: r...@anzio.com
 company e-mail: r...@anzio.com
  voice: (US) 503-624-0360 (9:00-6:00 Pacific Time)
fax: (US) 503-624-0760
web: http://www.anzio.com
 street address: Rasmussen Software, Inc.
 10240 SW Nimbus, Suite L9
 Portland, OR  97223  USA
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Test ... please ignore

2010-08-18 Thread Larry Hiscock
Test, please ignore

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] easiest way to COMPILE/CATALOG for a build?

2010-08-18 Thread Chris Austin

Hello,

We just recently changed our entire repository from Source Safe to SVN and 
we're now using 
hudson to automate our builds. This works great for Java since we can simply 
compile ALL 
the programs using the JAVA compiler in a batch file.

Universe however seems to require us sign into a Universe account and then 
compile/catalog
all our programs. Is there a way you can compile all programs in a folder from 
a batch file?
We need to do the same to CATALOG all our programs. 

Here's why: 

We submit all of our changes to 1 central SVN repository, when we want to 
'release' the object code
to the production server it runs on a different UniVerse region and totally 
different server, so we 
have the need to compile all the programs at once in the build, then CATALOG 
all of the programs
to the production universe region. 

Is there an easy way to do this?

Right now we have a batch file that logins into our Java webapp, then it logs 
into universe from 
the webapp so that it can compile/catalog but there has to be an easier way. 


  
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users