tables in scripts


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting tables in scripts
# 1  
Old 07-08-2008
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[0]= t1[0] - t2[0]
t3[1]= t1[1] - t2[1]

I am new to scripts, any help please? thanks
# 2  
Old 07-08-2008
Any help please??
# 3  
Old 07-08-2008
It's not allowed to bump up questions, read the rules.
# 4  
Old 07-08-2008
use the below example

area[5]=`expr ${area[11]} + ${area[13]}`
# 5  
Old 07-08-2008
Sorry for repeating my question.

I tried this:
for element in ${#tab1[*]}

$tab_T1[$element]=`expr ${tab2[$element]} - ${tab1[$element]}`

do echo "$element"
done

echo ${#tab_T1[*]}

but it gives me error;
line 56: syntax error near unexpected token `$tab_T1[$element]=`expr ${tab2[$element]} - ${tab1[$element]} line 56: `$tab_T1[$element]=`expr ${tab2[$element]} - ${tab1[$element]}`'
# 6  
Old 07-08-2008
try this

Code:
for element in tab1
$tab_T1[element]=`expr ${tab2[element]} - ${tab1[element]}`

# 7  
Old 07-08-2008
I tried this


for element in `seq 1 50`
do

$tab_T1[element] = ` expr ${tab2[element]} - ${tab1[element]} `
echo "$element"
done


but had the same error

./T1: line 57: [1]: command not found
1
./T1: line 57: [2]: command not found
2
./T1: line 57: [3]: command not found
3
./T1: line 57: [4]: command not found
4
./T1: line 57: [5]: command not found
5
...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

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

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

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

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

5. Shell Programming and Scripting

Running scripts within scripts from cron

Hi all, I have set up a cron job which calls another shell script shell script which in turn calls a Java process. The cron tab looks so. 0,30 7-18 * * 1-5 /u01/home/weblogic/brp/bin/checkstatus.sh >> /u01/home/weblogic/logs/checkstatus.log The checkstatus.sh scripts looks like this. ... (4 Replies)
Discussion started by: sirbrian
4 Replies

6. Shell Programming and Scripting

Help with Script using rsh and scripts within scripts

Hi, I've written a script that runs on a Database server. It has to shutdown the Application server, do an Oracle Dump and then restart the Application server. Its been a long time since I wrote any shells scripts. Can you tell me if the scripts that I execute within my script will be executed... (3 Replies)
Discussion started by: brockwile1
3 Replies

7. UNIX for Dummies Questions & Answers

Profile scripts versus rc scripts....

what is the difference between login and profile scripts versus the rc scripts? (1 Reply)
Discussion started by: rookie22
1 Replies

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

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

10. UNIX for Dummies Questions & Answers

finding out tables not used in scripts.

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... (7 Replies)
Discussion started by: Vasundhara
7 Replies
Login or Register to Ask a Question