Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Combine two arrays. for in for ?.. Post 303042854 by RudiC on Wednesday 8th of January 2020 12:09:02 PM
Old 01-08-2020
The overall approach seems a bit complex, selecting rows with identical criteria from a few different tables. How about serving a single db2 invocation a script, selecting all the criteria with an IN clause from a table, and running this across the tables needed? Letting the shell do (almost) all the transformations, although that needs some shell variable crisscross. Like


Code:
ARGLIST=$(sed -n ":L; N; \${s/\n/','/g; s/^\|$/'/g; p; q};  bL; " file2)

TABLES=( $(<file1) )
IFS=$'\n'
TABLES=( ${TABLES[*]/#/select DOCID from ICMADMIN.} )
db2  <<< "${TABLES[*]/%/ where ITEMID in ($ARGLIST);}"
select DOCID from ICMADMIN.NNDTY4_DOC_05001 where ITEMID in ('A1001001A19D02A60148J20560','A1001001A19D02A60149F20562','A1001001A19D02A60149F20566','A1001001A19D02A60149F20564','A1001001A19D02A60149F20568','A1001001A19D02A60150B20570','A1001001A19D02A60150B20572','A1001001A19D02A60150B20574','A1001001A19D02A60150E20578','A1001001A19D02A60150E20576');
select DOCID from ICMADMIN.NNDTY5_DOC_05001 where ITEMID in ('A1001001A19D02A60148J20560','A1001001A19D02A60149F20562','A1001001A19D02A60149F20566','A1001001A19D02A60149F20564','A1001001A19D02A60149F20568','A1001001A19D02A60150B20570','A1001001A19D02A60150B20572','A1001001A19D02A60150B20574','A1001001A19D02A60150E20578','A1001001A19D02A60150E20576');
.
.
.
select DOCID from ICMADMIN.NZGPIM_DAT_01001 where ITEMID in ('A1001001A19D02A60148J20560','A1001001A19D02A60149F20562','A1001001A19D02A60149F20566','A1001001A19D02A60149F20564','A1001001A19D02A60149F20568','A1001001A19D02A60150B20570','A1001001A19D02A60150B20572','A1001001A19D02A60150B20574','A1001001A19D02A60150E20578','A1001001A19D02A60150E20576');
IFS=$' \t\n'

This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Arrays

Dear all, How can i unset arrays. I mean all the subscripts including the array after using them. Could you direct me to some links of array memory handling in the korn shell. Thanks (2 Replies)
Discussion started by: earlysame55
2 Replies

2. Web Development

PHP arrays in arrays

PHP question... I have an SQL query that's pulled back user IDs as a set of columns. Rather than IDs, I want to use their names. So I have an array of columns $col with values 1,7,3,12 etc and I've got an array $person with values "Fred", "Bert", "Tom" etc So what I want to do is display the... (3 Replies)
Discussion started by: JerryHone
3 Replies

3. UNIX for Dummies Questions & Answers

arrays how to?

Hello, I am some what of a newbie to awk scripting and I seem to be struggling with this problem. I know I need to use arrays but I can't figure out how to use them. I have an input file that looks like this; Name,Team,First Test, Second Test, Third Test Crystal,Red,5,17,22... (1 Reply)
Discussion started by: vlopez
1 Replies

4. Shell Programming and Scripting

combine

Hi I am having text file like this 001|ramu|hno221|>< sheshadripuram|delhi|560061>< 002|krishna|hno225|>< newdelhimain|delhi|560061>< i want to combine every two lines as single...line... i.e 001|ramu|hno221|sheshadripuram|delhi|560061 can u pls help me (3 Replies)
Discussion started by: suryanarayana
3 Replies

5. Shell Programming and Scripting

bash: combine arrays with weird substitution/references

Hi all. I'm trying to finish a bash script with the following elements: ARRAY="blah $ITEM blah blah" ARRAY="blah blah $ITEM blah bluh" #ARRAY="...." # ...the ARRAY elements represent a variable but defined # syntax and they're all hard-coded in the script. #(...) ITEMS='1.0 2.3... (2 Replies)
Discussion started by: yomaya
2 Replies

6. Programming

question about int arrays and file pointer arrays

if i declare both but don't input any variables what values will the int array and file pointer array have on default, and if i want to reset any of the elements of both arrays to default, should i just set it to 0 or NULL or what? (1 Reply)
Discussion started by: omega666
1 Replies

7. Shell Programming and Scripting

How can I use the arrays ?

Hi all, I have a file test1.txt with the below contents abc def ghj xyz I tried printing these values using arrays. Script tried : =========== set -A array1 `cat test1.txt` count=${#array1 } i=0 while do echo "element of array $array1" done (1 Reply)
Discussion started by: dnam9917
1 Replies

8. Programming

Arrays in C++

I've noticed something interesting in C++ programming. I've always done tricky stuff with pointers and references to have functions deal with arrays. Doing exercises again out of a C++ book has shown me an easier way, I didn't even know was there. It's weird to me. When dealing with arrays, it... (4 Replies)
Discussion started by: John Tate
4 Replies

9. Shell Programming and Scripting

Using arrays?

I have never used arrays before but I have a script like this: var1=$(for i in $(cat /tmp/jobs.021013);do $LIST -job $i -all | perl -ne 'print /.*(\bInfo.bptm\(pid=\d{3,5}).*/' | tr -d "(Info=regpid" | tr -d ')'; $LIST -job $i -all | cut -f7 -d','| sed -e "s/^\(*\)\(*\)\(*\)\(.*\)/\1... (2 Replies)
Discussion started by: newbie2010
2 Replies

10. UNIX for Dummies Questions & Answers

Arrays

Am using bash For eg: Suppose i have a array arr=(1 2 3 4 5 6 7 8 9 10 11 12) suppose i give input 5 to a script and script should able to print values greater than or equal to 5 like below: Input: 5 output: 5,6,7,8,9,10,11,12 (7 Replies)
Discussion started by: manid
7 Replies
getdev(1M)						  System Administration Commands						getdev(1M)

NAME
getdev - lists devices based on criteria SYNOPSIS
getdev [-ae] [criteria...] [device...] DESCRIPTION
getdev generates a list of devices that match certain criteria. The criteria includes a list of attributes (given in expressions) and a list of devices. If no criteria are given, all devices are included in the list. Devices must satisfy at least one of the criteria in the list unless the -a option is used. Then, only those devices which match all of the criteria in a list will be included. Devices which are defined on the command line and which match the criteria are included in the generated list. However, if the -e option is used, the list becomes a set of devices to be excluded from the list. See OPTIONS and OPERANDS. OPTIONS
The following options are supported: -a Specifies that a device must match all criteria to be included in the list generated by this command. The option has no effect if no criteria are defined. -e Specifies that the list of devices which follows on the command line should be excluded from the list generated by this command. Without the -e the named devices are included in the generated list. The flag has no effect if no devices are defined. OPERANDS
The following operands are supported: criteria Defines the criteria that a device must match to be included in the generated list. criteria is specified by expressions. There are four possible expression types which the criteria specified in the criteria argument may follow: attribute=value Selects all devices whose attribute attribute is defined and is equal to value. attribute!=value Selects all devices whose attribute attribute is defined and does not equal value. attribute:* Selects all devices which have the attribute attribute defined. attribute!:* Selects all devices which do not have the attribute attribute defined. See the putdev(1M) manual page for a complete listing and description of available attributes. device Defines the devices which should be included in the generated list. This can be the pathname of the device or the device alias. EXIT STATUS
The following exit values are returned: 0 Successful completion. 1 Command syntax was incorrect, invalid option was used, or an internal error occurred. 2 Device table could not be opened for reading. FILES
/etc/device.tab ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ SEE ALSO
devattr(1M), getdgrp(1M), putdev(1M), putdgrp(1M), attributes(5) SunOS 5.10 5 Jul 1990 getdev(1M)
All times are GMT -4. The time now is 12:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy