Sponsored Content
Top Forums UNIX for Dummies Questions & Answers finding out tables not used in scripts. Post 100781 by Vasundhara on Thursday 2nd of March 2006 01:35:09 AM
Old 03-02-2006
script to search for the contents of a file

Hi all,

Please see my requirement and post me asap.

Spool all the tables names into a file . Take each table name and check if it is present in any of the scripts in a directory using grep -il command. The script has to loop through the tables list and take each table and find it's presence in directory. After this exercise, we need to get the list of tables that not present in any of the scripts.

As I am beginner to this shell scripting, I have given the below logic for this to be done. Logic can be same , but I want a clean debugged script.
I am not able to use the variables properly. Please let me know how to use the variables in this case.

Script:

for i in all_tables.txt (this is the spooled file which contains the table names)

do

tbl= head -i all_tables.txt|tail -1

search=grep -il tbl *

if(test -z $search)

then echo ${tbl}>>unused (I wanted to created a file with all the tables which are not used in the scripts)

fi

done

Thanks
Vasundhara
Vasundhara
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

use shell scripts to update tables from databases

Hi I need to write a shell script that will access tables available on webpages and update a table on my webpage on a periodic basis. It will access, say for example a website that periodically update a table with certain quantities and update my table accordingly.it should have the flexibility... (0 Replies)
Discussion started by: wannabegeek
0 Replies

2. Shell Programming and Scripting

finding duplicate files by size and finding pattern matching and its count

Hi, I have a challenging task,in which i have to find the duplicate files by its name and size,then i need to take anyone of the file.Then i need to open the file and find for more than one pattern and count of that pattern. Note:These are the samples of two files,but i can have more... (2 Replies)
Discussion started by: jerome Sukumar
2 Replies

3. Shell Programming and Scripting

Converting tables of row data into columns of tables

I am trying to transpose tables listed in the format into format. Any help would be greatly appreciated. Input: test_data_1 1 2 90% 4 3 91% 5 4 90% 6 5 90% 9 6 90% test_data_2 3 5 92% 5 4 92% 7 3 93% 9 2 92% 1 1 92% ... Output:... (7 Replies)
Discussion started by: justthisguy
7 Replies

4. Shell Programming and Scripting

Finding tables from each script

Hi, I just want to take each sql script from specified directory and print all tables in those sqls. Below is the script but getting an error lik ksh: 0403-057 Syntax error: `(' is not expected. Script is---- ls /ukdw/prd/working/TDMatrix/srualcb02/ukdw/prd/bin | awk '{printf("%s... (2 Replies)
Discussion started by: subrat
2 Replies

5. Shell Programming and Scripting

tables in scripts

Hi , I have two tables with same length t1 and t2, I want to cretae a new third table where i put the difference between the elements of t2 and t1, t3= t1 - t2 t3= t1 - t2 I am new to scripts, any help please? thanks (7 Replies)
Discussion started by: Celine19
7 Replies

6. Shell Programming and Scripting

Changing the Bash Scripts to Bourne Scripts:URGENT

Hi, I have to write a program to compute the checksums of files ./script.sh I wrote the program using bash and it took me forever since I am a beginner but it works very well. I'm getting so close to the deadline and I realised today that actually I have to use normal Bourne shell... (3 Replies)
Discussion started by: pgarg1989
3 Replies

7. 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

8. Shell Programming and Scripting

[Solved] Finding a word in all shell scripts

Hi i have to find the shell script that contain the word PROC__TO_UPDATE SEARCH SHOULD BE INSENSITIVE AND SCRIPT CAN BE DEPLOYED IN ANY PATH. I am on Solaris. (27 Replies)
Discussion started by: rafa_fed2
27 Replies

9. Shell Programming and Scripting

Scripts for exporting backup from selected tables of Oracle DB

dear all please help me ! i need a script for exporting the selected tables of oracle database installed on CentOs. i waiting your response. thanks and regards (6 Replies)
Discussion started by: amirzargaran
6 Replies

10. UNIX for Advanced & Expert Users

Identify tables from Oracle sql scripts

Hi, Please let me know if you have any thoughts on how to read a table that has all the oracle sql files or shell scripts at the job and step level to identify all the tables that does merge, update, delete, insert, create, truncate, alter table (ALTER TABLE XYZ RENAME TO ABC) and call them out... (1 Reply)
Discussion started by: techmoris
1 Replies
ACPIDUMP(1)						      General Commands Manual						       ACPIDUMP(1)

NAME
acpidump - ACPI table dump utility SYNOPSIS
acpidump [<option>...] DESCRIPTION
This manual page briefly documents the acpidump command. The option list is taken from the interactive help. The acpidump command extracts the ACPI tables currently in use from the running kernel in a form usable for later processing by the acpix- tract command. Invocation of acpidump without parameters will dump all available ACPI tables. Multiple mixed instances of the -a , -f , and -n parameters can be used. OPTIONS
-b Dump tables in binary format (versus the default human-readable form) -h | -? Display this help message -o <file> Redirect output to a file. This file can be used later by acpixtract to examine the contents of the ACPI tables. -s Print table summaries only. -v Print the version of this utility. -z Verbose mode. -a <address> Get a table from a physical address (must be superuser and you must be careful which address you use -- dmesg will typically report the addresses for the various tables). -f <binary-file> Get a table from a binary file (see the -b option). -n <signature> Get a table via it's name or signature (e.g., MADT or SSDT). SEE ALSO
acpixtract(1) AUTHOR
acpidump was written by Robert Moore <robert.moore@intel.com> and Chao Guan <chao.guan@intel.com>. This manual page was written by Al Stone <ahs3@redhat.com> for the Fedora project (but may be used by others). July 24, 2013 ACPIDUMP(1)
All times are GMT -4. The time now is 11:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy