Sponsored Content
Full Discussion: Create Shellscript
Top Forums Shell Programming and Scripting Create Shellscript Post 10983 by newuser100 on Monday 26th of November 2001 10:06:35 PM
Old 11-26-2001
Create Shellscript

I am new to UNIX.
I got the file from Oracle, with
two columns (Table Name and Column Name). I need to create the shell script where the result suppose to include
plain text, <table_name>, <Column_name> from the file.
Plain text will be the statements to create index in Oracle.
something like that:
"create index on" <table name>.<column_name>

Thanks
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

ftp in Shellscript

Can I do something like this from a shellscript ?: ftp 12.34.56.78 <<! username password put a.c bye ! It does not go through as the login fails. Is there any alternative to do the above requirement? Thanks in advance. Gowrish (3 Replies)
Discussion started by: ggowrish
3 Replies

2. Shell Programming and Scripting

How to create folders/subfolders using shellscript

Hi, Can any one help me how to create folders using shellscript.My requirement is: FolderName: Main/Main1 :Main/Main2 :Main/Main3 underSubFolder : Main1/A :Main1/B :Main1/C underSubfolder: A/A1 ... (2 Replies)
Discussion started by: ram2s2001
2 Replies

3. Shell Programming and Scripting

Need help with shellscript

Hello. I am a novince at writing shell scripts but here is the question. I have to write a shell script that does the following: Once executed via crontab, the script should do the following: a. get date/time stamp in for format 10-MAR-05 and b. execute shell script my_script.sh (which... (2 Replies)
Discussion started by: jigarlakhani
2 Replies

4. Shell Programming and Scripting

Create an .csv/excel file using shellscript

In my file, i have 4 Product names(For ex:Microsoft excel, Oracle,.Net,IBM websphere,..etc.,) I want this 4 Products in 4 individual .csv/excel file after running the script with those products related information. (12 Replies)
Discussion started by: Navya
12 Replies

5. Shell Programming and Scripting

if condition in shellscript

Hi All, I tried below code getting error. AD=0 ZERO=0 if then echo "AD is zero select another symbol" fi syntax error near unexpected token `fi' plz help me to solve this error (4 Replies)
Discussion started by: aish11
4 Replies

6. Shell Programming and Scripting

Shellscript Reengineering

Dear Community, I've an urgent issue due to a migration of an application from HP-Unix to Linux. We have a mass of scripts which are running at a dedicated server on hpunix. Now we do not know, which further scripts exists on this machine. the idea is, that we crawl through the scripts we... (1 Reply)
Discussion started by: Alibapir
1 Replies

7. Shell Programming and Scripting

Help with shellscript

I am new in shell script i want to convert .txt file in the format axsjdijdjjdk to a x s j d i j d j j d k (5 Replies)
Discussion started by: sreejithalokkan
5 Replies

8. Shell Programming and Scripting

awk in shellscript

Dear Members, I have the following situation I do not understand: I have a large json encoded file which I need to grep and afterwards want to extract specific information. I use this command to to that: cat /tmp/file | awk -F '"fields":' '{print $2}' | awk -F '"description":' '{print $4}'... (6 Replies)
Discussion started by: crumble
6 Replies
Alzabo::Create::ForeignKey(3pm) 			User Contributed Perl Documentation			   Alzabo::Create::ForeignKey(3pm)

NAME
Alzabo::Create::ForeignKey - Foreign key objects for schema creation. SYNOPSIS
use Alzabo::Create::ForeignKey; DESCRIPTION
A foreign key is an object defined by several properties. It represents a relationship from a column or columns in one table to a column or columns in another table. This relationship is defined by its cardinality (one to one, one to many, or many to one) and its dependencies (whether or not table X is dependent on table Y, and vice versa). Many to many relationships are not allowed. However, you may indicate such a relationship when using the Alzabo::Create::Schema->add_rela- tion method method, and it will create the necessary intermediate linking table for you. INHERITS FROM
"Alzabo::ForeignKey" Note: all relevant documentation from the superclass has been merged into this document. METHODS
new The constructor takes the following parameters: * columns_from => "Alzabo::Create::Column" object(s) * columns_to => "Alzabo::Create::Column" object(s) These two parameters may be either a single column or a reference to an array columns. The number of columns in the two parameters must match. * cardinality => [1, 1], [1, 'n'], or ['n', 1] * from_is_dependent => $boolean * to_is_dependent => $boolean * comment => $comment An optional comment. It returns a new "Alzabo::Create::ForeignKey" object. Throws: "Alzabo::Exception::Params" table_from table_to Returns the relevant "Alzabo::Create::Table" object. columns_from columns_to Returns the relevant "Alzabo::Create::Column" object(s) for the property as an array. column_pairs Returns an array of array references. The references are to two column array of "Alzabo::Create::Column" objects. These two columns cor- respond in the tables being linked together. set_columns_from ("Alzabo::Create::Column" object(s)) Sets the column(s) that the relation is from. This can be either a single column object or a reference to an array of column objects. Throws: "Alzabo::Exception::Params" set_columns_to ("Alzabo::Create::Column" object(s)) Sets the column(s) that the relation is to. This can be either a single column object or a reference to an array of column objects. Throws: "Alzabo::Exception::Params" cardinality Returns a two element array containing the two portions of the cardinality of the relationship. Each portion will be either '1' or 'n'. from_is_dependent to_is_dependent Returns a boolean value indicating whether there is a dependency from one table to the other. is_one_to_one is_one_to_many is_many_to_one Returns a boolean value indicating what kind of relationship the object represents. set_cardinality (@cardinality) see above for details Sets the cardinality of the foreign key. Throws: "Alzabo::Exception::Params" set_from_is_dependent ($boolean) Indicates whether or not the first table in the foreign key is dependent on the other (i.e. whether the 'from' table is dependent on the 'to' table). set_to_is_dependent ($boolean) Indicates whether or not the second table in the foreign key is dependent on the other (i.e. whether the 'to' table is dependent on the 'from' table). id Returns a string uniquely identifying the foreign key. is_same_relationship_as ($fk) Given a foreign key object, this returns true if the two objects represent the same relationship. However, the two objects may represent the same relationship from different table's points of view. comment Returns the comment associated with the foreign key object, if any. set_comment ($comment) Sets the comment for the foreign key object. AUTHOR
Dave Rolsky, <autarch@urth.org> perl v5.8.8 2007-12-23 Alzabo::Create::ForeignKey(3pm)
All times are GMT -4. The time now is 06:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy