Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Export Oracle multiple tables to multiple csv files using UNIX shell scripting Post 303044456 by RudiC on Friday 21st of February 2020 04:49:21 PM
Old 02-21-2020
I didn't make it too clear: What i posted is what Akshay Hedge's would produce BEFORE it is piped into the sqlplus command. Try it literally, and post your results. Then run his code and post.
This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

unix script to export data from csv file to oracle database

Hello people, Need favour. The problem I have is that, I need to develop a unix shell script that performs recurring exports of data from a csv file to an oracle database. Basically, the csv file contains just the first name and last name will be dumped to an Unix server. The data from these... (3 Replies)
Discussion started by: vinayagan
3 Replies

2. Shell Programming and Scripting

Add multiple .csv files as sheets to an excel file in unix.

Hi, I am using Solaris 8. My script outputs 4 .csv files. Currently I am SFTPing the files and creating a new excel file with the 4 files as sheets. Can anyone suggest ways to do this in UNIX ? Thanks, David. (2 Replies)
Discussion started by: libin4u2000
2 Replies

3. Shell Programming and Scripting

Reading data from multiple tables from Oracle DB

Hi , I want to read the data from 9 tables in oracle DB into 9 different files in the same connection instance (session). I am able to get data from one table to one file with below code : X=`sqlplus -s user/pwd@DB <<eof select col1 from table1; EXIT; eof` echo $X>myfile Can anyone... (2 Replies)
Discussion started by: net
2 Replies

4. Shell Programming and Scripting

How to process multiple input files using Shell scripting

Hi, I would like to write a for loop that does the following: I have a file called X.txt and other files called 1.txt,2.txt, .....,1000.txt. I want to substitute the 6th column of the file X.txt with 1.txt and store the output as X.1. Then I want to do the same with X.txt and 2.txt and store... (0 Replies)
Discussion started by: evelibertine
0 Replies

5. Shell Programming and Scripting

How to run multiple functions in Background in UNIX Shell Scripting?

Hi, I am using ksh , i have requirement to run 4 functions in background , 4 functions call are available in a case that case is also in function, i need to execute 1st function it should run in background and return to case and next i will call 2nd function it should run in background and... (8 Replies)
Discussion started by: karthikram
8 Replies

6. Shell Programming and Scripting

Assigning multiple column's value from Oracle query to multiple variables in UNIX

Hi All, I need to read values of 10 columns from oracle query and assign the same to 10 unix variables. The query will return only one record(row). I tried to append all these columns using a delimiter(;) in the select query and assign the same to a single variable(V) in unix. I thought I... (3 Replies)
Discussion started by: hkrishnan91
3 Replies

7. Shell Programming and Scripting

Finding total distinct count from multiple csv files through UNIX script

Hi All , I have multiple pipe delimited csv files are present in a directory.I need to find out distinct count on a column on those files and need the total distinct count on all files. We can't merge all the files here as file size are huge in millions.I have tried in below way for each... (9 Replies)
Discussion started by: STCET22
9 Replies

8. Shell Programming and Scripting

Tabbed multiple csv files into one single excel file with using shell script not perl

Hi Experts, I am querying backup status results for multiple databases and getting each and every database result in one csv file. so i need to combine all csv files in one excel file with separate tabs. I am not familiar with perl script so i am using shell script. Could anyone please... (4 Replies)
Discussion started by: ramakrk2
4 Replies

9. Shell Programming and Scripting

Shell Scripting - Select multiple files from numbered list

I am trying to have the user select two files from a numbered list which will eventually be turned into a variable then combined. This is probably something simple and stupid that I am doing. clear echo "Please Select the Show interface status file" select FILE1 in *; echo "Please Select the... (3 Replies)
Discussion started by: dis0wned
3 Replies

10. UNIX for Beginners Questions & Answers

How to read multiple files at same time through UNIX scripting?

How to read multiple files at simultaneously? (1 Reply)
Discussion started by: Priyanka_M
1 Replies
Pcap(3pm)						User Contributed Perl Documentation						 Pcap(3pm)

  ## Need an IO::Handle to $kernel->select_read() upon
  $heap->{fdh} = IO::Handle->new_from_fd( $heap->{fd}, "r" )
    or die "Can't create IO::Handle from pcap fd: $!
";

NAME
POE::Component::Pcap - POE Interface to Net::Pcap SYNOPSIS
use POE::Component::Pcap; POE::Component::Pcap->spawn( Alias => 'pcap', Device => 'eth0', Filter => 'host fooble or host blort', Dispatch => 'got_packet', Session => $my_session_id, ); $poe_kernel->post( pcap => open_live => 'eth0', 80, 1, 100 ); $poe_kernel->post( pcap => set_filter => 'arp or host zooble' ); $poe_kernel->post( pcap => set_dispatch => 'target_state' ); $poe_kernel->post( pcap => 'run' ); $poe_kernel->post( pcap => 'shutdown' ); DESCRIPTION
POE::Component::Pcap provides a wrapper for using the Net::Pcap module from POE programs. The component creates a separate session which posts events to a specified session and state when packets are available. ARGUMENTS Alias The alias for the Pcap session. Used to post events such as "run" and "shutdown" to control the component. Defaults to "pcap" if not specified. Device As a shortcut, the device for Net::Pcap to watch may be specified when creating the component. If this argument is used, Net::Pcap::open_live will be called with a snaplen of 80 octets, a timeout of 100ms, and the interface will be put in promiscuous mode. If these values are not suitable, post an "open_live" event instead. Filter Another shortcut, calls Net::Pcap::compile and Net::Pcap::setfilter to set a packet filter. This can only be used if the Device argument is also given; otherwise a "set_filter" event should be posted after an "open_live" event (since Net::Pcap must have a "pcap_t" descriptor to work with). Dispatch Session These specify the session and state to which events should be posted when packets are received. EVENTS The following examples assume that the component's alias has been set to the default value of pcap. open_live $_[KERNEL]->post( pcap => open_live => 'device', [snaplen], [promsic?], [timeout] ); Calls Net::Pcap::open_live. The device name must be specified. The snaplen, promiscuous, and timeout parameters default to 80, 1, and 100 respectively. This event must be posted (or the Device argument must have been passed to spawn()) before anything else can be done with the component. set_filter $_[KERNEL]->post( pcap => set_filter => 'host fooble or host blort' ) Sets the Net::Pcap capture filter. See tcpdump(8) for details on the filter language used by pcap(3). set_dispatch $_[KERNEL]->post( pcap => set_dispatch => 'target_state', 'target_session' ); Sets the state and session to which events are sent when packets are recevied. The target session will default to the sender of the event if not specified. The event posted will have a single argument (available as ARG0) which will be an array reference containing the $hdr and $pkt parameters from Net::Pcap. See the Net::Pcap(3) documentation for more details. run $_[KERNEL]->post( pcap => 'run' ); Causes the component to register a select_read and start watching for packets. shutdown $_[KERNEL]->post( pcap => 'shutdown' ); Shuts the component down. Causes Net::Pcap::close to be called. SEE ALSO
Net::Pcap(3), pcap(3), tcpdump(8), POE(3), POE::Component(3) AUTHOR
Mike Fletcher, <fletch@phydeaux.org> COPYRIGHT
Copyright 2000-2001, Mike Fletcher. All Rights Reserved. This is free software; you may redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2008-01-28 Pcap(3pm)
All times are GMT -4. The time now is 03:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy