Sponsored Content
Top Forums Shell Programming and Scripting awk file to read values from Db2 table replacing hard coded values Post 302902815 by asandy1234 on Thursday 22nd of May 2014 11:26:36 AM
Old 05-22-2014
Quote:
Originally Posted by Akshay Hegde
No surprise that code doesn't work, as your latest sample input is different from earlier one (case & double quotes).

Use this code

Code:
$ awk -F, 'FNR==NR{A[tolower(q $1 q)];next}!(tolower($3) in A)' q='"' compare.txt input.txt

Akshay you are a genius. It worked like a charm, thanks for the help...
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Converting Binary decimal coded values to Ascii Values

Hi All, Is there any command which can convert binary decimal coded values to ascii values... i have bcd values like below îîîîîîîîîîîî0î-- -v - Pls suggest a way to convert this. Thanks, Deepti.Gaur (3 Replies)
Discussion started by: gaur.deepti
3 Replies

2. Shell Programming and Scripting

Replacing File values

Currently I am using the tr command in 3 scenarios for a ksh script. 1) Replacing any spaces in the file with a ~ tr ' ' '~' <$orignalFile> $newFile 2) After certain processing is done at the end of the scirpt i convert the Tilde back to spaces tr ' ' '~' <$newFile> $newFile2 3) Last... (4 Replies)
Discussion started by: hgjdv
4 Replies

3. Shell Programming and Scripting

Reading values from a file using DB2 SQL

I have some alphbetical codes in that (1 Reply)
Discussion started by: kavithakuttyk
1 Replies

4. Shell Programming and Scripting

AWK: read values from file1; search for values in file2

I have read another post about this issue and am wondering how to adapt it to my own, much simpler, issue. I have a file of user IDs like so: 333333 321321 546465 ...etc I need to take each number and use it to print records wherein the 5th field matches the user ID pulled from the... (2 Replies)
Discussion started by: Bubnoff
2 Replies

5. Shell Programming and Scripting

select values from db1 table and insert into table of DB2

Hi I am having three oracle databases running in three different machine. their ip address is different. from one of the DB am able to access both the databases.(means am able to select values and insert values in to tables individually.) I need to fetch some data from DB1 table(say DB1 ip is... (2 Replies)
Discussion started by: aemunathan
2 Replies

6. Shell Programming and Scripting

Replacing values in a file based on values in another file

Hi I have 2 files:- 1. List of files which consists of names of some output files. 2. A delimited file; delimted by "|" I want to replace the value of the $23 (23rd column) in the delimited file with name in the first file. It is always position to position. Meaning first row of the first... (5 Replies)
Discussion started by: pparthiv
5 Replies

7. Shell Programming and Scripting

Read parameter file in a shell script to unload a DB2 Table???

Hi , I Have following requirement: DB2 Sql query to pass from a parameter file for example, I would create a parameter file with (SELECT column 1, column 2 FROM Table name) then job would read it and create a file with the contents named table.txt How to write/modify below ksh script to... (10 Replies)
Discussion started by: developer.dwh9
10 Replies

8. Shell Programming and Scripting

Query the table and return values to shell script and search result values from another files.

Hi, I need a shell script, which would search the result values from another files. 1)execute " select column1 from table_name" query on the table. 2)Based on the result, need to be grep from .wft files. could please explain about this.Below is the way i am using. #!/bin/sh... (4 Replies)
Discussion started by: Rami Reddy
4 Replies

9. Shell Programming and Scripting

Read record from the text file contain multiple separated values & assign those values to variables

I have a file containing multiple values, some of them are pipe separated which are to be read as separate values and some of them are single value all are these need to store in variables. I need to read this file which is an input to my script Config.txt file name, first path, second... (7 Replies)
Discussion started by: ketanraut
7 Replies

10. Shell Programming and Scripting

Read values from second file in awk

Hello Friends, I have written a script like the following, which finds some logs and fetchs some desired rows and then calculate average processing time of a spesific application. if then echo echo "----- There are three arguments which is expected to run this script! ... (5 Replies)
Discussion started by: EAGL€
5 Replies
conv(3) 						     Library Functions Manual							   conv(3)

NAME
toascii, tolower, _tolower, toupper, _toupper - Translate characters LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <ctype.h> int toascii( int c); int tolower( int c); int _tolower( int c); int toupper( int c); int _toupper( int c); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: toascii(), tolower(), _tolower(), toupper(), _toupper(): XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies the character to be converted. DESCRIPTION
The toascii(), tolower(), _tolower(), toupper(), and _toupper() functions translate all characters, including multibyte characters, to their specified character values. The toascii() function converts its input to a 7-bit ASCII character. The tolower() function takes an int value that can be represented as an unsigned char or the value of EOF (defined in the stdio.h header file) as its input. When the input of the tolower() function expresses an uppercase letter, and there exists a corresponding lowercase letter (as defined by character type information in the program locale category LC_CTYPE), the corresponding lowercase letter is returned. All other input val- ues in the domain are returned unchanged. The tolower() function has as its domain the range -1 through 255. In the C locale, or in a locale where case-conversion information is not defined, the tolower() function determines the case of characters according to the rules of the Portable Character Set (ASCII characters). Characters outside the ASCII range of characters are returned unchanged. The _tolower() macro is equivalent to the tolower() function, but executes faster. If the value of the c parameter to the _tolower() macro does not have a corresponding lowercase character, the results of the function are undefined. The toupper() function takes an int value that can be represented as an unsigned char or the value of EOF (defined in the stdio.h header file) as its input. When the input of the toupper() function expresses a lowercase letter, and there exists a corresponding uppercase letter (as defined by character type information in the program locale category LC_CTYPE), the corresponding uppercase letter is returned. All other input val- ues in the domain are returned unchanged. The toupper() function has as its domain the range -1 through 255. In the C locale, or in a locale where case-conversion information is not defined, the toupper() function determines the case of characters according to the rules of the Portable Character Set (ASCII characters). Characters outside the ASCII range of characters are returned unchanged. The _toupper() macro is equivalent to the toupper() function, but executes faster. If the value of the c parameter to the _toupper() macro does not have a corresponding uppercase character, the results of the function are undefined. NOTES
The LC_CTYPE category of the current locale affects all conversions. See the i18n_intro(5) reference page for more information on locale variables. RETURN VALUES
The toascii() function returns the logical AND of parameter c and the value 0X7F. When the c parameter is a character for which the isupper() function is TRUE, there is a corresponding character for which the islower() function is also TRUE. That lowercase character is returned by the tolower() function or by the _tolower() macro. Otherwise, the c parame- ter is returned unchanged. When the c parameter is a character for which the islower() function is TRUE, there is a corresponding character for which the isupper() function is also TRUE. That uppercase character is returned by the toupper() function or by the _toupper() macro. Otherwise, the c parame- ter is returned unchanged. RELATED INFORMATION
Functions: ctype(3) Other: i18n_intro(5), standards(5) delim off conv(3)
All times are GMT -4. The time now is 09:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy