Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to load comma seperated values file (*.csv) into Oracle table Post 22493 by peter.herlihy on Tuesday 4th of June 2002 06:09:34 PM
Old 06-04-2002
Okay - next question.... I assume that the table already exists.....correct?

And is the format of the data in the csv file the same as is required for the table.....i.e. is it char - or int...and does it match the table requirements for the fields?

Also - does every field in the file go directly into a field in the table....

i.e.

File:
a,b,c,d,e,f,g,h,i
a1,b1,c1,d1,e1,f1,g1,h1,i1

Table:
column1 (char(2)
column2 char(2)
...etc....

You will need to have the file data formatted into the same as the table..i.e. they may need speech marks around the values for char fields..... give me a bit more and there is a simpleish answer that I can show you if you answer these questions.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How to load comma seperated values file (*.csv) into Oracle table

Hi all I need to input values in a .csv file into my Oracle table running in Unix, I wonder what would be the command to do so... The values are recorded in an excel file and I tried using a formatted text file to do so but failed because one of the field is simply too large to fit in the... (4 Replies)
Discussion started by: handynas
4 Replies

2. Shell Programming and Scripting

Handling .CSV( Comma seperated value) in awk

Hi Guys, I am trying to reading in comma seperated values in awk. I can set the delimiter to be a comma, but the tricky part is that commas that appear within quotes are not to be considered as delimiters. Could someone please help. Regards, Laud (1 Reply)
Discussion started by: Laud12345
1 Replies

3. Shell Programming and Scripting

Comma Seperated List of Values

Hi, I have a comma seperated list of values: export list="red,blue,white,yellow" Given a value in a variable "look", i want to check whether the value is available in the above list. But the result should be based on exact string match and not part of the string. I am using following... (9 Replies)
Discussion started by: brap45
9 Replies

4. Shell Programming and Scripting

load a data from text file into a oracle table

Hi all, I have a data like, 0,R001,2,D this wants to be loaded into a oracle database table. Pl let me know how this has to be done. Thanks in advance (2 Replies)
Discussion started by: raji35
2 Replies

5. Shell Programming and Scripting

Removing blank lines from comma seperated and space seperated file.

Hi, I want to remove empty/blank lines from comma seperated and space seperated files Thanks all for help (11 Replies)
Discussion started by: pinnacle
11 Replies

6. Shell Programming and Scripting

Convert comma seperated file to line seperated.

Hi, I have data like this. 1,2,3,4 Output required: 1 2 3 4 I am trying to use tr function but getting error. Help is appreciated. (6 Replies)
Discussion started by: pinnacle
6 Replies

7. Shell Programming and Scripting

Update the table using values from a csv file

i want to run update query for oracle which is in up.sql taking values from a.csv. I have implemented shell script to do it. extn="perl" ls -1 | while read file do echo "$file,$extn" > a.csv done up.sql contains update file_list set filename=$1 where extn=$2; The code to update is... (2 Replies)
Discussion started by: millan
2 Replies

8. UNIX for Dummies Questions & Answers

Handling Comma in string values in a CSV file

Hi have a comma separated file which has numeric and string columns. String columns are quoted and can have comma in between the quotes. How to identify the columns with FS ="," sample records"prabhat,kumar",19,2000,"bangalore,India" In awk it should be$1 = prabhat,kumar $2=19 $3=2000... (9 Replies)
Discussion started by: prabhat.diwaker
9 Replies

9. Shell Programming and Scripting

Convert listner.log to csv format with comma seperated

Hi All, I am new to shell scripting i am trying to convert the listner.log to csv which can be inturn converted to excel for easy reading. i used this command awk '/SID=/ && /HOST=/ && /PORT=/ && /USER=/ { i=match($0,"SID="); i=i+RLENGTH; h0=substr($0,i); i=match(h0,")");... (6 Replies)
Discussion started by: skoshekay
6 Replies

10. Shell Programming and Scripting

Script to load XML file to Oracle table

Experts. I have created a oracle table as below. create table xml_tab ( File_No number , File_content Varchar2(2000), file_type xmltype ); Daily we are receiving many XML files as below. here is our sample xml file. File1 : (7 Replies)
Discussion started by: vasuvv
7 Replies
ranhash(3x)															       ranhash(3x)

Name
       ranhashinit, ranhash, ranlookup - access routine for the symbol table definition file in archives

Syntax
       #include <ar.h>

       int ranhashinit(pran, pstr, size)
       struct ranlib *pran;
       char *pstr;
       int size;

       ranhash(name)
       char *name;

       struct ranlib *ranhash(name)
       char *name;

Description
       The  function initializes static information for future use by and The argument pran points to an array of ranlib structures.  The argument
       pstr points to the corresponding ranlib string table (these are only used by The argument size size is the  size  of  the  hash	table  and
       should be a power of 2. If the size is not a power of 2, a 1 is returned; otherwise, a 0 is returned.

       The function returns a hash number given a name. It uses a multiplicative hashing algorithm and the size argument to

       The  function  looks up name in the ranlib table specified by ranhashinit.  It uses the routine as a starting point. Then, it does a rehash
       from there.  This routine returns a pointer to a valid ranlib entry on a match.	If no matches are found (the "emptiness" can  be  inferred
       if  the	ran_off field is zero), the empty ranlib structure hash table should be sparse.  This routine does not expect to run out of places
       to look in the table.  For example, if you collide on all entries in the table, an error is printed tostderr and a zero is returned.

See Also
       ar(1), ar(5)

								       RISC							       ranhash(3x)
All times are GMT -4. The time now is 08:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy