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 is asqueryable?
Can we update views in sql?
What is the need of a partition key?
Can sql function call stored procedure?
Explain the select statement in sql?
What is data profiling in sql?
How many columns should be in an index?
How many types of sql are there?
What is the maximum number of columns in sql table?
How do I find duplicates in sql?
What are pl/sql cursor exceptions?
What is sql clause?
how to present a past time in hours, minutes and seconds? : Sql dba
What is a behavioral trigger?
what are the differences between require and include, include_once and require_once? : Sql dba