The ability to take a basic UNIX command and
chain it with other commands is a fundamental principal in UNIX
shell programming for Oracle.
UNIX -exec and xargs commands will apply a single
UNIX command to a list of inputs. It is possible to quickly
generate a UNIX script to perform a powerful task.
Assume the goal is to create a UNIX script
that searches every file on the UNIX server for a file that contains
a reference to the dba_2pc_pending view.
The first step is to write a command that will
display all file names on the server. UNIX makes this simple:
root> find .
-print
./sql/pl2.sql
./sql/plcur.sql
./sql/check.ksh
./sql/mts.lst
./sql/fix_ts.sql
./sql/d.sql
./tools/sessions.sql
./tools/connections.sql
./tools/flush_shared_pool.sql
./tools/currently_running.sql
./tools/inval_obj.sql
./tools/recomp.sql
./tools/sqlnet.log
./statspack/r.ksh
./statspack/rpt_8i_bhr_dy.sql
./tmp/t1.sql
./tmp/t2.sql
./tmp/t3.sql
./tmp/n3.sql
./tmp/i2.sql
./ext_routines/common.mk
./ext_routines/common_OCI.c
./ext_routines/common_PROC.pc
Now that the complete list of all of the UNIX
files is available, the UNIX xargs command can be used to search
each file for the Oracle table name in all SQL files.
This is possible because the grep commands
accepts file names as an argument.
In this case, the whole Oracle UNIX
directory structure is searched and all scripts that reference the
dba_2pc_pending view can be found.
root> find .
-print|grep sql|xargs grep -i dba_2pc_pending
./sql/PENDING.sql:from dba_2pc_pending
|
|
|
|
Guarantee your Success!
Oracle is the
world's most complex, robust and flexible database, considered
impossible to master without a mentor.
That's why all BC
Oracle trainers are working professionals, experts in Oracle who
share their tips and secrets. |
|
| |
|
Burleson is the American Team

Note:
This Oracle
documentation was created as a support and Oracle training reference for use by our
DBA performance tuning consulting professionals.
Feel free to ask questions on our
Oracle forum.
Verify
experience!
Anyone
considering using the services of an Oracle support expert should
independently investigate their credentials and experience, and not rely on
advertisements and self-proclaimed expertise. All legitimate Oracle experts
publish
their Oracle
qualifications.
Errata?
Oracle technology is changing and we
strive to update our BC Oracle support information. If you find an error
or have a suggestion for improving our content, we would appreciate your
feedback. Just
e-mail:
and include the URL for the page.
Copyright ? 1996 - 2012
All rights reserved.
Oracle ?
is the registered trademark of Oracle Corporation.
|
|