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

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.

Related

where to Download shp2sdo utility to process shape file to covert to oracle spatial

I am trying to load shape file into oracle database , i came to know that shp2sdo utility convert the shape file to oracle spatial, can someone help with utility download url , i checked on Oracle site it's not available there ,
Thanks
Check the doc here (for the 19c) version on how to load shape files into an oracle table.

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 protect my files in APK?

i have made a quiz app, and stored the questions and assures in a text file. I found the APK file can be easily unpacked and you can see all the files in it.
Is there a way to protect them?
I suggest you use sqlite for store data.
Saving Data in SQL Databases
Good tutorial here (Android SQLite Database Tutorial)
And you can decrypt your sqlite database with sqlcipher

Export a BLOB image from table

I have table in Oracle 11G R2, named as PERSON_IMAGE with ID (Number) and IMAGE(BLOB) fields. Now without using the application i need to export multiple BLOBs.
How can i do this? Do we have any tool/ utility for this?
Example will really assist me.
SQLDeveloper can do it:
http://www.thatjeffsmith.com/archive/2014/05/exporting-multiple-blobs-with-oracle-sql-developer/
I just tried it in version 4.0.3 and although the interface was a little unintuitive, it worked fine. I ended up with a lot of files called TABLE64c49834-014d-1000-8494-c0a8b247f35d.ldr rather than david.jpg but it should be relatively straightforward to process the loader data file with a shell script if you want to rename them.

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.

Resources