Sponsored Content
Top Forums Shell Programming and Scripting [Solved] Extracting information from DDL's Post 302892549 by Yoda on Thursday 13th of March 2014 11:35:31 AM
Old 03-13-2014
Here is one way of doing it.

Define an array with all Teradata supported data types, match and print:
Code:
awk '
        BEGIN {
                DT["BYTEINT"]
                DT["DECIMAL"]
                DT["FLOAT"]
                DT["INTEGER"]
                DT["SMALLINT"]
                DT["BYTE"]
                DT["CHAR"]
                DT["VARCHAR"]
                DT["DATE"]
                DT["TIME"]
                DT["TIMESTAMP"]
        }
        {
                T = $2
                sub ( /\(.*/, X, T )
                sub ( /,/, X, $2 )
                if ( T in DT )
                        print $1, $2 ( $0 ~ "NOT NULL" ? "|NOT NULL": "" )
        }
' OFS=\| file.sql

This User Gave Thanks to Yoda For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Extracting information from a template

I have a template that I usually use to generate stats on an hourly basis for a number of cell sites altogether. I would like to be able to write a script that would go to the template and extract the information for any single site at any time during the day. For example, let's say that my... (4 Replies)
Discussion started by: Ernst
4 Replies

2. UNIX for Dummies Questions & Answers

Extracting information from text fields.

Dear friends, I'm a novice Unix user and I'm trying to learn the ropes. I have a big task I have to accomplish and I'm convinced Unix can get the job done, I just haven't figured out how. I recently posted on the topic of cutting text between unique text patterns and somebody helped me a great... (24 Replies)
Discussion started by: spindoctor
24 Replies

3. Shell Programming and Scripting

Problems with extracting information

Hi all, <select name="comp" id="comp" style="width:130px;"> <?php $sqlcomp = mysql_query("SELECT * FROM comp"); while ($redcomp = mysql_fetch_array($sqlcomp)) { extract($redcomp); echo "<option value=\"$comp_id\">comp_name</option>"; } ?> ... (0 Replies)
Discussion started by: c0mrade
0 Replies

4. Shell Programming and Scripting

Matching two file contents and extracting associated information

Hi, I am new to shell programming and need help. I have File1 with some ID numbers and File2 with ID number and some associated information. I want to match the ID numbers from File1 to contents in File2 and output a third file which pulls out the ID numbers and the associated information with... (2 Replies)
Discussion started by: newpro
2 Replies

5. Programming

extracting information from lines, put them into arrays

hi I need a little help writing this small perl script. I'm trying to extract the values from each line in a file and find the average for example cat school Highschool 100, 123, 135 Middleschool 41, 67, 54 Elementary 76, 315, 384 ./average.pl highschool: 119.3 middleschool: 54... (2 Replies)
Discussion started by: gengar
2 Replies

6. Shell Programming and Scripting

extracting information from multiple files

Hello there, I am trying to extract (string) information ( a list words) from 4 files and then put the results into 1 file. Currently I am doing this using grep -f list.txt file1 . and repeat the process for the other 3 files. The reasons i am doing that (a) I do know how to code (b) each file... (4 Replies)
Discussion started by: houkto
4 Replies

7. Shell Programming and Scripting

Extracting relevant information from syslogs.

I need to analyse some syslogs and I want to print out all the lines containing SSH connections to the inside interface of the firewall and ignore lines where the originating port is 22. So basically I want to print all matches after "to inside:" that contains /22 and ignore lines where /22 occur... (2 Replies)
Discussion started by: lewk
2 Replies

8. Shell Programming and Scripting

Problems extracting some information

Hi there! Well, I'm writing a script to obtain certain information about files. Specifically, I want to get the information about those files which last access were in the last 24 hours, so I'm doing something like this: find <directory_name> -atime -1 -printf '%f %a\n' I would also... (4 Replies)
Discussion started by: Skirmish
4 Replies

9. Shell Programming and Scripting

Extracting information using awk

I want to write a script that extracts a value from a line of text. I know it can be done using awk but I've never used awk before so I don't know how to do it. The text is: Mem: 100M Active, 2150K Cache, 500M Buf, 10G Free I want to extract the free memory value to use as a variable. In... (5 Replies)
Discussion started by: millsy5
5 Replies

10. Shell Programming and Scripting

Extracting information from XML to excel

Hi, I am trying to extract information from a XML file and write it to a excel sheet. I am not sure where to start from. Here is the content from my input XML file. <com.cloudbees.hudson.plugins.folder.properties.FolderProxyGroupContainer plugin="nectar-rbac@4.5"> <groups> ... (4 Replies)
Discussion started by: Sajjadmehdi
4 Replies
CUBRID_BIND(3)								 1							    CUBRID_BIND(3)

cubrid_bind - Bind variables to a prepared statement as parameters

SYNOPSIS
bool cubrid_bind (resource $req_identifier, int $bind_index, mixed $bind_value, [string $bind_value_type]) DESCRIPTION
The cubrid_bind(3) function is used to bind values to a corresponding named or question mark placeholder in the SQL statement that was passed to cubrid_prepare(3). If $bind_value_type is not given, string will be the default. Note If the type of data to be bound is BLOB/CLOB, CUBRID will try to map the data as a PHP stream. If the actually bind value type is not stream, CUBRID will convert it to string, and use it as the full path and file name of a file on the client filesystem. If the type of data to be bound explicitly is ENUM, the $bind_value argument should be the enum element which is in string format. In CUBRID shard envrioment, the $bind_value_type must be included in the cubrid_bind function. The following table shows the types of substitute values. CUBRID Bind Date Types +----------------------+------------------------+---+ | Support | | | | | | | | | Bind Type | | | | | | | | Corresponding SQL Type | | | | | | +----------------------+------------------------+---+ | Supported | | | | | | | | | STRING | | | | | | | | CHAR, VARCHAR | | | | | | | | | | | |T{ NCHAR | | | | | | | | | NCHAR, NVARCHAR | | | | | | | | | | | |T{ BIT | | | | | | | | | BIT, VARBIT | | | | | | | | | | ||T{ NUMERIC or NUMBER | | | | | | | | | SHORT, INT, NUMERIC | | | | | | | | | | | |T{ FLOAT | | | | | | | | | FLOAT | | | | | | | | | | | |T{ DOUBLE | | | | | | | | | DOUBLE | | | | | | | | | | | |T{ TIME | | | | | | | | | TIME | | | | | | | | | | | |T{ DATE | | | | | | | | | DATE | | | | | | | | | | | |T{ TIMESTAMP | | | | | | | | | TIMESTAMP | | | | | | | | | | | |T{ OBJECT | | | | | | | | | OBJECT | | | | | | | | | | | |T{ ENUM | | | | | | | | | ENUM | | | | | | | | | | | |T{ BLOB | | | | | | | | | BLOB | | | | | | | | | | | |T{ CLOB | | | | | | | | | CLOB | | | | | | | | | | | |T{ NULL | | | | | | | | | NULL | | | | | | | Not supported | | | | | | | | | SET | | | | | | | | SET | | | | | | | | | | | |T{ MULTISET | | | | | | | | | MULTISET | | | | | | | | | | | |T{ SEQUENCE | | | | | | | | | SEQUENCE | | | | | | +----------------------+------------------------+---+ PARAMETERS
o $req_identifier -Request identifier as a result of cubrid_prepare(3). o $bind_index -Location of binding parameters. It starts with 1. o $bind_value -Actual value for binding. o $bind_value_type -A type of the value to bind. (It is omitted by default. Thus, the system internally uses string by default. However, you need to specify the exact type of the value as an argument when they are NCHAR, BIT, or BLOB/CLOB). RETURN VALUES
TRUE, when process is successful. FALSE, when process is unsuccessful. CHANGELOG
+--------+--------------------------------------+ |Version | | | | | | | Description | | | | +--------+--------------------------------------+ | 8.3.1 | | | | | | | Added BLOB/CLOB data types support. | | | | +--------+--------------------------------------+ EXAMPLES
Example #1 cubrid_bind(3) example <?php $conn = cubrid_connect("localhost", 33000, "demodb", "dba"); $result = cubrid_execute($conn, "SELECT code FROM event WHERE sports='Basketball' and gender='M'"); $row = cubrid_fetch_array($result, CUBRID_ASSOC); $event_code = $row["code"]; cubrid_close_request($result); $game_req = cubrid_prepare($conn, "SELECT athlete_code FROM game WHERE host_year=1992 and event_code=? and nation_code='USA'"); cubrid_bind($game_req, 1, $event_code, "number"); cubrid_execute($game_req); printf("--- Dream Team (1992 United States men's Olympic basketball team) --- "); while ($athlete_code = cubrid_fetch_array($game_req, CUBRID_NUM)) { $athlete_req = cubrid_prepare($conn, "SELECT name FROM athlete WHERE code=? AND nation_code='USA' AND event='Basketball' AND gender='M'"); cubrid_bind($athlete_req, 1, $athlete_code[0], "number"); cubrid_execute($athlete_req); $row = cubrid_fetch_assoc($athlete_req); printf("%s ", $row["name"]); } cubrid_close_request($game_req); cubrid_close_request($athlete_req); cubrid_disconnect($conn); ?> The above example will output: --- Dream Team (1992 United States men's Olympic basketball team) --- Stockton John Robinson David Pippen Scottie Mullin C. Malone Karl Laettner C. Jordan Michael Johnson Earvin Ewing Patrick Drexler Clyde Bird Larry Barkley Charles Example #2 cubrid_bind(3) BLOB/CLOB example <?php $con = cubrid_connect("localhost", 33000, "demodb", "dba", ""); if ($con) { cubrid_execute($con,"DROP TABLE if exists php_cubrid_lob_test"); cubrid_execute($con,"CREATE TABLE php_cubrid_lob_test (doc_content CLOB)"); $sql = "INSERT INTO php_cubrid_lob_test(doc_content) VALUES(?)"; $req = cubrid_prepare($con, $sql); $fp = fopen("book.txt", "rb"); cubrid_bind($req, 1, $fp, "clob"); cubrid_execute($req); } ?> Example #3 cubrid_bind(3) BLOB/CLOB example <?php $con = cubrid_connect("localhost", 33000, "demodb", "dba", ""); if ($con) { cubrid_execute($con,"DROP TABLE if exists php_cubrid_lob_test"); cubrid_execute($con,"CREATE TABLE php_cubrid_lob_test (image BLOB)"); $sql = "INSERT INTO php_cubrid_lob_test(image) VALUES(?)"; $req = cubrid_prepare($con, $sql); cubrid_bind($req, 1, "cubrid_logo.png", "blob"); cubrid_execute($req); } ?> SEE ALSO
cubrid_execute(3), cubrid_prepare(3). PHP Documentation Group CUBRID_BIND(3)
All times are GMT -4. The time now is 02:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy