Sponsored Content
Top Forums Shell Programming and Scripting Looping through records in db and processing them in UNIX Post 302979686 by jim mcnamara on Wednesday 17th of August 2016 07:46:47 PM
Old 08-17-2016
assume your read the filename from table as column fname
If you were to execute the host command hundreds of times it would be VERY slow.
Write to a file instead, then run all the commands afterwards, plus this lets you check
your commands for errors before they mess up.
Code:
> ./destfile.shl

# here document for sqlplus code:
sqlplus user/pwd@DEV <<-EOF
set serverout on size 1000000
spool destfile.shl
DECLARE
  fname varchar2(256):=NULL;
BEGIN
dbms_output.enable(1000000);
for i IN (select fname from table)  --or whatever you need to do to get a resultset
loop
    dbms_output.put_line( '/usr/bin/mv '||fname||  ' /destination/some/directory ');
-- for every record I need to switch to UNIX and move the files to some directory.
-- no you do not
end loop
END;
/

EOF

# now execute all your commands
# READ destfile.shl for errors first then run destfile.shl
#
# ./destfile.shl  uncomment for production.


Last edited by rbatte1; 08-18-2016 at 06:37 AM.. Reason: Added missing /ICODE tag
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help with Unix File Processing

Hi, Does anyone know of a Unix command that would give me the most recent file from a list of files with the same names except for the date/time stamp, i.e. kah_en_20070103T2234307Z.zip (with an actual date/time stamp of 1/3/07 4:41 pm), kah_en_20070104T054732Z.zip (with an actual date/time stamp... (6 Replies)
Discussion started by: tls77065
6 Replies

2. Shell Programming and Scripting

how to achieve following parallel processing thru unix

hey...... i hav the follwing scripts needs to run parallel, so i made it as follows, $HPath/start_script.sh 20 & $HPath/start_script.sh 03 & $HPath/start_script.sh 01 & $HPath/start_script.sh 12 & then once all these above got completed successfully i have to run ... (3 Replies)
Discussion started by: manas_ranjan
3 Replies

3. Shell Programming and Scripting

AWK Multi-Line Records Processing

I am an Awk newbie and cannot wrap my brain around my problem: Given multi-line records of varying lengths separated by a blank line I need to skip the first two lines of every record and extract every-other line in each record unless the first line of the record has the word "(CONT)" in the... (10 Replies)
Discussion started by: RacerX
10 Replies

4. UNIX for Dummies Questions & Answers

processing records in a file

Hi, I have a file that contains some records that I would like to process each line that I am interested in. My goal is to create a new file that contains only the rest_of_line for each line that matches. It has the following File Format command, platform, rest_of_line" I am searching the... (2 Replies)
Discussion started by: CAGIRL
2 Replies

5. Shell Programming and Scripting

How to use looping in unix

Can someone help me coding a loop (like for loop in C)? I mean what is the syntax....? My requirement is, i have to send every successive string searched using awk to a csv file till the end of the file..Please help. (1 Reply)
Discussion started by: goutam_igate
1 Replies

6. Infrastructure Monitoring

Processing records as group - awk

I have a file has following records policy glb id 1233 name Permit ping from "One" to "Second" "Address1" "Any" "ICMP-ANY" permit policy id 999251 service "snmp-udp" exit policy glb id 1234 name Permit telnet from "One" to "Second" "Address2" "Any" "TCP-ANY" permit policy id 1234... (3 Replies)
Discussion started by: baskar
3 Replies

7. Solaris

Signal Processing in unix

I've read the man page of singal(3) but I still can't quite understand what is the difference between SIGINT, SIGALRM and SIGTERM. Can someone tell me what is the behavioral difference among these 3 signals in kill command? Thanks! (2 Replies)
Discussion started by: joe228
2 Replies

8. Programming

Unix Shell background processing

So I made my own unix shell, but i want to make a background process when using the & appended to the end, so far most of the commands seem to work (except cd, but thats another story) right now here is what I have got. Im thinking maybe I shouldn't be using switch and maybe switch it to... (27 Replies)
Discussion started by: Mercfh
27 Replies

9. Shell Programming and Scripting

Looping with wait in UNIX

Hello Gurus , Could you help me with my below requirement In my script I will start a process ,it takes some time to complete the process.After completion it will create a file after that I have to restart the process again The number of time it will be done will vary but that count we... (4 Replies)
Discussion started by: Pratik4891
4 Replies

10. Shell Programming and Scripting

Text processing in UNIX

Greetings! I have a text file that I am trying to process to get the desired output but looks like I will need the community help. Input File: a|x|london|consumer|consumer1|country||D|consumer|consumer1|country||1 a|x|paris|consumer|consumer2|country||D|consumer1|consumer2|country||2... (3 Replies)
Discussion started by: bikerboy
3 Replies
openipmish(1)						 Shell interface to an IPMI system					     openipmish(1)

NAME
openipmish - Shell interface to an IPMI system SYNOPSIS
openipmish [option] DESCRIPTION
The openipmish is a command interpreter that gives the full power of the OpenIPMI library to a user-level command language. It is designed so it can easily be driven with a scripting language like TCL, it has well-formed output. openipmish starts up with no connections or anything of that nature. You must enter commands to make connections to domains. OPTIONS
--dmsg Turn on message debugging, this will dump all messages to debug log output. --drawmsg Turn on raw message debugging, this will dump all low-level messages to debug log output. This differs from normal message debug- ging in that all protocol messages are also dumped, not just IPMI messages. --dmem Turn on memory debugging, this will cause memory allocation and deallocations to be checked. When the program terminates, it will dump all memory that was not properly freed (leaked). --dmsgerr Turn on printing out low-level message errors. --dlock Turn on lock debugging, this will check lock operations to make sure that locks are help in all the proper places and make sure that locks are properly nested. -x <string>, --execute <string> Execute the given string at startup. This may be entered multiple times for multiple commands. --glib Use glib for the OS handler. --snmp Enable the SNMP trap handler. openipmish must be compiled with SNMP code enabled for this option to be available. --help Help output COMMANDS
openipmish follows the standard command syntax defined in ipmi_cmdlang(7). See that for the details on most commands. The IPMI manual that comes with OpenIPMI will also be quite handy. openipmish defines some commands that are not in the standard command language. These are: read Read and execute commands from the given file. exit Quit redisp_cmd on|off Normally, openipmish redisplays the command line when an event comes in. This is nice for interactive use, but bad for scripting. This lets you turn that function on and off. SEE ALSO
ipmi_cmdlang(7), ipmi_ui(1) KNOWN PROBLEMS
None AUTHOR
Corey Minyard <cminyard@mvista.org> OpenIPMI 05/13/03 openipmish(1)
All times are GMT -4. The time now is 06:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy