Extracting LONG Data Type from DB via UNIX Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Extracting LONG Data Type from DB via UNIX Script
# 1  
Old 07-11-2019
What SQL query you are using for Fetching the data?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Python script for extracting data using two files

Hello, I have two files. File 1 is a list of interested IDs Ex1 Ex2 Ex3File 2 is the original file with over 8000 columns and 20 millions rows and is a compressed file .gz Ex1 xx xx xx xx .... Ex2 xx xx xx xx .... Ex2 xx xx xx xx ....Now I need to extract the information for all the IDs of... (4 Replies)
Discussion started by: nans
4 Replies

2. Shell Programming and Scripting

Extracting data into flat file thru unix

Hi, I need to extract a oracle staging table to a flat file thru unix batch process.We are expecting more than 4million records in the table.I know I can do it using "UTL_FILE" .But,since "UTL_FILE" takes a lot of time I am looking for better options.Can any body suggest some better options? ... (3 Replies)
Discussion started by: Beena
3 Replies

3. Shell Programming and Scripting

Extracting LONG Data Type from DB via UNIX Script

Hi, I want to extract a XML file which is stored in the database having a data Type as "LONG" via UNIX Scripting. But when i am triggering the SQL via UNIX it is fetching only the first Line and not the complete XML. Can you please suggest if the parameters that i have used needs any... (0 Replies)
Discussion started by: dear_abhi2007
0 Replies

4. Shell Programming and Scripting

Extracting data from https server with the help of unix shell script

There is a folder which can be accessed through URL by giving a particular Username and Password.Inside the folder there are few excel sheets.The excel sheets/folder need to be imported from there to unix box with the help of unix shell script. Can anyone help me?Does anyone have code for it?... (2 Replies)
Discussion started by: vanur
2 Replies

5. Shell Programming and Scripting

Extracting data between tags based on search string from unix file

Input file is on Linux box and the input file has data in just one line with 1699741696 characters. Sample Input: <xxx><document coll="uspatfull" version="0"><CMSdoc>xxxantivirus</CMSdoc><tag1>1</tag1></document><document coll="uspatfull"... (5 Replies)
Discussion started by: gaya
5 Replies

6. Shell Programming and Scripting

Extract data based on match against one column data from a long list data

My input file: data_5 Ali 422 2.00E-45 102/253 140/253 24 data_3 Abu 202 60.00E-45 12/23 140/23 28 data_1 Ahmad 256 7.00E-45 120/235 140/235 22 data_4 Aman 365 8.00E-45 15/65 140/65 20 data_10 Jones 869 9.00E-45 65/253 140/253 18... (12 Replies)
Discussion started by: patrick87
12 Replies

7. Programming

Problem FETCHing Long data type using CURSOR

Currently my Pro*c program is fetching a cloumn which is defined as LONG in oracle db. The data in the column is around 65k. But when I am FETCHing it to a varchar variable, I am only getting 22751 bytes of data using cursor. Is there any limitation on the data which is fetched by a cursor in... (2 Replies)
Discussion started by: manbt
2 Replies

8. UNIX for Dummies Questions & Answers

Verify the data type in a file with UNIX function

I am seeking help on this UNIX function, please help. Thanks in advance. I have a large file, named as 'MyFile'. It was tab-delmited, I am told that each record in column 1 is unique. How would I verify this with UNIX function or command? (1 Reply)
Discussion started by: duke0001
1 Replies

9. Programming

enable 64bit long type for gcc

hey, I believe I once saw a post in this forum, about enable an GCC option to enable long types. I simply cannot find it any more. Can anybody give me a hint? I am on 32bit Ubuntu, and I would like my int be really long. Also I need malloc() take long int argument too. I found it is necessary to... (6 Replies)
Discussion started by: patiobarbecue
6 Replies

10. Shell Programming and Scripting

converting the data type in unix shell script

I am writing a unix shell script that will extract records from table and write into a file. ====================================== #! /bin/ksh ############################ # AFI Monitor Script ############################ . /db2/uszlad48/sqllib/db2profile export... (5 Replies)
Discussion started by: kmanivan82
5 Replies
Login or Register to Ask a Question
INGRES_QUERY(3) 							 1							   INGRES_QUERY(3)

ingres_query - Send an SQL query to Ingres

SYNOPSIS
mixed ingres_query (resource $link, string $query, [array $params], [string $types]) DESCRIPTION
ingres_query(3) sends the given $query to the Ingres server. The query becomes part of the currently open transaction. If there is no open transaction, ingres_query(3) opens a new transaction. To close the transaction, you can call either ingres_commit(3) to commit the changes made to the database or ingres_rollback(3) to cancel these changes. When the script ends, any open transaction is rolled back (by calling ingres_rollback(3)). You can also use ingres_autocom- mit(3) before opening a new transaction to have every SQL query immediately committed. Note Related Configurations See also the ingres.describe, ingres.scrollable and ingres.utf8 directives in Runtime Configuration PARAMETERS
o $link - The connection link identifier. o $query - A valid SQL query (see the Ingres SQL reference guide) in the Ingres documentation. Data inside the query should be properly escaped. The following types of SQL queries cannot be sent with this function: o close (see ingres_close(3)) o commit (see ingres_commit(3)) o connect (see ingres_connect(3)) o disconnect (see ingres_close(3)) o get dbevent o prepare to commit o rollback (see ingres_rollback(3)) o savepoint o set autocommit (see ingres_autocommit(3)) oall cursor-related queries are unsupported o $params - An array of parameter values to be used with the query o $types - A string containing a sequence of types for the parameter values passed. When ingres.describe is enabled, this parameter can be ignored as the driver automatically fetches the expected parameter types from the server. +----------+------------------------------+---+---+ |Type code | | | | | | | | | | | Ingres type | | | | | | | | +----------+------------------------------+---+---+ | a | | | | | | | | | | | | | | | | BOOLEAN | | | | | | | | | b | | | | | | | | | | | | | | | | BYTE | | | | | | | | | B | | | | | | | | | | | | | | | | LONG BYTE/BLOB | | | | | | | | | c | | | | | | | | | | | | | | | | CHAR | | | | | | | | | d | | | | | | | | | | | | | | | | DATE/ANSIDATE/TIMESTAMP/TIME | | | | | | | | | f | | | | | | | | | | | | | | | | FLOAT | | | | | | | | | i | | | | | | | | | | | | | | | | INTEGER | | | | | | | | | L | | | | | | | | | | | | | | | | LONG TEXT | | | | | | | | | m | | | | | | | | | | | | | | | | MONEY | | | | | | | | | M | | | | | | | | | | | | | | | | LONG NVARCHAR | | | | | | | | | n | | | | | | | | | | | | | | | | NCHAR | | | | | | | | | N | | | | | | | | | | | | | | | | NVARCHAR | | | | | | | | | t | | | | | | | | | | | | | | | | TEXT | | | | | | | | | v | | | | | | | | | | | | | | | | VARCHAR | | | | | | | | | V | | | | | | | | | | | | | | | | LONG VARCHAR | | | | | | | | +----------+------------------------------+---+---+ RETURN VALUES
ingres_query(3) returns a query result identifier on success else it returns FALSE. To see if an error occurred use ingres_errno(3), ingres_error(3) or ingres_errsqlstate(3). EXAMPLES
Example #1 Send a simple select <?php $link = ingres_connect("demodb"); $result = ingres_query($link, "select * from user_profile"); while ($row = ingres_fetch_row($result)) { echo $row[1]; echo $row[2]; } ?> Example #2 Passing query parameters to ingres_query(3) <?php $link = ingres_connect("demodb"); $params[] = "Emma"; $query = "select * from user_profile where up_first = ?"; $result = ingres_query($link, $query, $params); while ($row = ingres_fetch_row($result)) { echo $row[1]; echo $row[2]; } ?> Example #3 Inserting a BLOB with parameter types <?php $link = ingres_connect("demodb"); //Open a photo $fh = fopen("photo.jpg","r"); $blob_data = stream_get_contents($fh); fclose($fh); //Prepare parameters $params[] = $blob_data; $params[] = 1201; //Define parameter types $param_types = "Bi"; $query = "update user_profile set up_image = ? where up_id = ?"; $result = ingres_query($link, $query , $params, $param_types); if (ingres_errno()) { echo ingres_errno() . "-" . ingres_error() . " "; } ingres_commit($link); ingres_close($link); ?> SEE ALSO
ingres_unbuffered_query(3), ingres_fetch_array(3), ingres_fetch_assoc(3), ingres_fetch_object(3), ingres_fetch_row(3), ingres_commit(3), ingres_rollback(3), ingres_autocommit(3), ingres_set_environment(3), ingres_errno(3), ingres_error(3). PHP Documentation Group INGRES_QUERY(3)