Size: a a a

2021 June 24

MB

Marcos Branquinho in Oracle APEX
I''ll try to make my one... those are kind of expensive... does any body know how to work with CLOB using Oracle APEX? I'm trying to save the information but I'm getting some error
источник

ЮК

Юрий Кирилин... in Oracle APEX
источник

MB

Marcos Branquinho in Oracle APEX
Thanks again Yuri!  I'm going to see if how can I solve that problem.
источник

MB

Marcos Branquinho in Oracle APEX
Another topic, does anybody updated from the previous version of Oracle Apex to the 21.1 version? Does anybody have any recommendation for the the process?
источник

MA

Marvin Amorim in Oracle APEX
The gold rule: Always backup the current apex schema (eg: APEX_20100), and use the apex utility tool to export the workspace.
Then, just follow the Apex guide to upgrade:
https://docs.oracle.com/en/database/oracle/application-express/21.1/htmig/downloading-installing-apex.html#GUID-7E432C6D-CECC-4977-B183-3C654380F7BF
It's just unzip the downloaded apex file from oracle, enter the apex folder, and execute through sqlcl or sqlplux: @apexins.sql SYSAUX SYSAUX TEMP /i/
источник

MA

Marvin Amorim in Oracle APEX
If you are using ORDS, you need to remember to update the apex_image files used in ORDS from the unziped apex folder (apex/images)
источник
2021 June 25

T

Tarcisio in Oracle APEX
unfortunately i had to give up because my version is still 11g.  And one of the prerequisites for this version is 12c onwards.
источник

AS

ABST Support in Oracle APEX
Hello,

i have designed a report which contains title, page header, coumn header, detail and last page footer.

when i am running this report in oracle apex 20.1 usimg jrxml2pdf, last page footer is not showing.

Can anyone guide to find the solution here ?
источник

HB

Hurman BOK in Oracle APEX
er, yeah, that
источник

PR

Prashanth Reddy in Oracle APEX
источник

PR

Prashanth Reddy in Oracle APEX
maybe a sed loop?
источник

DH

Damon Hicks in Oracle APEX
afaik yes
источник

DH

Damon Hicks in Oracle APEX
Hi guys
источник

P

Pradeep in Oracle APEX
Hello Everyone,  is there a way to refresh interactive reports automatically every few seconds?
источник

P

Pradeep in Oracle APEX
I tried http meta and jquery but they didn't work
источник

NK

Nana Kay in Oracle APEX
Give the report a static id and use javascript to refresh it every few seconds....
источник

JT

Jens T in Oracle APEX
i think yes
источник

MA

Marvin Amorim in Oracle APEX
As Nana Kay said: define Static ID to the report.  Then add on your Javascript Execute when Page Loads:
setInterval(function(){apex.region("region-static-id").refresh()}, 60000).
This is a basic template that you can make as complicated as you wish. And the value 60000 it's a value in ms, so 60000 = 60s.
https://www.w3schools.com/jsref/met_win_setinterval.asp
источник