ISAM FILE CONVERSION TO TEXT


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers ISAM FILE CONVERSION TO TEXT
# 1  
Old 12-07-2000
I am having a problem. There is one ISAM file available in SCO UNIX environment. I want to convert it to simple comma delimited text file. Actual problem is with the size of the file. For the time being, size is 1.3 GB and I have to grab the subset of the data after every five minutes e.g. in between the two dates. The file is also in USE.

Can anybody help me and give me a clue on how I can solve the problem.
# 2  
Old 12-12-2000
Question

Please describe the format of the ISAM file you are describing. What is the format of this file. Can you post an example of the text? Is is a binary file?
# 3  
Old 12-13-2000
FORMAT O F THE FILE

Quote:
Originally posted by Neo
Please describe the format of the ISAM file you are describing. What is the format of this file. Can you post an example of the text? Is is a binary file?
YES THE FILE IS BINARY. I EXACTLY DONT KNOW THAT WHICH S/WARE WAS USED TO CREATE THAT FILE. I ALSO CONVERTED THAT FILE TO DOS FORMAT USING "DOSCP" OF UNIX AND TRIED ALSO TO OPEN IT USING NOTE PAD BUT AGAIN NO DATA RECORDS ARE AVAILABLE.

I AM POSTING ONE OF THE SMALLEST FILE ON THE NET. I COPIED THIS FILE FROM UNIX TO DOS USING "DOSCP" .
# 4  
Old 12-14-2000
Hmmmm. Doing a DOS copy does not 'convert the file to DOS' it just copies the file to a DOS formatted disk. The file is not converted or changed to DOS, BTW.

You could try opening the file with a text editor that can open a binary file; i.e. VI, EMACS, or one of the myriad bin-hex editors.

What is the utility to read the binary file?

If it is a binary file, you need to understand the format. That means you need to have the source code of the utility that either writes or reads the file. OR, you must open the file with a binary editor and reverse engineer; which is time consuming.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Text Conversion in Column

Hi all; We have a table: COL1 COL2 COL3 COL4 COL5 COL6 COL7 val1 val2 val3 val4 val5 1 val7 val1 val2 val3 val4 val5 3 val7 val1 val2 val3 val4 val5 5 val7 val1 val2 val3 val4 val5 2 val7 ... As you see, 6th columns are filled with numbers as, 1, 2, 3, 4, etc... and I want to make a... (10 Replies)
Discussion started by: gc_sw
10 Replies

2. Shell Programming and Scripting

HTML Conversion of text file

Hi, I have following text file. I want to convert it into the below HTML format. Kindly help. Input Text File Header 1 ======= Name:*** Age:*** Address:*** Work Phone:*** Email:*** Mobile:*** Country:*** City:*** Pincode:*** some text here **** (10 Replies)
Discussion started by: ctrld
10 Replies

3. Shell Programming and Scripting

Conversion of a text file to html

hi i hav a file called focus. which is the output file. i want to convert this file to html file and mail it. help with code and explanatio. i am basic in unix (7 Replies)
Discussion started by: wasim999
7 Replies

4. UNIX for Advanced & Expert Users

PDF to Text Conversion

Hi Guys, My OS is Suse Linux.. Is there a Command to convert PDF file to Text?? Cheers!!!!! (2 Replies)
Discussion started by: mac4rfree
2 Replies

5. Shell Programming and Scripting

text to csv conversion

Thank u every body ......just need a help so that a text file needs to be converted into CSV............. my log file is as follows Host scsi3: usb-storage Vendor: Maxtor Product: OneTouch III Serial Number: 044303E5 Protocol: Transparent SCSI Transport: Bulk ... (4 Replies)
Discussion started by: tangotango
4 Replies

6. Shell Programming and Scripting

Conversion of spaces Text file into CSV format file

Input file (each line is separaed by spaces )given below: Name Domain Contact Phone Email Location ----------------------- ------------------------------------------------ ------- -----... (18 Replies)
Discussion started by: sreenath1037
18 Replies

7. Shell Programming and Scripting

shell or perl script needed for ldif file to text file conversion

This is the ldf file dn: sdcsmsisdn=1000000049,sdcsDatabase=subscriberCache,dc=example,dc=com objectClass: sdcsSubscriber objectClass: top postalCode: 29600 sdcsServiceLevel: 10 sdcsCustomerType: 14 givenName: Adelia sdcsBlackListAll: FALSE sdcsOwnerType: T-Mobile sn: Actionteam... (1 Reply)
Discussion started by: LinuxFriend
1 Replies

8. Shell Programming and Scripting

Context Sensitive smallcap => TitleCap conversion in an entire text file

I desperately need to write a script that go into text documents that list the location of files in small caps and have it convert the directories and subdirectories that lead to the file as Title Caps while leaving the file itself in small caps... to illustrate what I mean: I need to turn txt... (6 Replies)
Discussion started by: monkeyman
6 Replies

9. Shell Programming and Scripting

Text to xlsx conversion

Hi Guys, The code snippet below is working fine with xls 2003 but the same is not working in xlsx 2007. Can someone please help. #Convert .txt file format to .xls format awk 'BEGIN{ FS="|" cols=8 print "<HTML><style type=\"text/css\">td{mso-number-format:\"\@\"}</style><BODY><TABLE... (1 Reply)
Discussion started by: icefish
1 Replies

10. UNIX for Dummies Questions & Answers

Binary data to text file conversion

Dear Sir; i want to know how the binary data convert to text file or readablw format (ASCII).If possible pl. help me for the software and where it is available for download. i.e. (1 Reply)
Discussion started by: auro123
1 Replies
Login or Register to Ask a Question