I have one Excel file with 1,50,000 Records. Now I need to
load that whole file into Oracle Database with same columns
in Excel sheet .
I need PLSQL Procedure or used by SQL PLUS
Answers were Sorted based on User's Feedback
Answer / murthy
Please use the sql loader to upload the file into Oracle
database.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / madhu
I NEED PL/SQL PROCEDURE
we can't use sqlplus,why because we can't upload the data
in single statement,So we need pl/sql procedure
or else dump the data using with sql loader
by using command prompt in SQL LOADER
Is This Answer Correct ? | 9 Yes | 7 No |
Answer / aryasen
If you are using SQL Developer one option is there for
importing data from excel/csv or any other files.
first u need to create table which contains all columns in
excel. then right click on that table it will give option
for import excel data to the table.
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / sajid siddiki
Please use sqlldr on UNIX or Ora Loader software to load any
kind of file(txt,xls) into system.
Is This Answer Correct ? | 1 Yes | 0 No |
yes, We can also import data in db by creating external table.So in this case, we can use sql plus too.
Is This Answer Correct ? | 0 Yes | 0 No |
What is self-join and what is the requirement of self-join?
what is the cursor and use of cursor in pl/sql ?
What is trigger and how to use it in sql?
What is difference between procedure and trigger?
declare v_count number(8,3); v_sal scott.emp.sal%type := '&P_sal'; cursor cur_name is select sal from scott.emp where sal between (v_sal-100) and (v_sal +1000); begin v_count :=nvl(sql%rowcount ,0); if v_count = 0 then dbms_output.put_line('no records are fetch in the given sal range'); else dbms_output.put_line('There is/are '||to_char(v_count)|| ' salaries are selected in the given range '); end if; end; in the above programm .....for any sal range ....always it shows the following message.. no records are fetch in the given sal range please find the mistake and share with me...with thansk and regards..sarao....
What is the file extension for sql database?
C. Normalize the following data up to the 3rd Normal form. Create the tables and insert the data given. Emp_ID Name Dept_Name Salary Course_Title Date_Completed 100 Adam Marketing 48,000 SPSS 6/19/2008 Surveys 10/7/2008 140 Bob Accounting 52,000 Tax Acc 12/8/2008 110 Cathy IT SQL Server 1/12/2008 C# 4/22/2008 190 Dan Finance 150 Emily Marketing 55,000 SPSS 6/16/2008 42,000 Analysis 8/12/2008 Queries 1. Find all Names who have completed the SPSS Course. 2. Find employee with max salary. 3. Find employee with 2nd max salary. 4. Find all employees in Dept “Marketing”. 5. Find all the employees who have taken more than 2 courses. 6. Find all the employees who have completed the courses before month of September.
function can return value ,procedure also return value through out parameter then what is the difference?
How do you write an inner join query?
What is bind variable in pl sql?
What are the two different parts of the pl/sql packages?
What is pls_integer in pl sql?