Size: a a a

2018 June 01

DS

Denis Savenko in Oracle APEX
https://coderwall.com/p/duapqq/use-a-google-spreadsheet-as-your-json-backend
though I just found in 5 second an example how you can get data from your google spreadsheet as JSON
источник

DS

Denis Savenko in Oracle APEX
and APEX 18.1 is able to use a JSON REST API as a data source - so, enjoy
источник

SK

Sergey Konov in Oracle APEX
I'll check that, thanks )
источник

DS

Denis Savenko in Oracle APEX
you're welcome
источник

DS

Denis Savenko in Oracle APEX
at least I just checked it and it's possible to get a CSV file generated from a spreadsheet
источник

DS

Denis Savenko in Oracle APEX
and there're loads of workarounds of how to parse CSV and load it into your table which in its place can be used as a data source for your APEX report
источник

SK

Sergey Konov in Oracle APEX
ok, thank you )
источник
2018 June 02

SK

Santosh Killari in Oracle APEX
Somebody please advice me, is it possible to import Excel (.xls) file into database table,?? That I want to give this option to front end user.
источник

OS

Oleksandr Sydorchuk in Oracle APEX
Yes, it is.
источник

SK

Santosh Killari in Oracle APEX
Oh..Could you please suggest me ,how to implement this?? I mean is there any plugin or something else??
источник

AV

Alexey Vihristyk in Oracle APEX
Oracle Apex supports loading data through from excel when a user opens an xls file, selects the desired data area, copies it to the clipboard and adds it to the text field on the Apex page
источник

AV

Alexey Vihristyk in Oracle APEX
Another option is to load the file into the base (blob) and then parse the excel file using PL / SQL
источник

OS

Oleksandr Sydorchuk in Oracle APEX
источник

SK

Sergei Kaplunov in Oracle APEX
And more complex but more powerful option is to use Apache Poi java library and write code to parse manually.
источник

OS

Oleksandr Sydorchuk in Oracle APEX
источник

SK

Santosh Killari in Oracle APEX
Thank you for quick response, worth information. I will try these workarounds.
источник

OS

Oleksandr Sydorchuk in Oracle APEX
Santosh Killari
Thank you for quick response, worth information. I will try these workarounds.
I prefer and recommend to you use native apex data loading. You also can do data mapping by yourself and skip it for the end user. So it'll be 3 pages instead of 4.
источник

AK

Andrew K in Oracle APEX
Hi! What limitations have native apex data loader? Can it load 10k rows? 100k? With 100-200 columns.
(When i had same task - developed separate java service, using Apache POI with event-based parser, but it was in apex 4.2 times)
источник

AV

Alexey Vihristyk in Oracle APEX
Andrew K
Hi! What limitations have native apex data loader? Can it load 10k rows? 100k? With 100-200 columns.
(When i had same task - developed separate java service, using Apache POI with event-based parser, but it was in apex 4.2 times)
Apex standard upload copy/paste method max 32k, csv file upload method limited you server settings
источник

AV

Alexey Vihristyk in Oracle APEX
I’m upload csv file 5M rows
источник