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 sql profiling in oracle?
What are few of the schema objects that are created using PL/SQL?
What are the types of records?
What is difference between rank () row_number () and dense_rank () in sql?
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
Can we enter data in a table in design view?
When is the update_statistics command used?
Does sql support programming?
what is blob? : Sql dba
Which command is used to delete a trigger?
Is sql a case sensitive language?
what are sequences
What is pl sql collection?
Why cannot I use bind variables in ddl/scl statements in dynamic sql?
Which is better join or inner query?