Sponsored Content
Top Forums Shell Programming and Scripting sed: removing any and all trailing digits? Post 302294953 by Squeakygoose on Friday 6th of March 2009 08:01:04 AM
Old 03-06-2009
sed: removing any and all trailing digits?

We have a large number of oracle database related scripts that utilize the environment variables $ORACLE_SID and $DBNAME. In a single instance database the $ORACLE_SID is the same as the database name $DBNAME. So we have simply set DBNAME = $ORACLE_SID. However, now that we are clustering with RAC, we have multiple $ORACLE_SID variables for each $DBNAME. Which means that DBNAME != $ORACLE_SID. An oracle provided script (oraenv) sets up most the environment automatically but does not set up $DBNAME.

Luckily, the $ORACLE_SID variables are just the $DBNAME with the node number added to the end. E.g. $DBNAME=ORCL $ORACLE_SID=ORCL1

What I need is a way to remove any and all digits from the end of the $ORACLE_SID variable. It should leave any digits that are at the beginning or middle of the $ORACLE_SID.

End result:
Code:
$ORACLE_SID     $DBNAME
ORCL                ORCL
ORCL1              ORCL
ORCL23             ORCL
4ORCL              4ORCL
4ORCL3            4ORCL
OR4CL              OR4CL

Thanks in advance!
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

re: removing trailing space from lines

Not sure why this thread was closed without any explanation, but you can do what you're asking with sed 's/]*$//g' < sourceFile > destFile (1 Reply)
Discussion started by: oombera
1 Replies

2. Shell Programming and Scripting

Removing trailing spaces from delimited files

Hi All I have a file of the following format (delimited by |) this is field 1 | field 2 (lots of blank spaces) | field 3 (lots of blank space) | field 1 | more text (lots of blank spaces) | dhjdsk | Is there a way I can remove... (6 Replies)
Discussion started by: djkane
6 Replies

3. Shell Programming and Scripting

Removing trailing zeroes

So, I can't figure out how to do a previous question with printf, so I'm taking a different approach. Suppose I have a set of numbers: 1200,135.000000,12.30100,3212.3200,1.759403,,1230,101.101010,100.000000 I want to remove all trailing zeroes after the decimal, and, if it ends up orphaned,... (8 Replies)
Discussion started by: treesloth
8 Replies

4. Shell Programming and Scripting

Removing trailing zeros using sed

Hello All, I have a csv file with 3 columns. The file which looks like this 47850000,100,233 23560000,10000,456 78650000,560000,54 34000000,3456,3 The first column has 4 trailing zeros. I have to remove 4 trailing zeroes from 1st field. The output file should appear as follows. ... (12 Replies)
Discussion started by: grajp002
12 Replies

5. UNIX for Dummies Questions & Answers

Removing the trailing date from a filename

Hi I have 3 files (say) in a folder as in the example below abc_01012011.csv def_01012011.csv xyz_01012011.csv I need to move these files to a different folder as follows abc.csv def.csv xyz.csv I am trying to put together a script with a for loop which reads the source filenames... (5 Replies)
Discussion started by: bobsn
5 Replies

6. Shell Programming and Scripting

Removing just the trailing commas :-(

Hi all, I haven't needed to do any shell based editing for nearly 20 years, and no amount of searching around has found me a solution to this very simple problem :-( I have a csv file. Some lines have three commas at the end. This means the invoice hasn't been paid. I'd like to use sed / grep... (4 Replies)
Discussion started by: chardyzulu
4 Replies

7. UNIX for Dummies Questions & Answers

Removing trailing characters

I have been given a shell script that I need to amend. To do the following extract the filename from the flag file by removing the .flag extension. # Local variables # Find if the flag files exists MASK=coda_mil2*.flag # Are there any files? bookmark="40" fileFound=0 ls -1... (3 Replies)
Discussion started by: andymay
3 Replies

8. UNIX for Dummies Questions & Answers

Removing trailing x'0A' characters.

I am trying to remove trailing carriage return (x'0a') from a source program. What is a good way to do this for the whole file? TIA (4 Replies)
Discussion started by: wbport
4 Replies

9. Shell Programming and Scripting

Removing Trailing Line

I have been trying to remove empty lines and lines just filled with spaces. I have used the following command which does work. sed -i "/^\s*$/d" Except it leaves one single trailing line at the very end of the file. For the life of me I cant figure out why I cant remove that last trailing... (2 Replies)
Discussion started by: user8282892
2 Replies

10. UNIX for Beginners Questions & Answers

sed / awk script to delete the two digits from first 3 digits

Hi All , I am having an input file as stated below 5728 U_TOP_LOGIC/U_CM0P/core/u_cortexm0plus/u_top/u_sys/u_core/r03_q_reg_20_/Q 011 611 U_TOP_LOGIC/U_CM0P/core/u_cortexm0plus/u_top/u_sys/u_core/r04_q_reg_20_/Q 011 3486... (4 Replies)
Discussion started by: kshitij
4 Replies
STAG-STORENODE(1p)					User Contributed Perl Documentation					STAG-STORENODE(1p)

NAME
stag-storenode.pl - script is for storing data in database SYNOPSIS
stag-storenode.pl -d "dbi:Pg:dbname=mydb;host=localhost" myfile.xml DESCRIPTION
This script is for storing data (specified in a nested file format such as XML or S-Expressions) in a database. It assumes a database schema corresponding to the tags in the input data already exists. ARGUMENTS -d DBNAME This is either a DBI locator or the logical name of a database in the DBSTAG_DBIMAP_FILE config file -user USER db user name -password PASSWORD db user password -u UNIT This is the node/element name on which to load; a database loading event will be fired every time one of these elements is parsed; this also constitutes a whole transaction -c STAGMAPFILE This is a stag mapping file, indicating which elements are aliases -p PARSER Default is xml; can be any stag compatible parser, OR a perl module which will parse the input file and fire stag events (see Data::Stag::BaseGenerator) -t TRANSFORMER This is the name of a perl module that will perform a transformation on the stag events/XML. See also stag-handle.pl -noupdate NODELIST A comma-seperated (no spaces) list of nodes/elements on which no update should be performed if a unique key is found to be present in the DB -trust_ids If this flag is present, the values for primary key values are trusted; otherwise they are assumed to be surrogate internal IDs that should not be used. In this case they will be remapped. -tracenode TABLE/COLUMN E.g. -tracenode person/name Writes out a line on STDERR for every new person inserted/updated -cache TABLE=MODE Can be specified multiple times Example: -cache 0: off (default) 1: memory-caching ON 2: memory-caching OFF, bulkload ON 3: memory-caching ON, bulkload ON IN-MEMORY CACHING By default no in-memory caching is used. If this is set to 1, then an in-memory cache is used for any particular element. No cache management is used, so you should be sure not to cache elements that will cause memory overloads. Setting this will not affect the final result, it is purely an efficiency measure for use with storenode(). The cache is indexed by all unique keys for that particular element/table, wherever those unique keys are set BULKLOAD If bulkload is used without memory-caching (set to 2), then only INSERTs will be performed for this element. Note that this could potentially cause a unique key violation, if the same element is present twice If bulkload is used with memory-caching (set to 3) then only INSERTs will be performed; the unique serial/autoincrement identifiers for those inserts will be cached and used. This means you can have the same element twice. However, the load must take place in one session, otherwise the contents of memory will be lost XML TO DB MAPPING
See DBIx::DBStag for details of the actual mapping. Two styles of mapping are allowed: stag-dbxml and XORT-style XML. You do not have to specify which, they are sufficiently similar that the loader can accept either. MAKING DATABASE FROM XML FILES
It is possible to automatically generate a database schema and populate it directly from XML files (or from Stag objects or other Stag compatible files). Of course, this is no substitute for proper relational design, but often it can be necessary to quickly generate databases from heterogeneous XML data sources, for the purposes of data mining. There are 3 steps involved: 1. Prepare the input XML (for instance, modifying db reserved words). 2. Autogenerate the CREATE TABLE statements, and make a db from these. 3. Store the XML data in the database. Step 1: Prepare input file You may need to make modifications to your XML before it can be used to make a schema. If your XML elements contain any words that are reserved by your DB you should change these. Any XML processing tool (eg XSLT) can be used. Alternatively you can use the script 'stag-mogrify' e.g. to get rid of '-' characters (this is how Stag treates attributes) and to change the element with postgresql reserved word 'date', do this: stag-mogrify.pl -xml -r 's/^date$/moddate/' -r 's/-//g' data.xml > data.mog.xml You may also need to explicitly make elements where you will need linking tables. For instance, if the relationship between 'movie' and 'star' is many-to-many, and your input data looks like this: (movie (name "star wars") (star (name "mark hamill"))) You will need to *interpose* an element between these two, like this: (movie (name "star wars") (movie2star (star (name "mark hamill")))) you can do this with the -i switch: stag-mogrify.pl -xml -i movie,star,movie2star data.xml > data.mog.xml or if you simply do: stag-mogrify.pl -xml -i star data.xml > data.mog.xml the mogrifier will simply interpose an element above every time it sees 'star'; the naming rule is to use the two elements with an underscore between (in this case, 'movie_star'). Step 2: Generating CREATE TABLE statements Use the stag-autoddl.pl script; stag-autoddl.pl data.mog.xml > table.sql The default rule is to create foreign keys from the nested element to the outer element; you will want linking tables tobe treated differently (a linking table will point to parent and child elements). stag-autoddl.pl -l movie2star -l star2character data.mog.xml > table.sql Once you have done this, load the statements into your db; eg for postgresql (for other databases, use SQL::Translator) psql -a mydb < table.sql If something goes wrong, go back to step 1 and sort it out! Note that certain rules are followed: ever table generated gets a surrogate primary key of type 'serial'; this is used to generate foreign key relationships. The rule used is primary and foreign key names are the name of the table with the '_id' suffix. Feel free to modify the autogenerated schema at this stage (eg add uniqueness constraints) Step 3: Store the data in the db stag-storenode.pl -u movie -d 'dbi:Pg:mydb' data.mog.xml You generally don't need extra metadata here; everything can be infered by introspecting the database. The -u|unit switch controls when transactions are committed You can omit the -u switch, and every node directly under the top node will be stored. This will also be the transaction unit. If this works, you should now be able to retreive XML from the database, eg stag-selectall_xml -d 'dbi:Pg:mydb' 'SELECT * FROM x NATURAL JOIN y' perl v5.12.4 2011-10-14 STAG-STORENODE(1p)
All times are GMT -4. The time now is 05:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy