Answer Posted / arup ratan banerjee
By means of Sqlloader
steps
------
1) Save the excel file as .csv
2) Give proper column headings
3) create a file named sqlload.ctl where u will write
load data
infile 'C:\HR_EMP_LWP_TMP.csv'
REPLACE
into table HR_EMP_LWP_TMP
fields terminated by ','
(emp_NO,yr_mon,lwp)
4) Load Oracle Client 9i
From command prompt run
c:\oracle_client9i\bin\sqlldr <user/password@tnsname>
sqlload1.ctl
5) The excel file gets converted to Table in Oracle
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
What's the difference between a primary key and a clustered index?
Is sql a dbms?
what are different types of collation sensitivity? : Sql dba
How do I sort a table in sql?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
What is date functions?
What are the benefits of triggers?
What is synonyms?
Does sql full backup truncate logs?
what is error ora-03113: end-of-file on communication channel?
What are the most important ddl statements in sql?
what happens if you no create privilege in a database? : Sql dba
Does oracle use sql?
difference between anonymous blocks and sub-programs.
how to rename an existing table in mysql? : Sql dba