Albert: I hear ya! I'm probably a bit OCD on wanting to see the
least amount of code necessary to do the task. And when I see
someone's code like this:
select column1, column2, column3 into
vColumnVar1 INDICATOR vColumnVar1Indicator,
vColumnVar2 INDICATOR vColumnVar2Indicator ....
and then they never use the indicators for anything, it drives me crazy!
What's wrong with
select column1, column2, column3 into
vColumnVar1 IND iv1, vColumnVar2 IND iv1
Karen
In a message dated 5/16/2012 9:39:18 AM Central Daylight Time,
[email protected] writes:
> I simply create a variable i1 and use that on every variable in a select
> into. The same null indicator on every variable works for me, and takes
> up very little room in RBEdit.
>
> Albert