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
How do you select unique values in sql?
Can you join views in sql?
How do I save a sql query?
What is normalization in a database?
What types of commands can be executed in sql*plus?
What schema means?
What are reports usually used for?
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
What is trigger explain with example?
What is the use of sqldataadapter?
Is sql the best database?
Does mysql_real_escape_string prevent sql injection?
What is the main reason behind using an index?
explain what is mysql? : Sql dba
Can we insert data in view?