Sponsored Content
Top Forums Shell Programming and Scripting Extracting a Number from Passage Post 302192698 by laknar on Wednesday 7th of May 2008 04:53:54 PM
Old 05-07-2008
Extracting a Number from Passage

( Database Connection Information

Database server = DB2/AIX6000 8.1
SQL authorization ID = LAKNAR
Local database alias = SAMPLE


ROWSAFFECTED
------------
1

1 record(s) selected.

DB20000I The SQL command completed successfully.
DB20000I The TERMINATE command completed successfully.)

In Order to EXTRACT 1 from ROWSAFFECTED Column
how can acheive this using grep command.
can anyone suggest me please.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Extracting 10 digit number from txt files

Hi, Was wondering if you could give me an example of extracting a 10 digit number from 5 txt files using a regular expression (the number is always different ) and storing the numbers in variables Thanks C19 (9 Replies)
Discussion started by: c19h28O2
9 Replies

2. Shell Programming and Scripting

extracting a line based on line number

i want to cut all the entries from the /etc/passwd file in which the uid is> 500 for this i was writing this ,m quiet new to all this.. scripting but on the 6th n 8th line ,, i hav to specify a line number .. to get the commnd working .. but i want to use variable i instead of that ,,... (2 Replies)
Discussion started by: narendra.pant
2 Replies

3. Shell Programming and Scripting

extracting a number from a string

Hi everyone, I have a string as follow ts1n65ulpa4096x16m16_130a_ss1p08v125c i would like to extract 4096 and 16 from string and save it into two variable. but this string could also have the form ts1n65ulpa32x16m16_130a_ss1p08v125c therefore the number before "x" could be 2 or 3 digits. i use... (6 Replies)
Discussion started by: ROOZ
6 Replies

4. Shell Programming and Scripting

Extracting N lines match number X of a pattern

Hi All, as the title says I need to extract N lines after match number X of a pattern. e.g. 111 xxx xxx 111 yyy yyy 111 www www 111 zzz zzz I would like to extract the two lines after the second 111 occurrence. I tried with grep but I didn't find any options to do that. Any... (11 Replies)
Discussion started by: f_o_555
11 Replies

5. UNIX for Dummies Questions & Answers

Extracting column if above certain values and repeated over a number of times continuously

Hi I am new to the forum and would like to ask: i have a file in form with thousands of column id.1 A01 A01 A68 A68 id.2 A5 A5 A3 A3 1001 0 0 0.136 0.136 1002 0 0 0.262 0.183 1003 0 0 0.662 0.662 1004 0 0 ... (9 Replies)
Discussion started by: newbeeuk
9 Replies

6. Shell Programming and Scripting

Extracting a certain number with grep command

Hello Friends, when I type grep '275' myfile.txt it gives me all the lines including 275 but it also gives others such as 0.8827588 or 1127507. I only want the lines including 275. How can I extract only 275 without other numbers including 275. thanks (2 Replies)
Discussion started by: rpf
2 Replies

7. Shell Programming and Scripting

Help me grab a passage out of this text file?

Hey guys, I need a command that grabs only this part of the .txt file (that is attached), and outputs it to another .txt file with only these contents below. Thanks in advanced brothers: Disk: Local Disk (C:), NTFS Disk Defragmentation Summary Disk Size 230.85 GB Free Space Size... (4 Replies)
Discussion started by: aabbasi
4 Replies

8. Shell Programming and Scripting

extracting Number variable and the following digits.

HI all, I have output of something like this: crab: ExitCodes Summary >>>>>>>>> 12 Jobs with Wrapper Exit Code : 50117 List of jobs: 1-12 See https:///twiki/something/ for Exit Code meaning crab: ExitCodes Summary >>>>>>>>> 5 Jobs with Wrapper Exit Code : 8001 List of... (20 Replies)
Discussion started by: emily
20 Replies

9. Shell Programming and Scripting

extracting number of rows

if > wc -l data.txt > 100 (meaning there are 100 rows) i want to assgn 100 as n so that if i do >echo n it would give me 100 Thanks (5 Replies)
Discussion started by: johnkim0806
5 Replies

10. Shell Programming and Scripting

Extracting fixed length number from a text file

Hi, I have a text file with sample records as CASE ID: 20170218881083 Original presentment record for ARN not found for Re-presentment I want to extract the 23 digit number from this file. I thought of using grep but initially couldn't extract the required number. However, after... (16 Replies)
Discussion started by: dsid
16 Replies
DB2_SERVER_INFO(3)							 1							DB2_SERVER_INFO(3)

db2_server_info - Returns an object with properties that describe the DB2 database server

SYNOPSIS
object db2_server_info (resource $connection) DESCRIPTION
This function returns an object with read-only properties that return information about the IBM DB2, Cloudscape, or Apache Derby database server. The following table lists the database server properties: Database server properties +----------------------+--------------------------------------+---+ | Property name | | | | | | | | | Return type | | | | | | | | Description | | | | | | +----------------------+--------------------------------------+---+ | DBMS_NAME | | | | | | | | | string | | | | | | | | The name of the database server to | | | | which you are connected. For DB2 | | | | servers this is a combination of DB2 | | | | followed by the operating system on | | | | which the database server is run- | | | | ning. | | | | | | | DBMS_VER | | | | | | | | | string | | | | | | | | The version of the database server, | | | | in the form of a string "MM.mm.uuuu" | | | | where $MM is the major version, $mm | | | | is the minor version, and $uuuu is | | | | the update. For example, | | | | "08.02.0001" represents major ver- | | | | sion 8, minor version 2, update 1. | | | | | | | DB_CODEPAGE | | | | | | | | | int | | | | | | | | The code page of the database to | | | | which you are connected. | | | | | | | DB_NAME | | | | | | | | | string | | | | | | | | The name of the database to which | | | | you are connected. | | | | | | | DFT_ISOLATION | | | | | | | | | string | | | | | | | | The default transaction isolation | | | | level supported by the server: | | | | | | | | o UR | | | | - Uncommitted read: | | | | changes are immedi- | | | | ately visible by all | | | | concurrent transac- | | | | tions. | | | | | | | | o CS | | | | - Cursor stability: | | | | a row read by one | | | | transaction can be | | | | altered and commit- | | | | ted by a second con- | | | | current transaction. | | | | | | | | o RS | | | | - Read stability: a | | | | transaction can add | | | | or remove rows | | | | matching a search | | | | condition or a pend- | | | | ing transaction. | | | | | | | | o RR | | | | - Repeatable read: | | | | data affected by | | | | pending transaction | | | | is not available to | | | | other transactions. | | | | | | | | o NC | | | | - No commit: any | | | | changes are visible | | | | at the end of a suc- | | | | cessful operation. | | | | Explicit commits and | | | | rollbacks are not | | | | allowed. | | | | | | |IDENTIFIER_QUOTE_CHAR | | | | | | | | | string | | | | | | | | The character used to delimit an | | | | identifier. | | | | | | | INST_NAME | | | | | | | | | string | | | | | | | | The instance on the database server | | | | that contains the database. | | | | | | | ISOLATION_OPTION | | | | | | | | | array | | | | | | | | An array of the isolation options | | | | supported by the database server. | | | | The isolation options are described | | | | in the DFT_ISOLATION property. | | | | | | | KEYWORDS | | | | | | | | | array | | | | | | | | An array of the keywords reserved by | | | | the database server. | | | | | | | LIKE_ESCAPE_CLAUSE | | | | | | | | | bool | | | | | | | | | | | | TRUE if the database server supports | | | | the use of % and _ wildcard charac- | | | | ters. FALSE if the database server | | | | does not support these wildcard | | | | characters. | | | | | | | MAX_COL_NAME_LEN | | | | | | | | | int | | | | | | | | Maximum length of a column name sup- | | | | ported by the database server, | | | | expressed in bytes. | | | | | | | MAX_IDENTIFIER_LEN | | | | | | | | | int | | | | | | | | Maximum length of an SQL identifier | | | | supported by the database server, | | | | expressed in characters. | | | | | | | MAX_INDEX_SIZE | | | | | | | | | int | | | | | | | | Maximum size of columns combined in | | | | an index supported by the database | | | | server, expressed in bytes. | | | | | | | MAX_PROC_NAME_LEN | | | | | | | | | int | | | | | | | | Maximum length of a procedure name | | | | supported by the database server, | | | | expressed in bytes. | | | | | | | MAX_ROW_SIZE | | | | | | | | | int | | | | | | | | Maximum length of a row in a base | | | | table supported by the database | | | | server, expressed in bytes. | | | | | | | MAX_SCHEMA_NAME_LEN | | | | | | | | | int | | | | | | | | Maximum length of a schema name sup- | | | | ported by the database server, | | | | expressed in bytes. | | | | | | | MAX_STATEMENT_LEN | | | | | | | | | int | | | | | | | | Maximum length of an SQL statement | | | | supported by the database server, | | | | expressed in bytes. | | | | | | | MAX_TABLE_NAME_LEN | | | | | | | | | int | | | | | | | | Maximum length of a table name sup- | | | | ported by the database server, | | | | expressed in bytes. | | | | | | |NON_NULLABLE_COLUMNS | | | | | | | | | bool | | | | | | | | | | | | TRUE if the database server supports | | | | columns that can be defined as NOT | | | | NULL, FALSE if the database server | | | | does not support columns defined as | | | | NOT NULL. | | | | | | | PROCEDURES | | | | | | | | | bool | | | | | | | | | | | | TRUE if the database server supports | | | | the use of the CALL statement to | | | | call stored procedures, FALSE if the | | | | database server does not support the | | | | CALL statement. | | | | | | | SPECIAL_CHARS | | | | | | | | | string | | | | | | | | A string containing all of the char- | | | | acters other than a-Z, 0-9, and | | | | underscore that can be used in an | | | | identifier name. | | | | | | | SQL_CONFORMANCE | | | | | | | | | string | | | | | | | | The level of conformance to the | | | | ANSI/ISO SQL-92 specification | | | | offered by the database server: | | | | | | | | o ENTRY | | | | - Entry-level SQL-92 | | | | compliance. | | | | | | | | o FIPS127 | | | | - FIPS-127-2 transi- | | | | tional compliance. | | | | | | | | o FULL | | | | - Full level SQL-92 | | | | compliance. | | | | | | | | o INTERMEDIATE | | | | - Intermediate level | | | | SQL-92 compliance. | | | | | | +----------------------+--------------------------------------+---+ PARAMETERS
o $connection - Specifies an active DB2 client connection. RETURN VALUES
Returns an object on a successful call. Returns FALSE on failure. EXAMPLES
Example #1 A db2_server_info(3) example To retrieve information about the server, you must pass a valid database connection resource to db2_server_info(3). <?php $conn = db2_connect('sample', 'db2inst1', 'ibmdb2'); $server = db2_server_info( $conn ); if ($server) { echo "DBMS_NAME: "; var_dump( $server->DBMS_NAME ); echo "DBMS_VER: "; var_dump( $server->DBMS_VER ); echo "DB_CODEPAGE: "; var_dump( $server->DB_CODEPAGE ); echo "DB_NAME: "; var_dump( $server->DB_NAME ); echo "INST_NAME: "; var_dump( $server->INST_NAME ); echo "SPECIAL_CHARS: "; var_dump( $server->SPECIAL_CHARS ); echo "KEYWORDS: "; var_dump( sizeof($server->KEYWORDS) ); echo "DFT_ISOLATION: "; var_dump( $server->DFT_ISOLATION ); echo "ISOLATION_OPTION: "; $il = ''; foreach( $server->ISOLATION_OPTION as $opt ) { $il .= $opt." "; } var_dump( $il ); echo "SQL_CONFORMANCE: "; var_dump( $server->SQL_CONFORMANCE ); echo "PROCEDURES: "; var_dump( $server->PROCEDURES ); echo "IDENTIFIER_QUOTE_CHAR: "; var_dump( $server->IDENTIFIER_QUOTE_CHAR ); echo "LIKE_ESCAPE_CLAUSE: "; var_dump( $server->LIKE_ESCAPE_CLAUSE ); echo "MAX_COL_NAME_LEN: "; var_dump( $server->MAX_COL_NAME_LEN ); echo "MAX_ROW_SIZE: "; var_dump( $server->MAX_ROW_SIZE ); echo "MAX_IDENTIFIER_LEN: "; var_dump( $server->MAX_IDENTIFIER_LEN ); echo "MAX_INDEX_SIZE: "; var_dump( $server->MAX_INDEX_SIZE ); echo "MAX_PROC_NAME_LEN: "; var_dump( $server->MAX_PROC_NAME_LEN ); echo "MAX_SCHEMA_NAME_LEN: "; var_dump( $server->MAX_SCHEMA_NAME_LEN ); echo "MAX_STATEMENT_LEN: "; var_dump( $server->MAX_STATEMENT_LEN ); echo "MAX_TABLE_NAME_LEN: "; var_dump( $server->MAX_TABLE_NAME_LEN ); echo "NON_NULLABLE_COLUMNS: "; var_dump( $server->NON_NULLABLE_COLUMNS ); db2_close($conn); } ?> The above example will output: DBMS_NAME: string(9) "DB2/LINUX" DBMS_VER: string(10) "08.02.0000" DB_CODEPAGE: int(1208) DB_NAME: string(6) "SAMPLE" INST_NAME: string(8) "db2inst1" SPECIAL_CHARS: string(2) "@#" KEYWORDS: int(179) DFT_ISOLATION: string(2) "CS" ISOLATION_OPTION: string(12) "UR CS RS RR " SQL_CONFORMANCE: string(7) "FIPS127" PROCEDURES: bool(true) IDENTIFIER_QUOTE_CHAR: string(1) """ LIKE_ESCAPE_CLAUSE: bool(true) MAX_COL_NAME_LEN: int(30) MAX_ROW_SIZE: int(32677) MAX_IDENTIFIER_LEN: int(18) MAX_INDEX_SIZE: int(1024) MAX_PROC_NAME_LEN: int(128) MAX_SCHEMA_NAME_LEN: int(30) MAX_STATEMENT_LEN: int(2097152) MAX_TABLE_NAME_LEN: int(128) NON_NULLABLE_COLUMNS: bool(true) SEE ALSO
db2_client_info(3). PHP Documentation Group DB2_SERVER_INFO(3)
All times are GMT -4. The time now is 10:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy