everyone, I have created a simple report app showing some data using Oracle Apex and I want to make it get Data from a server(FTP) through an Excel file and fill its tables automatically whenever I change the excel file, is it possible and if it is, how it can be done, thanks in advance.
I am not sure whether the way you said is possible or not.Just a suggestion,
Create the Report in Oracle Apex based on the Database table
Create a DB Procedure to insert the data into DB table from the Excel file
Create and Schedule a DB JOB which calls the DB procedure, to check the FTP frequently and load file into the table. So Users can see the updated data.
Related
I am using Oracle Apex 22.1.4 version. My requirement is to capture the error records and store them somewhere else while loading the data from xlsx/csv file.
If it's stored in some error log tables/ somewhere else internally, I can create a report on top of that table and display them to the users.
I saw one of the blogs from Oracle and I came to know that it was a very simple and easy method of capturing error records and storing them in Error tables in Oracle Apex 19.1
https://blogs.oracle.com/apex/post/quick-and-easy-data-loading-with-apex-191
Is there any similar way of capturing error data and storing them in Oracle Apex 22.1?
If yes, please give me suggestions.
Thanks in advance!
I am using Oracle APEX 5.1.3 and tried to create a Data Load Wizard where a user submits a CSV with 67 columns but ran into the problem where there is a 45 column limit for the Data Load Wizard. Is there a way around this?
Yes, APEX 5.1.3 has this limit. There are however work arounds using external table or loading the table and writing your own post-process.
Import data in excel to database table
Upload data from csv to table in APEX
I've been task with figuring out a way to get data from Oracle and store it in a SQLite database. The back story is we currently use SQLite for our local storage on a mobile application and we currently populate that data via a file download, because the data is a large amount it could take up to 5 minutes to populate the database. An easy solution for us would be to build the table on the server and download it via http. The data is currently stored in a Oracle database on the server. My question is is it possible to create a DBLink from Oracle to SQLite to insert the data into the SQLite database on the server? If this is not possible are there any other solutions that would achieve this?
Thanks
I am using SQL Developer 1.5.5 and I need to export some tables from an Oracle 11g database to an xls file. I have tried using spool, but I cannot put in a stored procedure as error comes up. Is there some other alternative to do this?
I am trying to create reports from data base by executing the procedure.
Thanks.
Anton Scheffer (from AMIS.NL) wrote an APEX plugin to load Oracle data into a Excel file. It works very well and it can be used alone (without APEX) with a additional work.
Check out: http://technology.amis.nl/2011/02/19/create-an-excel-file-with-plsql/
You can also use SQLX (see http://technology.amis.nl/2006/01/20/generate-anative-excel-file-with-sqlx/) but it could be very complex depending on what you ha
I would like to know how I can insert or update data in a Google Spreadsheet from an Oracle Database please?
Apps Script residing in a spreadsheet container or somewhere else can fetch data from oracle and update your spreadsheet but I don't think there is any simple way to update spreadsheet from Oracle side. For programming, Oracle uses PLSQL but I have not come to any solution yet to use Spreadsheet API with PLSQL.
It would be better to write Apps Script code and which will run by a time driven trigger and look for changes in Oracle table and update the same in spreadsheet.
Here is the reference link to use JDBC Service in Apps Script.