SQL tutorial 44: How to import data from Microsoft Excel to Oracle Database using SQL Developer

SQL tutorial 44: How to import data from Microsoft Excel to Oracle Database using SQL Developer


Step by Step Oracle Database/ SQL tutorial on How to import Data from Microsoft excel to the oracle database using SQL Developer.

Celebrating 1000 subscribers. Thanks a lot guys for all your love and support.
------------------------------------------------------------------------ ►►►LINKS◄◄◄
Website: www,Rebellionrider.com

Create Table using
●SQL Developer & Command Prompt:
http://youtu.be/UU0EEfpa-2c
●Enterprise Manager: http://youtu.be/I-LUXP9GmPU
-------------------------------------------------------------------------
Copy Cloud referral link || Use this link to join copy cloud and get 20GB of free storage
https://copy.com?r=kb4rc1

--------------------------------------------------------------------------
►Make sure you SUBSCRIBE and be the first one to see my videos!
--------------------------------------------------------------------------

Amazon Wishlist: http://bit.ly/wishlist-amazon

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
►►►Find me on Social Media◄◄◄
Follow What I am up to as it happens on

https://twitter.com/rebellionrider
https://www.facebook.com/imthebhardwaj
http://instagram.com/rebellionrider
https://plus.google.com/+Rebellionrider
http://in.linkedin.com/in/mannbhardwaj/
http://rebellionrider.tumblr.com/
http://www.pinterest.com/rebellionrider/

You can also Email me at
RebellionRiderYT@gmail.com

Connect with me on my LinkedIn and Endorse My Skills and Do you know that I share Tips and tricks On Google+ Account?

Please please LIKE and SHARE my videos it makes me happy.
Thanks for liking, commenting, sharing and watching more of our videos

This is Manish from RebellionRider.com
♥ I LOVE ALL MY VIEWERS AND SUBSCRIBERS
Closed Caption:

What’s up internet?
Welcome back once again, I am Manish from
RebellionRider.com
And today in this SQL tutorial we will learn
how to import data from Microsoft excel sheet
into oracle database using SQL Developer.
So without wasting any time, let’s start
today’s tutorial.
The prerequisite for this tutorial are
1. A Microsoft excel file with some data to
import. And
2. A table in your database for holding the
imported data.
To save time, I have already created a Microsoft
excel file by the name of source and I have
saved it on my desktop. Let’s take a look
at this file.
As you can see, this file has 4 columns. First
name, last name, phone number and hire date.
First two columns first name and last name
hold character data whereas column phone number
is a numeric column at the same time the last
column hire date holds the data of type DATE.
I explained this to you because we have to
take care of these data type while creating
table in our database.
Moreover this excel document has two worksheets
Sheet 1 and Sheet 2 but only sheet 1 has 12
rows of data and Sheet 2 is empty.
And now I will create a table in my database
using HR user, which will hold the data which
we are going to import from this Microsoft
excel sheet.
I have done series of videos on how to create
table using create table command, SQL Developer
and Enterprise manager. If you want you can
watch as well as like those tutorials. Links
are in the description box.
Moreover you can also give me thumps up on
this tutorial and motivate me for doing more
such videos.
So let’s create the table.
CREATE TABLE DEMO
(F_NAME VARCHAR2(20), L_NAME VARCHAR2(20),
CONTACT NUMBER(20), H_DATE DATE);
Here is our table.
Here in this table I set the data type of
first two column f-name and L-name on varchar
means they can hold the character text easily.
The data type of contact column is number
and column h-date has DATE data type perfect
for holding the values from column hire date
of our excel sheet.
Now the ground is all set. Let’s start the
process of importing data from Microsoft excel
sheet to this table.
First go to your connection tab then double
click and expand the connection in which you
have created the table. In my case I have
created my table in my Local HR connection.
This is the tree structure of all the database
objects owned by my HR user. From all these
database objects double click and expand this
table folder and after that locate your table
in which you want to import the data. In my
case the table is DEMO.
Let me confirm for you once that this table
does not have any data.
As you can see there is no data in this table.
Now right click and select the table and then
choose import data or you can also select
import data option from this Action drop down
list
Here as you can see in this window we have
to find and open the Microsoft excel file
from which we want to import the data into
the our oracle database. I have saved my Microsoft
file by the name of source on my desktop.
Here it is. Select the file and hit open.
Here if you will look closely in the file
type drop down list, you will find that all
these are the type of file from which you
can import the data.
As soon as you hit open this will open up
the import wizard, there are total 5 steps
which we have to perform to import the data
from Microsoft excel to our oracle database.
Step 1: First step is Data preview. You can
see there are 5 options on the frame Header,
Skip Rows, Format Preview Row Limits and Worksheet.
Header: If you want to treat the first row
of your excel sheet as your column header
or as your column name then let this checkbox
remain checked. Let’s uncheck this checkbox
and see what happens.
As you can see if I uncheck this box the SQL
Developer treats my first line of excel sheet
as the actual data rather than the name of
column or column header. I will let it remain
checked as my first row of excel sheet consists
the name of my columns.
Next is Skip Rows: Here you can enter the
number of rows which you want to skip from
the top. For example say I want to skip my
top 2 rows then I will write 2 here. As you
can see above 2 rows are removed. Let it again
set on zero
Third option is Format: Here you can chose
between xls or xlsx format for your excel
sheet.
Fourth option is Preview Row Limits: Here
you can set the limit on number of rows which
you wish to see in this preview panel at once.
Last option is Worksheet: This option is only
available when your excel document has more
than one worksheet. However if your MS Excel
has only 1 worksheet then this option will
not be there on your screen. Here you can
chose from which worksheet of your Microsoft
excel document you want to import the data.
I have two worksheets in my Microsoft excel
but only sheet 1 has data and sheet 2 is empty.
As you can see here.
Let me show you, as you can see there is no
data in sheet 2 but in sheet 1 we have some
data.
Now Hit next
Step 2: Second Step is the Import method.
Here we have 3 options import method, table
name and import row limit.
In Import method there are 2 options Insert
and Insert Script. If you choose Insert then
SQL Developer will directly insert the data
into your table but if you choose the Insert
Script then SQL Developer will create a Script
which you have to Execute to insert the data
into your table. I will choose Insert here.
Second option is the table name. Set it on
DEMO which is the name of our table.
Third is import row limit. Here you can choose
how many rows you want to insert in your table
at once. Let’s hit next
Step 3: Next Step is Choose Column: By Default
here SQL Developer has selected all the columns
of our Microsoft Excel Sheet. Here in this
step you can choose values from which column
you want to import.
Like if you don’t want to import values
from hire data column then you can simply
remove it but I want to import the values
from hire data column so I will select it
and put it select column panel
Let it be like this as we want to import the
values from all the columns.
Step 4: Match Column. Here you can map the
column. Source data column panel consists
of all the column names of our Microsoft Excel
sheet and Target table columns panel has the
information of the columns of our table demo.
Here you must take care that the data type
of both side columns must match. If there
is any date column then the date format of
both side columns must be the same.
For example I want to import values of first
name column of excel sheet into the f name
column of the demo table. Both have same data
type and compatible column width.
Similarly I will map last name column over
L-name and
Phone number column over contact column
And at the end hire data column over H-date
column but here we have to define the data
format which is mandatory. So I will set my
date format on DD-MON-YY.
Hit Next.
In the last step click this verify button.
So the status is success which means you are
good to go. If something is wrong then SQL
Developer will show the error here.
But for now everything is ok
So hit finish
Let’s check the data.
And here we go as you can see we have successfully
imported the data from Microsoft excel to
our table demo.
That’s it for today. Hope you learnt something.
Do you know guys I share tips and tricks with
other information on my google+ and we can
be friends on my twitter, Instagram and Facebook.
Find the links in the description box.
Liked what you saw? Then do hit the like button!!!
It encourages me to do more such interesting
videos. Please share my videos and help me
in reaching out to more people around the
world. And don’t forget to subscribe.
Thanks for watching.
Signing off for today
This is Manish.
4

Video Length: 08:21
Uploaded By: Manish Sharma
View Count: 36,445

Related Software Products
Oracle-to-Excel
Oracle-to-Excel

Published By:
Intelligent Converters

Description:
Oracle-to-Excel is a program to convert Oracle databases into MS Excel spreadsheet. Key features:BR(1) all Oracle data types are supportedBR(2) fast conversion engine (1GB Oracle database - in 10 minutes on average P-III system)BR(3) converts individual tablesBR(4) command line supportBR(5) output spreadsheet is compatible with MS Excel 5.0 and higherBR(6) easy-to-use wizard style interface

Access-to-Oracle
Access-to-Oracle

Published By:
Intelligent Converters

Description:
Access-to-Oracle is a program to move MS Access databases to Oracle server. The program has easy-to-use wizard style interface and supports command line.BRBR License InformationBRBR Single-User License allows clients to install the software product on exactly one (1) computer system. Client can store a backup copy of the software but cannot use two copies of the software at any one time. Single-User License does NOT allow to make use of the software through a corporate ...


Related Videos
How to configure Microsoft Excel to connect to an Oracle Database
How to configure Microsoft Excel to connect to an Oracle Database

Mike van der Velden, Product Manager at Simba Technologies, provides a step-by-step guide for configuring Microsoft Excel to connect with Oracle Database OLAP Option. Mike walks through the one-time set-up of Oracle's Transparent Networking Substrate (TNS), followed by the Data Source Name (DSN) and Office Data Connection (.odc). Once configured, Microsoft Excel connects easily to Oracle Database OLAP Option for ad hoc data query, data analysis and BI reporting. hr / bClosed ...
Video Length: 11:52
Uploaded By: Simba Technologies Inc.
View Count: 107,015

SQL Consulting | Connect SQL Developer to Oracle Database
SQL Consulting | Connect SQL Developer to Oracle Database

Connect SQL Developer to Oracle Database Tutorial http://www.ReportingGuru.com Email us at ReportingHelp@ReportingGuru.com if you need help, custom reports, or reporting architecture setup. Our phone number is 1-(800) 921-4759. Reporting Guru is a US based development company with all resources located in the US. We have many senior level developers with over a decade of development experience. Please let us know if you would like to discuss your requirements or issues ...
Video Length: 05:34
Uploaded By: Reporting Guru
View Count: 73,531

CSV file import into Oracle
CSV file import into Oracle

An example to show how to upload a CSV file into an Oracle database usin SQL Loader. hr / bClosed Caption:/b I let's see how can we simply upload a CSV file into oracle first of all let's find something that we could upload for this I am be stopped 250 would be good top 250 movies okay first of all let's save it into csv for this wheel's XL now as you can see there are four columns that we should be uploaded into ...
Video Length: 04:52
Uploaded By: woolfool
View Count: 58,969

Connect Excel to Oracle Database
Connect Excel to Oracle Database

How to connect an Oracle Database to Microsoft Excel. https://www.elance.com/s/edtemb/ hr / bClosed Caption:/b hi this is that when tempo and today I'm going to show you how to create a simple Microsoft Excel report to using data from an oracle database so the first thing we need to do is create the report template such as this this is just a simple sheet with a refresh button that actually has a macro that will justbr ...
Video Length: 05:03
Uploaded By: i_marketing
View Count: 57,664

Oracle SQL Developer: Online Migration 3.1
Oracle SQL Developer: Online Migration 3.1

Using Oracle SQL Developer 3.1 to migrate a Sybase database to Oracle. hr / bClosed Caption:/b hello my name is tomorrow nail and i'm going to show you how to do a quick migration use an article sequel developer the first thing to note is Marco secret developer is available for free upon otn can download the product comes in the zip file is unzip it into any director you want and off start so i am going to start up ...
Video Length: 10:01
Uploaded By: oraclesqldev
View Count: 46,656

Importing Data from Excel into Oracle Database using SQL Developer 4.1
Importing Data from Excel into Oracle Database using SQL Developer 4.1

One of SQL Developer’s most popular features has undergone a significant upgrade. Users can quickly define and recall delimited or Excel files to be imported to a new or existing Oracle table. Data preview and validation is provided for each column, as well as ‘best guess’ data type and date format mask mapping. This process can now be automated via the SQL Developer command line interface (SDCLI) ‘Import’ command. NOTE: This is a video only. There is no audio. Copyright © 2015 ...
Video Length: 02:23
Uploaded By: Oracle Learning Library
View Count: 33,165

August 2010 - Essbase Excel Add-In Spreadsheet Reporting - Oracle Hyperion Training
August 2010 - Essbase Excel Add-In Spreadsheet Reporting - Oracle Hyperion Training

http://harbinger-group.com/education hr / bClosed Caption:/b and there we go i keep it simple definition of space is that it's a multi-dimensional database whatever that means i'll explain in a moment designed for rapid reporting and analysis dimension is a description of your business like the products you sell the customers you sell to the market to sell in what are you measuring what time period are you ...
Video Length: 32:55
Uploaded By: HCGUniversity
View Count: 28,801

Introduction to Oracle Web Services Manager (OWSM) 11gR1
Introduction to Oracle Web Services Manager (OWSM) 11gR1

Oracle's Vikas Jain gives an overview of Oracle Web Services Manager (OWSM) 11gR1 a product in Oracle Fusion Middleware, desribing the benefits and features it provides for web services and SOA security based on WS-* standards leveraging the Oracle Identity Management products for access control. Visit OWSM on OTN at http://www.oracle.com/technology/prod... hr / bClosed Caption:/b I'm because Jen product manager for the article.much this is manager this video ...
Video Length: 08:32
Uploaded By: OracleWebVideo
View Count: 21,115

Move Data from Third Party Database to Oracle
Move Data from Third Party Database to Oracle

Using the Migration Wizard in SQL Developer, you can move your data from a third party database to Oracle. Copyright © 2013 Oracle and/or its affiliates. Oracle® is a registered trademark of Oracle and/or its affiliates. All rights reserved. Oracle disclaims any warranties or representations as to the accuracy or completeness of this recording, demonstration, and/or written materials (the "Materials"). The Materials are provided "as is" without any warranty of any kind, either ...
Video Length: 02:31
Uploaded By: Oracle Learning Library
View Count: 14,285

Connect To Oracle from Access Database using Linked Tables.
Connect To Oracle from Access Database using Linked Tables.

Export Access Database Tables to Oracle and Link and Create Form from Oracle tables. Uses Oracle Odbc, Oracle, SQL, Access.
Video Length: 05:28
Uploaded By: Theodore Timpone
View Count: 11,862

Copyright © 2025, Ivertech. All rights reserved.