Removing rows and chars from text file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Removing rows and chars from text file
# 15  
Old 09-10-2012
Quote:
Originally Posted by Lord Spectre
Is it possibile to edit the original file to avoid another file creation?
Not, it isn't. I have explained in this thread why it isn't possible.

The only way is to create a new file and move or "cat" it over the old file. GNU-utilities have the "-i" flag, which does the same (create a temporary file and move it over the original), but inode-number, filemode and ownership are not necessarily preserved. Therefore it is better to avoid that switch and do it manually, if you have to do it.

I hope this helps.

bakunin
# 16  
Old 09-11-2012
Quote:
Originally Posted by msabhi
You are right, I guess TOTAL is of number datatype and hence the stuff "column format" won't work for this column alone...
Now you can try in two ways...(We need some trial and error cases here since its formatting what we are doing here)
1.
Code:
set heading off 
column ADDR format A10
  column TRGOUPAGGR format A20 
set linesize 80
 set feedback off
 set verify off
 <your sql query>

2nd.Change only in select clause
Code:
set heading off
set feedback off
 set verify off
select ADDR||' '||TOTAL||' '||TRGOUPAGGR

Thanks for your effort msabhi, unfortunately both commands doesn't work and the response from oracle is still in two lines!
But hey! Don't waste more time Smilie , I'll put the result in one line from query post-processing.

However, I'm available if you want to do any other test! Smilie
This User Gave Thanks to Lord Spectre For This Post:
# 17  
Old 09-11-2012
Quote:
Originally Posted by Lord Spectre
Thanks for your effort msabhi, unfortunately both commands doesn't work and the response from oracle is still in two lines!
But hey! Don't waste more time Smilie , I'll put the result in one line from query post-processing.

However, I'm available if you want to do any other test! Smilie
Hmmm am sorry for that Smilie .. But yeah i don't have any tool here to test that ..hope i was physically there to do that...I have had this kinda queries going in my work whenever i required formatting like what you have mentioned.I love to do these actually..Somehow its not working...In the interest of time i stop here...I really appreciate your efforts in taking my suggestions into consideration...but believe me ..whatever formatting you required could have been solved in sql Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing top few and bottom few rows in a file

Hi, I have a requirement where I need to delete given number of top and bottom rows in a flat file which has new line as its delimiter. For ex: if top_rows=2 & bottom_rows=1 Then in a given file which looks like: New York DC LA London Tokyo Prague Paris Bombay Sydney... (7 Replies)
Discussion started by: calredd
7 Replies

2. UNIX for Advanced & Expert Users

Removing special chars from file and maintain field separator

Running SunOs 5.6. Solaris. I've been able to remove all special characters from a fixed length file which appear in the first column but as a result all subsequent columns have shifted to the left by the amount of characters deleted. It is a space separated file. Line 1 in input file is... (6 Replies)
Discussion started by: iffy290
6 Replies

3. Shell Programming and Scripting

Removing Duplicate Rows in a file

Hello I have a file with contents like this... Part1 Field2 Field3 Field4 (line1) Part2 Field2 Field3 Field4 (line2) Part3 Field2 Field3 Field4 (line3) Part1 Field2 Field3 Field4 (line4) Part4 Field2 Field3 Field4 (line5) Part5 Field2 Field3 Field4 (line6) Part2 Field2 Field3 Field4... (7 Replies)
Discussion started by: ekbaazigar
7 Replies

4. Shell Programming and Scripting

Bash script help - removing certain rows from .csv file

Hello Everyone, I am trying to find a way to take a .csv file with 7 columns and a ton of rows (over 600,000) and remove the entire row if the cell in forth column is blank. Just to give you a little background on why I am doing this (just in case there is an easier way), I am pulling... (3 Replies)
Discussion started by: MrTuxor
3 Replies

5. Shell Programming and Scripting

Removing unknow chars from file names.

I'm trying to move a large folder to an external drive but some files have these weird chars that the external drive won't accept. Does anyone know any command of any bash script that will look through a given folder and remove any weird chars? (4 Replies)
Discussion started by: Joktaa
4 Replies

6. Shell Programming and Scripting

removing rows from text file older than certain date

Hi I need a way of removing rows from a txt file that are older than 30 days from today, going by the date in column 2, below is an example from my file. I have tried awk but don't have enough knowledge. I would really appreciate some help. 41982,15/07/2010,H833AB/0,JZ,288... (6 Replies)
Discussion started by: firefox2k2
6 Replies

7. Shell Programming and Scripting

Removing rows based on a different file (ignore my earlier post - there was a mistake).

Sorry I made a mistake in my last post (output is suppose to be the opposite). Here is a revised post. Hi, I am not sure if this has already been asked (I tried the search but the search was too broad). Basically I want to remove rows based on another file. So file1 looks like this (tab... (3 Replies)
Discussion started by: kylle345
3 Replies

8. Shell Programming and Scripting

Removing rows based on a another file

Hi, I am not sure if this has already been asked (I tried the search but the search was too broad). Basically I want to remove rows based on another file. So file1 looks like this (tab seperated): HHN 3 5 5 HUJ 2 2 1 JJJ 3 1 1 JUN 2 1 3 I have another file (file2)... (2 Replies)
Discussion started by: kylle345
2 Replies

9. Shell Programming and Scripting

Removing rows from a file

I have a file like below and want to use awk to solve this problem. The record separator is ">". I want to look at each record section enclosed within ">". Find the row with the 2nd and 3rd columns being 0, such as 10 0 0 I need to take the first number which in this case is 10. Then... (15 Replies)
Discussion started by: kristinu
15 Replies

10. Shell Programming and Scripting

Removing rows from a file based on date comparison

I have a '|' delimited file and want to remove all the records from the file if the date is greater than a year from sysdate. The layout of the file is as below - xxxxxxxxxxxxxx|yyyyyy|zzzzzz|2009-12-27-00:00| 000000000|N xxxxxxxxxxxxxx|yyyyyy|zzzzzz|2010-01-03-00:00| 000000000|N... (4 Replies)
Discussion started by: Max_2503
4 Replies
Login or Register to Ask a Question