Re: [U2] uniobjects question

2011-08-09 Thread David Jordan
Uniobjects has the same facility to access TCL through the command method. Regards David Jordan -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Robert Houben Sent: Tuesday, 9 August 2011 2:02 PM To: U2 Users List Su

Re: [U2] uniobjects question

2011-08-09 Thread Symeon Breen
Just to be clear - A UO process will not crash upon encountering a CRT Infact i have used this for debugging purposes, my front end passes a debug flag, the backend does (if the debug flag is set) a como on , and whatever crt's required, a como off, then reads in the como file and sends it back to

[U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread Adam Taylor
All, We recently upgraded and virtualized our UniVerse servers to UV 11.1 64-bit on a Cisco UCS B Series platform with a NetApp 3040A/A Filer.  Going to 64-bit with an upgrade in the virtualized environment, we expected to see a noticeable (if not significant) increase in performance than we we

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread John Thompson
Ugh... I wish I did. I will say one thing. In my experience with virtualization, it is a brave new world... and way more complex than the salesmen make it out to be. I don't know what type of hypervisor that Cisco is using, but, I suspect you are having issues with the performance of the virtual

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread Adam Taylor
John, Thanks. I just discussed these with our IT folks in charge of the UCS, and here is what I found out: 1) Our NetApp filer is on its own VLAN for the connection between the filer and UCS. The drives in our filer are SAS, and our UV server is actually on our fastest 15K disk shelf using

[U2] Can this Selection be done? Either UV or SQL?

2011-08-09 Thread George Gallen
ok. I have a select list of values. Is there a way to select a file and return all ID's that contain an item with a field that matches one of the values in a select list? At least from the command line, and not have to write a program. George Gallen Senior Programmer/Analyst Accounting/Data Di

Re: [U2] Can this Selection be done? Either UV or SQL?

2011-08-09 Thread Holt, Jake
You can use IN SELECT id from customers where city IN (select cityname from cities where state='MN'); -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen Sent: Tuesday, August 09, 2011 11:09 AM To: U2 Use

Re: [U2] Can this Selection be done? Either UV or SQL?

2011-08-09 Thread George Gallen
Is there anyway to : SELECT ID FROM CUSTOMERS WHERE CITY IN (GETLIST LISTNAME); To avoid having to put the list into a scratch file George > -Original Message- > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- > boun...@listserver.u2ug.org] On Behalf Of Holt, Jake > Sent: T

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread John Thompson
Is the disk shelf RAID 5 or RAID 10? Or some other fancy RAID technology? If its RAID 5 or 6 or whatever netapp uses, you could try just doing RAID 10 (1+0). Of course that would probably require totally re-doing the disk shelf disk setup and loading from a backup. Sometimes RAID arrays that hav

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread John Thompson
Googling during my lunch... I'm guessing this is the box you have, or something similar: http://www.netapp.com/us/products/storage-systems/fas3100/fas3100-tech-specs.html You might try disabling that RAID DP stuff they have and just running RAID 1 or RAID 10, as a first step in your process of el

[U2] UniSubroutineException

2011-08-09 Thread Charles_Shaffer
I am calling a UniBasic subroutine that gets a list of account numbers and returns information about them. On calls with a few account numbers, it works fine. On calls with a lot of account numbers, I am getting a UniSubroutineException. This makes me suspect that there is a maximum string l

Re: [U2] UniSubroutineException

2011-08-09 Thread Jeffrey Butera
On 08/09/11 14:28, charles_shaf...@ntn-bower.com wrote: I am calling a UniBasic subroutine that gets a list of account numbers and returns information about them. On calls with a few account numbers, it works fine. On calls with a lot of account numbers, I am getting a UniSubroutineException.

Re: [U2] UniSubroutineException

2011-08-09 Thread Charles_Shaffer
>>Jeff >>I too have suspected this, but don't have a definitive answer. Can you >>quantify "a lot"? I would guess that the largest string returned is at least 55K. That is a wild guess though. Charles Shaffer Senior Analyst NTN-Bower Corporation Jeffrey Butera Sent by: u2-users-boun...@

Re: [U2] UniSubroutineException

2011-08-09 Thread Jeffrey Butera
On 08/09/11 14:59, charles_shaf...@ntn-bower.com wrote: I would guess that the largest string returned is at least 55K. That is a wild guess though. That's a decent size. We're doing some work which can return upwards of 200k and haven't had any issues. -- Jeff Butera, Ph.D. Manager of E

Re: [U2] UniSubroutineException

2011-08-09 Thread Charles_Shaffer
>>That's a decent size. We're doing some work which can return upwards of 200k and haven't had any issues. Any time out settings? Charles Shaffer Senior Analyst NTN-Bower Corporation ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listse

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread John Hester
We have a NetApp FAS2020 with a fiber-connected shelf and use NFS for the VMware VMs stored on it. We don't run UV on it, though. The problem with running an I/O intensive app like UV on a SAN is that there's no way to predict the concurrent I/O demands that will be placed on the SAN by other vir

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread John Thompson
Ooops, had a typo there... This is a false statement I made: "If you are running a fiber link to it, you probably can't use NFS, so that idea is out." Sorry about that. On Tue, Aug 9, 2011 at 3:04 PM, John Hester wrote: > We have a NetApp FAS2020 with a fiber-connected shelf and use NFS for >

Re: [U2] UniSubroutineException

2011-08-09 Thread Jeffrey Butera
On 08/09/11 15:11, charles_shaf...@ntn-bower.com wrote: >>That's a decent size. We're doing some work which can return upwards of 200k and haven't had any issues. Any time out settings? We don't have any timeouts set (that I know of). Perhaps some of those on this list more experienced

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread Chris Austin
If you're talking in regards to RPC timeouts they can be changed at the following path> $root\IBM\unishared\unirpc\unirpcservices I have no idea if this will help with your issue at hand, does the exception throw any code#? Chris > Date: Tue, 9 Aug 2011 15:10:25 -0400 > From: jthompson...@g

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread John Thompson
I think you might have replied to the wrong post :) On Tue, Aug 9, 2011 at 3:53 PM, Chris Austin wrote: > > If you're talking in regards to RPC timeouts they can be changed at the > following path> > > $root\IBM\unishared\unirpc\unirpcservices > > I have no idea if this will help with your issue

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread Chris Austin
lol, you're right I did John.. it must be a long day. Chris > Date: Tue, 9 Aug 2011 16:08:57 -0400 > From: jthompson...@gmail.com > To: u2-users@listserver.u2ug.org > Subject: Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer? > > I think you might have replied to the wrong post :) > >

Re: [U2] Can this Selection be done? Either UV or SQL?

2011-08-09 Thread George Gallen
I found something about this on an old U2ug post from a few years ago. I do it in a similar way... SELECT @ID FROM EINVOICES WHERE iInvoiceRef IN (SELECT EVAL "@RECORD" FROM &SAVEDLISTS& 'INV.REF.LIST'); ... But I agree there

Re: [U2] Can this Selection be done? Either UV or SQL?

2011-08-09 Thread Kebbon Irwin
I think if you look up old posts on LSELECT, you may find an acceptable answer. It is a program that creates and uses work files, but once written, it works like a verb. I got it from the list and now use it regularly Cheers, Kebbon > From: ggal...@wyanokegroup.com > To: u2-users@listserv

Re: [U2] UV 11.1 64-bit on Cisco UCS with NetApp Filer?

2011-08-09 Thread Hona, David
Is your UVCONFIG parameters still set to the default values? If so, you need to change these to suit. You can baseline them using your previous UVCONFIG parameters from your old host and see how your application performs. Further tweaking of them may be required if your application profile (uti