Oracle request (how to import data excel to oracle) [duplicate] - oracle

This question already has answers here:
Load Excel data sheet to Oracle database
(6 answers)
Closed 8 years ago.
What are the best and/or easiest methods for importing data from Excel (.xls) into an Oracle database?
Please, kindly clarify with any code examples you can.

One of the most common way for importing data from Excel to Oracle Db is to export the contents as a CSV and use SQL*Loader to import it into the table.
The easiest way however, is to use an IDE as mentioned in the comments like TOAD or SQL Developer (which is my favourite Oracle DBM tool).
See this article for more alternative ways.

you can also use perl to read the excel spreadsheet and insert the values from the spreadsheet into the db. Take a look at DBD::Oracle and Spreadsheet::ParseExcel in CPAN.

Related

Oracle Database 19c Sample Schemas :: import sample from Oracle SQL Developer GUI instead of command line

I have a Microsoft background and I'm learning Oracle products.
I was able to import Oracle Database 19c Sample Schemas on a Docker Oracle image from command line following this guide.
I now would like to know if there is a way to import the same sample through a GUI using Oracle SQL Developer.
With SSMS is quite simple to import/export databases, row data, CSV, etc... but I don't see the same tool for Oracle SQL Developer.
EDIT:
#thatjeffsmith suggested to right click on tables > Data Import Wizard, but when I select "db-sample-schemas-master" I only find the samples with .sql files in it and .sql files cannot be imported with this tool
It depends.
The .SQL files can be ran through the SQL worksheet via F5 no problem.
The sqlldr scenarios, you could rename the .dat files to .dsv files.
Right click on your table, like Sales History SH entries, choose Import Data, and walk the wizard.
But, it would be much easier to just follow the instructions as is, especially if you are new to Oracle.

How to export data from oracle forms 10g to Excel and PDF File directly?

My manager asks me to find solution about export database data from oracle forms 10g to Excel and PDF File directly open. I am new in this field and i have no knowledge about that how to export data into excel or pdf file.I am using oracle forms 10g with ERP System. Please suggest me possible solution.
Thanks
I think if you need it in pdf the easiest way is to use jasperreports.
It is easy to setup and can create directly pdf documents.

Importing MS Project 2013 data into Oracle 11g database

Does anyone know if there is a straightforward way to get data out of MS Project 2013 and into Oracle 11g? We have a master schedule created in MS Proj and want to create a web-based application that will perform monitoring and metrics charting of the project schedule statuses. I have successfully exported to CSV and imported into Oracle, but this was cumbersome and required a lot of formatting of the data in the CSV format before it was pushed back into Oracle. I'm in the beginning phases here, but wanted to solicit anyone who may have had experience with this in the past.
If you don't mind writing a little code, you could use MPXJ. You should be able to extract what you need using Java or a .Net language. You can perform the import directly in code, or just generate a suitably formatted output file for import into Oracle using other tools.

Tables created by sonar in the database [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What is the sonar database structure?
Just want to ask which tables will be created after sonar get connected to the database? And also tables used to store the information like "Lines of code" "Classes" "Comments" etc. Could any one give me some documentation about these? Thanks
If you have a clean database with no tables, then Sonar will create all the required tables the first time you start it.
To know more about the tables, you can have a look at this DDL file that we are using for our tests:
https://github.com/SonarSource/sonarqube/tree/master/server/sonar-db-core/src/main/resources/org/sonar/db/version/schema-h2.ddl
The project split, but the 4.5.5 version of the DDL orginally linked in the answer can be found here:
https://github.com/SonarSource/sonarqube/blob/4.5.5/sonar-core/src/main/resources/org/sonar/core/persistence/schema-h2.ddl

SQL Developer for importing from Excel [duplicate]

This question already has answers here:
How copy data from Excel to a table using Oracle SQL Developer
(5 answers)
Closed 8 years ago.
I have installed SQL Developer in my system, but how can i utilize the GUI.
I am new to this and i want to import datas from Excel to Oracle database using SQL Developer
Thanks in advance
At what point did you get stuck?
A fast track:
Create a connection to the database in SQL Developer
Create a table as a destination for the xls data
save excel data as csv
right click on the table from step 2
select 'import data'
select csv file
use the wizzard
and bob is your uncle
Folowing methed creates the table for you
Create a connection to the database in SQL Developer
right click on tables folder
Choose Import data
select xls
use the wizzard (provide table name, row limit, select columns, datatype per column)
Finish
A recent version* of SQL*Developer is able to read Excel workbooks.
Jeff Smith has written very detailed tutorial How to Import from Excel to Oracle with SQL Developer.
* a version 3.2 at the moment of writing

Resources