Need a simple file based utilty for shell scripts


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need a simple file based utilty for shell scripts
# 1  
Old 04-27-2007
Need a simple file based utilty for shell scripts

Hello,

I'm wondering if you may know of a simple file based UNIX utility that can be used to store and retrieve values on a flat file, let's say i have a file called "kru", i'd like to be able to specify a request like:
while(....)
if [ kru.fld1 = $stepid ] ; then
kru.fld2 = $rec_cnt
kru.fld3 = $status_code
krul.fld4 = $file_status
fi
done

Basically i'm trying to avoid using Oracle to manage the step by step audit values for a bunch of kshells used to automate the manual load processes for an Oracle database.

Thanks very much for any inisghts! Smilie
BobK
# 2  
Old 05-01-2007
Please make your question more clear

esham
www.openhat.org
# 3  
Old 05-01-2007
Hi Esham,

Well seems to me that there must be a pretty straight forward string based utility that could be used as a flat file database to keep track of condition codes, record counts ect for the various steps in a script.

For example let's say step1 of my oracle build script is to check the record counts of a table. I would retrieve the count and then store it by using somehting like this: file_db.step="step1", file_db.recnt=$oracnt ect.

Before loading oracle in step2 i would first check to make sure that the file_db.recnt from step1 was 0, ie:

if [ file_db.step = "step1" && file_db.recnt = 0 ] ; then
ksh load_table.ksh
else
file_db.step =j "step2"
file_db.status=1
fi

In other words, it would like like a C structure, but wrapped by some easy to use interface.

Thanks for any idea Esham!
BobK
# 4  
Old 05-01-2007
Hi.

Using Google search for flat file database linux utility shell returns about 500K hits.

This may not be simple, but it looks interesting: http://ff-extractor.sourceforge.net/ ... cheers, drl
# 5  
Old 05-01-2007
Thanks drl, that does looking interesting, going to check it out further!

Have a goodone drl!

BobK
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Rename files based on simple text file

Hello! New here although not completely new to Unix. I wonder how I could rename files based on the data found in a simple textfile. It goes like this: I have 4 files 1 ldfgkkfjslkdfjsldkfjsf.wav 2 nndsdflksdjf.wav 3 sdflksjdf jjsdflsdfl.wav 4 dkadsdddd.wav Textfile.txt looks like... (14 Replies)
Discussion started by: Oortone
14 Replies

2. Shell Programming and Scripting

KSH - How to call different scripts from master scripts based on a column in an Oracle table

Dear Members, I have a table REQUESTS in Oracle which has an attribute REQUEST_ACTION. The entries in REQUEST_ACTION are like, ME, MD, ND, NE etc. I would like to create a script which will will call other scripts based on the request action. Can we directly read from the REQUEST_ACTION... (2 Replies)
Discussion started by: Yoodit
2 Replies

3. Shell Programming and Scripting

Running Multiple scripts based on file size.

Hi, I have created 3 shell scripts which has to run one by one first two shell scripts will create a .txt files...which are used by the third shell script.Now I want to create a master script and run all these in a single script. Please give a pseudo code on how to so the same. ... (4 Replies)
Discussion started by: gaur.deepti
4 Replies

4. Shell Programming and Scripting

calling 'n' number of shell scripts based on dependency in one shell script.

Hello gurus, I have three korn shell script 3.1, 3.2, 3.3. I would like to call three shell script in one shell script. i m looking for something like this call 3.1; If 3.1 = "complete" then call 3.2; if 3.2 = ''COMPlete" then call 3.3; else exit The... (1 Reply)
Discussion started by: shashi369
1 Replies

5. Shell Programming and Scripting

problems installing expect utilty

Hi all, I am trying to install expect utility on RHEL 5. It is showing that we also need to install tcl also in order to run it. I have downloaded expect from Tucows Tucows Download - Download Expect 5.32.1 and tcl from SourceForge.net: Downloading ... Can someone please tell me... (5 Replies)
Discussion started by: vikas027
5 Replies

6. Shell Programming and Scripting

shell scripts to grep dn in ldif file

Hi gurus out there, 1)I am using ksh, in solaris 10. 2)I have one ldif file, I need to output user DN with attributes=<some pattern> to a file. Example: dn: uid=joy,ou=People,o=abc.com,o=isp nswmExtendedUserPrefs: meAutoSign=true nswmExtendedUserPrefs: meSignature=Regards, Joy... (3 Replies)
Discussion started by: bulkbiz
3 Replies

7. Shell Programming and Scripting

simple shell scripts

hi everyone... i'm new to this shell programming and i want help with the following question... i hope someone can help me ...pls plsssssssssss ========================================================== the question ========================================================== A number of... (1 Reply)
Discussion started by: moon14
1 Replies

8. Shell Programming and Scripting

Plz Help To convert xml file to text file using bourn shell scripts

If someone out there could help me out with this problem. I would really appreciate it. I am trying to convert xml into text file(fixed length) using Unix Borne shell scripts. My xml file: <root> <header_rec recordtype="00"> <record_id>00</record_id> <country_code>AK></country_code>... (0 Replies)
Discussion started by: ram2s2001
0 Replies

9. Shell Programming and Scripting

two simple question on shell scripts....

:D my first question is how can envoke filename expansion from within a shell script.. forinstance if i execute the script and it asks for a specific directory that i would like to cd to, how can i get the script to use the same file name expension as the command line.. my second question is how... (3 Replies)
Discussion started by: moxxx68
3 Replies

10. Shell Programming and Scripting

Help on Simple shell that look for a file type

Hello Everyone, I got a simple question. I'm trying to write a shell that looks for a file that arived ftp area and keeps looking until it find it. It should look for the file that begins with test and then when it finds it. It starts the wmdaten.sh shell. All i got is that it runs... (5 Replies)
Discussion started by: Peterh
5 Replies
Login or Register to Ask a Question