-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Laansma
Sent: Tuesday, October 25, 2011 4:59 PM
To: U2 Users List
Subject: Re: [U2] UniBasic Question
Unless you know the keys to the records you're selecting, even the
EXECUTE "SEL
On 26/10/11 00:23, Steve Romanow wrote:
> I reread my post and meant no disrespect Wols. I shouldnt post replies
> without considering twice.
No worries Steve. I shoot from the hip sometimes too - it can be
embarrassing :-)
Cheers,
Wol
___
U2-Users mai
I reread my post and meant no disrespect Wols. I shouldnt post replies
without considering twice.
On Oct 25, 2011 7:00 PM, "Wols Lists" wrote:
> On 25/10/11 22:22, Steve Romanow wrote:
> > I don't know if I agree that SELECT is faster. If you are using
> > indexed fields, SELECT is definitely n
Consider a sparse file. I have seen where a execute select is faster so I
counter your AlwaysFaster claim. Like the previous poster said, it will
always be fastest to start, but not always first to complete.
On Oct 25, 2011 7:00 PM, "Wols Lists" wrote:
> On 25/10/11 22:22, Steve Romanow wrote:
On 25/10/11 22:22, Steve Romanow wrote:
> I don't know if I agree that SELECT is faster. If you are using
> indexed fields, SELECT is definitely not the good choice.
>
SELECT *is* faster. Because it does far less work!
EXECUTE SELECT needs to read the entire file to create a select list.
SELECT
: Re: [U2] UniBasic Question
RetrieVe will use an index if it can, regardless of the order of the
election criteria (& if not select list is already active).
etrieVe will now do intersections of index reults if 2 indexed
election criteria are specified.
'm not sure when or how good it
ng it, in any manner like the way the records are layed on the disk.
That causes thrashing.
-Original Message-
From: Steve Romanow
To: U2 Users List
Sent: Tue, Oct 25, 2011 3:07 pm
Subject: Re: [U2] UniBasic Question
But you are potentially reducing your input set for the 2nd crite
benefit of the index is washed
out.
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles
Stevenson
Sent: Tuesday, October 25, 2011 2:39 PM
To: U2 Users List
Subject: Re: [U2] UniBasic Question
True on UV, too.
Compare
But you are potentially reducing your input set for the 2nd criteria
by a large margin correct?
I've never considered alt key + non-indexed usage to create disk thrash.
When you select on an alternate key index, you are reading the file,
but (in Udt at least) an X_myfile binary file. So you are
nson
Sent: Tuesday, October 25, 2011 2:39 PM
To: U2 Users List
Subject: Re: [U2] UniBasic Question
True on UV, too.
Compare output of these using EXPLAIN keyword:
LIST FILE WITH indexed_field = "soemthing" EXPLAIN
LIST FILE WITH indexed_field = "soemthing" EXPLAIN NO.INDEX
Yes yes and no.
If you execute a SSELECT on an indexed field, and don't specify NO.INDEX and do
NOT refer at all to any other fields in the file, then index does NOT read the
record to see if it even actually exists. It just retrieves the list of keys
from the index.
If you specific a SSELEC
the benefit of the index is washed
> out.
>
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org
> [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles
> Stevenson
> Sent: Tuesday, October 25, 2011 2:39 PM
> To: U2 Users List
> Subject: Re: [U2]
Add a second selection criteria and the benefit of the index is washed
out.
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charles
Stevenson
Sent: Tuesday, October 25, 2011 2:39 PM
To: U2 Users List
Subject: Re: [U2
True on UV, too.
Compare output of these using EXPLAIN keyword:
LIST FILE WITH indexed_field = "soemthing" EXPLAIN
LIST FILE WITH indexed_field = "soemthing" EXPLAIN NO.INDEX
Or forget EXPLAIN, but do it with a large file and notice the speed
differnce.
On 10/25/2011 4:29 PM, charles_shaf..
ll find it's pretty darn
close with only a slight difference.
BobW
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of
charles_shaf...@ntn-bower.com
Sent: Tuesday, October 25, 2011 2:14 PM
To: U2 Users List
Subject: R
>> I don't know if I agree that SELECT is faster. If you are using
>> indexed fields, SELECT is definitely not the good choice.
Are you saying that when there is an index, the system does not need to
read the record at all? It just gets the SELECT list from the index? Is
this only true in Uni
I don't know if I agree that SELECT is faster. If you are using
indexed fields, SELECT is definitely not the good choice.
On Tue, Oct 25, 2011 at 5:14 PM, wrote:
>>> Unless you know the keys to the records you're selecting, even the
>>> EXECUTE "SELECT ..." is going to have to read each record,
>> Unless you know the keys to the records you're selecting, even the
>> EXECUTE "SELECT ..." is going to have to read each record, how else
>> would it know which records to throw out?
SELECT is definitely faster than EXECUTE "SELECT..." and I try and use it
first.
Charles Shaffer
Senior Analys
n-bower.com
Sent: Tuesday, October 25, 2011 4:53 PM
To: U2 Users List
Subject: Re: [U2] UniBasic Question
>> Dave
>> The next-to-last one may depend on Unidata vs. Universe. I
>> understand that Unidata only 'fetches' the key in the READNEXT while
>> I
>> Dave
>> The next-to-last one may depend on Unidata vs. Universe. I understand
>> that Unidata only 'fetches' the key in the READNEXT while I believe
>> Universe grabs both the key and record, due to the construct of the
>> database.
I believe that is the case in Unidata. A SELECT returns a li
se grabs both the key and record, due to the construct of the
database.
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Tuesday, October 25, 2011 4:08 PM
To: u2-users@listserver.u2ug.org
Subject: Re:
And... when you prematurely quit from an execution level which *had* been
processing a select list your select list is not thrown away.
Which is annoying.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman
>> Can anyone help explain this behavior or offer a workaround that saves me
>> from handling it with line counters and printing my own
>> headings?Cheers,Kebbon
>> ___
Perry's approach is the correct one. If you
Kebbon:
I've converted our application from D3 to UniData. There were a number
of issues with the Heading statement and, if I remember correctly,
wouldn't allow me to do what you're trying. Fortunately, we already had
a "scrolling" program to pass output into so this didn't cause problems.
s out.
Perry
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kebbon Irwin
Sent: Monday, October 24, 2011 9:29 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniBasic Question
The subroutine does an execute
encing the behavior?
> From: syme...@gmail.com
> To: u2-users@listserver.u2ug.org
> Date: Mon, 24 Oct 2011 16:20:10 +0100
> Subject: Re: [U2] UniBasic Question
>
> Is this unibasic doing an execute and the 'report' done using a List command
> ?
>
>
>
>
Is this unibasic doing an execute and the 'report' done using a List command
?
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kebbon Irwin
Sent: 24 October 2011 16:13
To: u2-users@listserver.u2ug.org
Subject: [U2]
[mailto:
> u2-users-boun...@listserver.u2ug.org] On Behalf Of Keith Johnson [DATACOM]
> Sent: Sunday, July 31, 2011 5:02 PM
> To: 'u2-users@listserver.u2ug.org'
> Subject: Re: [U2] UniBasic SELECT
>
> The problem may be in the use of program variables in the executed code.
QL+" prompt went away.
Thanks very much indeed for the help. I appreciate it.
Regards,
--Bill
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Keith Johnson
[DATACOM]
Sent: Sunday, July 31, 2011 5:02 PM
To:
The problem may be in the use of program variables in the executed code.
Using Universe, if I have code:
VERB = 'SELECT VOC LIKE A...'
EXECUTE VERB
CRT @SELECTED
CLEARSELECT
I get the result
237 record(s) selected to SELECT list #0.
237
If I change the filename to something that doesn't exit,
ion of the
code.
BobW
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman
Sent: Friday, July 29, 2011 3:53 PM
To: U2 Users List
Subject: Re: [U2] UniBasic SELECT
Thanks to Larry and Wol for writing.
Both ways work to get r
On 29/07/11 23:53, Bill Brutzman wrote:
> Thanks to Larry and Wol for writing.
>
> Both ways work to get rid of the red warnings but both ways I still get the
> pesky SQL+ prompt at the end.
That sounds weird. I was wondering why the EXECUTE made the SQL+ prompt
appear, but there's no way a BASI
LIST.2 is a variable inside your databasic code. EXECUTE runs some TCL code
and is not privy to your databsic variables.
I presume you want to concatenate LIST.2 to the end of the execute command
and not include it in the string
-Original Message-
From: u2-users-boun...@listserver.u2u
f Of Wols Lists
Sent: Friday, July 29, 2011 6:37 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UniBasic SELECT
On 29/07/11 23:14, Bill Brutzman wrote:
> In an inherited legacy app, I have a few commands like
>
> LIST.1 = 1
> LIST.2 = 2
> LIST.3 = 3
>
On 29/07/11 23:14, Bill Brutzman wrote:
> In an inherited legacy app, I have a few commands like
>
> LIST.1 = 1
> LIST.2 = 2
> LIST.3 = 3
> LIST.4 = 4
>
> SELECT F.ICC to LIST.2
> SELECT F.ICC to LIST.3
> SELECT F.ICC to LIST.4
>
> And then
#1 - Why would you want to change a Basic SELECT to EXECUTE a SELECT?
#2 - If you still want to do this, change this:
Execute " SELECT F.ICC to LIST.2"
To this:
Execute " SELECT F.ICC to ":LIST.2
Larry Hiscock
Western Computer Services
-Original Message-
From:
ward Brown
Sent: Friday, October 16, 2009 4:49 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Try changing
IF MV.COUNT<1,A> EQ 1 THEN OUT.LINE<1,B> = REC ELSE OUT.LINE<1,B> =
REC
To
IF MV.COUNT<1,B> EQ 1 THEN OUT.LINE&
Ltd, Pune,
( : +91-20-22909212
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, October 16, 2009 4:49 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data
sers-boun...@listserver.u2ug.org] On Behalf Of Dattatraya Walgude
Sent: 16 October 2009 12:17
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Now Date is converted, but multivalue ( C , R ) still missing.
,Jones, Bob,123 E. 23rdst.,Arvada,CO,80276,303776885
Thanks & Regards,
Dattatraya Walgude
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, October 16, 2009 3:29 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract
Sent: Friday, October 16, 2009 3:29 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Dattatraya,
(Possible) correction added.
You really need to take the time to understand the example code we're giving
you. There will still be problems in the c
d St.,Arvada,CO,80276,3037768854,V4341,9611,D,7,R,6
Jones, Bob,123 E. 23rd St.,Arvada,CO,80276,3037768854,V4341,9611,D,7,R,6
Thanks & Regards,
Dattatraya Walgude
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of
essage-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: Friday, October 16, 2009 12:39 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Yes, and I've just spotted the first
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dattatraya
Walgude
Sent: 16 October 2009 05:20
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Many Thanks George
Now output is giving following way
Jones, Bob,123 E. 23rd St.,Arvada,CO
WRITESEQ OUT.LINE ...
NEXT A
*
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Edward Brown
Sent: 16 October 2009 08:06
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Dattatraya - in un
Hope this helps - I've not compiled it so it might need a bit of
tweaking to get it working.
Ed
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dattatraya
Walgude
Sent: 16 October 2009 05:20
To: U2 Users List
Sub
Dattatraya,
oconv(9611,'d2/')
will get you your date.
Dattatraya Walgude wrote:
But I want following way ( D,C,R are multivalue ) , date output also
showing 9611 which is (04/24/94) is it possible?
___
U2-Users mailing list
U2-Users@listser
inal Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen
Sent: Thursday, October 15, 2009 6:54 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Try first starting with:
age -
From: "Susan Lynch"
To: "U2 Users List"
Sent: Wednesday, October 14, 2009 5:34:31 PM GMT -05:00 US/Canada Eastern
Subject: Re: [U2] Unibasic: Sample Program
Brenda, I did check it out, and it is interesting, but I still wonder if 3
years later, when the business
Hi. I am getting in on this discussion late. Although the programming on
the fly approach is unavoidable to some degree, I am a firm believer in
defining specs as much as possible up front.
Yogi Berra says:
"Be careful if you don't know where you're going. You might not know it
when you get
un...@listserver.u2ug.org] On Behalf Of Dattatraya Walgude
> Sent: Thursday, October 15, 2009 1:59 AM
> To: U2 Users List
> Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
>
> Sorry Symeon and all for asking such silly question.
>
> I manage @ID column in out
@listserver.u2ug.org
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Dattatraya,
Are you interested in getting training in UniData and SBClient? If so
there are people (not me) on this list who have online training courses.
If you are interested please let us know and I'm
: ',':ID
Thanks& Regards,
Dattatraya Walgude
DBA Team
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug
Sent: Tuesday, October 13, 2009 1:12 AM
To: 'U2 Users List'
Subject: Re: [U2] Uni
All,
Clif Oliver has said that he'd love a good article on Agile and how
it applies to MV for an upcoming Spectrum issue. I think the title he
had floated past us was "MV: Agile for 30 Years"
- Chuck
___
U2-Users mailing list
U2-Users@listserve
lawed.
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Robert Porter
Sent: 14 October 2009 23:05
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample Program
Agile and Scrum (basically agile 30 days sprint cycles) doesn'
-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dattatraya
Walgude
Sent: 15 October 2009 06:59
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Sorry Symeon and all for asking such silly question.
I manage @ID column in
D
Thanks & Regards,
Dattatraya Walgude
DBA Team
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug
Sent: Tuesday, October 13, 2009 1:12 AM
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sam
I could not put it more eloquently Ross.
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Ross Ferris
> Sent: Thursday, 15 October 2009 1:00 p.m.
> To: U2 Users List
> Subject: Re: [U2] Unibas
alker
>Sent: Thursday, 15 October 2009 6:56 AM
>To: U2 Users List
>Subject: Re: [U2] Unibasic: Sample Program
>
>I agree, agile and scrum are the way to go
>
>However, this is not just a term for no specifications and an open
ended
>project.
>
>This methodol
t;
To: "U2 Users List"
Sent: 10/14/2009 6:04 PM
Subject: Re: [U2] Unibasic: Sample Program
Agile and Scrum (basically agile 30 days sprint cycles) doesn't mean the
system does not get documented. It just means a more iterative process
with decisions being made later in the cy
can hit the ground running rather than reading all the
code again.
I look forward to hearing back from you in a few years on how well this
works in the real world!
Susan Lynch
- Original Message -----
From: "Brenda Price"
To: "U2 Users List"
Sent: 10/14/2009 3:28 PM
g rather than reading all the
code again.
I look forward to hearing back from you in a few years on how well this
works in the real world!
Susan Lynch
- Original Message -
From: "Brenda Price"
To: "U2 Users List"
Sent: 10/14/2009 3:28 PM
Subject: Re: [U2] Uniba
; To: 'U2 Users List'
> Subject: Re: [U2] Unibasic: Sample Program
>
> My experience in this is as a software vendor - it can be very
> dangerous to
> engage with a customer in an agile development - As a vendor we supply
> our
> packaged product with a certain amount
Two keys to making agile safe are [1] OSGI config management and [2]
software test. Of course, customers want everything done yesterday.
--Bill
-Original Message-
From: Symeon Breen
Sent: Wednesday, October 14, 2009 4:27 PM
My experience in this is as a software vendor - it can be very
...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of phil walker
Sent: 14 October 2009 20:56
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample Program
I agree, agile and scrum are the way to go
However, this is not just a term for no specifications and an open ended
project
nd he
became a devout convert to multi-value systems...)
Susan Lynch
- Original Message -
From: "Jeff Powell"
To:
Sent: 10/14/2009 4:00 PM
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
On the other hand some of us end up spending senseless days re
Thursday, 15 October 2009 8:31 a.m.
> To: U2 Users List
> Subject: Re: [U2] Unibasic: Sample Program
>
> Well, when our company gets this fully implemented. You can count
over
> 250 Highlander's Immortals on the list!
>
> Seriously, check out "agile" and "scru
On the other hand some of us end up spending senseless days
re-engineering a product every time management changes it's mind what
the product should do. It's a good thing I get paid for doing what the
boss says rather than getting paid by completed projects.
My boss actually brags about our
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Susan Lynch
> Sent: Wednesday, October 14, 2009 3:26 PM
> To: U2 Users List
> Subject: Re: [U2] Unibasic: Sample Program
>
> Ah, it must be l
Susan Lynch
- Original Message -
From: "Brutzman, Bill"
To: "U2 Users List"
Sent: 10/14/2009 3:20 PM
Subject: Re: [U2] Unibasic: Sample Program
John's world is similar to my world here. When I realized that I would
be the only person reading the specs, I
utzman, Bill
> Sent: Wednesday, October 14, 2009 3:21 PM
> To: U2 Users List
> Subject: Re: [U2] Unibasic: Sample Program
>
>
> John's world is similar to my world here. When I realized that I
would
> be the only person reading the specs, I stopped writing to myself. At
John's world is similar to my world here. When I realized that I would
be the only person reading the specs, I stopped writing to myself. At
the risk of no longer being a professional dinosaur, I learned that some
people call it "agile".
Check out... Eckhart Tolle's book "The Power of Now".
-
line
shouldn't be in the position to start with.
Jerry Banker
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Susan Lynch
Sent: Wednesday, October 14, 2009 11:35 AM
To: U2 Users List
Subject: Re: [U2] Unibas
I'm with Susan on this. My job as a consultant is to help
clients define what they want so that anyone can code it. My job
as a programmer is to implement the spec that was defined. These
are two separate skills. Without specs the programmer codes what
he/she thinks is required, leaving the cli
In message <02fb01ca4c38$ab3ad6c0$01b084...@com>, Symeon Breen
writes
Actually for many it is mass produced. Specification is being done to the
absolute minutia, for example in the Unified Rational process, when
generating use cases these get transmitted down to the architectural
specifications
Behalf Of Susan Lynch
Sent: Wednesday, October 14, 2009 12:35 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
John, I agree that listening to the super users is critical. However,
writing a detailed spec will give those super users the ability to
-
From: "Israel, John R."
To: "U2 Users List"
Sent: 10/14/2009 12:14 PM
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
You cannot buy knowledge of a business. Experience with a technology:
yes. Knowledge of how a specific company works: no
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Susan Lynch
Sent: Wednesday, October 14, 2009 12:00 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
As a programmer who has
usan Lynch
- Original Message -
From: "jpb-u2ug"
To: "'U2 Users List'"
Sent: 10/14/2009 8:18 AM
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Alleluia! Brother!
Jerry Banker
-Original Message-
From: u2-users-boun...@l
Should those thousand "low quality coders" quit their jobs and line up
at the local soup kitchen?
If it is true that the world needs more computer programs... it follows
that the world needs more programmers,
not less.
-Original Message-
From: Symeon Breen
Sent: Wednesday, October 14, 2
Alleluia! Brother!
Jerry Banker
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen
Sent: Wednesday, October 14, 2009 5:00 AM
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program -
: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of jpb-u2ug
Sent: 13 October 2009 22:54
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
If you are going to go that far with the minutia then why not ju
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Actually for many it is mass produced. Specification is being done to the
absolute minutia, for example in the Unified Rational process, when
generating use cases these get transmitted d
With a number of the modern languages, there is a lot of code that is mind
numbing boring and tedious. What is a couple of lines in unibasic is hundreds
of lines in .Net, Java, etc. What is being outsourced is all the tedious
unclever stuff such as defining variables and validations and other
g
Sent: 13 October 2009 18:00
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
I don't see where you are coming from here. Every program I ever produce is
for a specific purpose. We don't create one program and then have an
assembly line
with a couple goto's spinkled in for good measure?? ;)
> -Original Message-
> From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
> boun...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
> Sent: Tuesday, October 13, 2009 1:45 PM
> To: U2 Users List
> Sub
ubject: Re: [U2] Unibasic: Sample program -
I don't think anyone was questioning
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
t: Tuesday, October 13, 2009 9:43 AM
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Indian development firms are pretty much the same as any other - if you get
a small highly focused team of experts they will achieve a lot. The problem
is when yo
do without first of
having him trained on it.
Jerry Banker
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charlie Rubeor
Sent: Tuesday, October 13, 2009 8:26 AM
To: 'U2 Users List'
Subject: Re: [U2] Unibasic:
development.
Perhaps
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Larry Hiscock
Sent: 12 October 2009 22:09
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program - to extract data from Tab
stserver.u2ug.org] On Behalf Of bney...@hcmg.net
Sent: Monday, October 12, 2009 1:47 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Doesn't matter which. We are the next group that will be asked to work
for reduced pay or our work will go
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of bney...@hcmg.net
Sent: Monday, October 12, 2009 1:47 PM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Doesn't matter
e respond to
U2 Users List
To
"'U2 Users List'"
cc
Subject
Re: [U2] Unibasic: Sample program - to extract data from Table
> And you are from outsource product develop company in India that has
been
> tasked to work on this U2 system.
http://www.rsystems.com/
> And you are from outsource product develop company in India that has been
> tasked to work on this U2 system.
http://www.rsystems.com/
It is a question that needs to be asked. Was this firm contracted for support
or for development?
___
U2-Users ma
...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dattatraya
Walgude
Sent: Monday, October 12, 2009 7:24 AM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Thanks for your support.
We get output of multivalve columns.
Only
ber 12, 2009 6:24 AM
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Thanks for your support.
We get output of multivalve columns.
Only things is we can not get out of DATE column is date format.
So please g
ya Walgude
Sent: 12 October 2009 14:24
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Thanks for your support.
We get output of multivalve columns.
Only things is we can not get out of DATE column is date format.
So please give your suggestions.
Jones
-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen
Sent: Monday, October 12, 2009 6:13 PM
To: 'U2 Users List'
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
The code is just an exam
riginal Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dattatraya
Walgude
Sent: 12 October 2009 12:58
To: U2 Users List
Subject: Re: [U2] Unibasic: Sample program - to extract data from Table
Output is not readable:-
"1433
ýý9757","13942ýSUSýFailed ValidationýýýWITH SIXTYD.ABOVE.AMT.OVRD GE
10.00 ý
Thanks & Regards,
Dattatraya Walgude
-----Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dattatraya Walgude
Sent: Monday,
1 - 100 of 190 matches
Mail list logo