Search found 2126 matches

by admin
Tue Sep 22, 2026 11:21 am
Forum: Oracle APEX
Topic: Oracle APEX 26.1 Agentic AI Demo Scripts & APP
Replies: 0
Views: 388

Oracle APEX 26.1 Agentic AI Demo Scripts & APP

Log Tables


CREATE TABLE "HR_ACTION_LOG"
( "ACTION_ID" NUMBER GENERATED ALWAYS AS IDENTITY MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE NOORDER NOCYCLE NOKEEP NOSCALE NOT NULL ENABLE,
"ACTION_TYPE" VARCHAR2(100) NOT NULL ENABLE,
"EMPLOYEE_ID" NUMBER ...
by admin
Tue Sep 15, 2026 5:38 am
Forum: Oracle APEX
Topic: Oralce APEX Autonomous Database Account Locked
Replies: 0
Views: 545

Oralce APEX Autonomous Database Account Locked

Account Locked.png

ORDS was unable to make a connection to the database. ORDS is not able to proxy to the target user because that user is locked. The connection pool named: |ocid1.autonomousdatabase.oc1.ap-singapore-1.anzwsljrlyho3maabqiziwev3vw2bcrqwsilatu6o76vmnyvj7gmzqzez5ra|re| had the ...
by admin
Sat Sep 12, 2026 9:34 am
Forum: Oracle APEX
Topic: Local Client IP in Oracle APEX?
Replies: 0
Views: 616

Local Client IP in Oracle APEX?

Create a page item P1_LOCAL_IP on the page and paste following code in a dynamic action or page load,

(function () {
const pc = new RTCPeerConnection({
iceServers: []
});

pc.createDataChannel("");

pc.onicecandidate = function (event) {
if (!event.candidate) {
pc.close();
return ...
by admin
Sat Aug 22, 2026 6:02 am
Forum: Oracle APEX
Topic: Oracle APEX MCQ Practice Quizzes with Certificates and Leaderboard
Replies: 0
Views: 5006

Oracle APEX MCQ Practice Quizzes with Certificates and Leaderboard

Oracle APEX MCQ Practice Quizzes with Certificates and Leaderboard

Test and sharpen your Oracle APEX knowledge with our free practice quizzes. Seven topic based quizzes, each with a large pool of questions, instant feedback, a downloadable certificate, and a public leaderboard so you can see how ...
by admin
Sat May 30, 2026 9:41 am
Forum: Oracle APEX
Topic: Oracle APEX 26.1 - Generative AI Agent with Sales Analytics
Replies: 0
Views: 6784

Oracle APEX 26.1 - Generative AI Agent with Sales Analytics

This article walks through building a complete Generative AI Agent in Oracle APEX 26.1 using real sales data from the Oracle sample dataset. The agent uses Augment System Prompt tools to inject live context before every conversation and On Demand tools that the AI calls automatically when needed to ...
by admin
Fri May 29, 2026 2:41 am
Forum: Oracle APEX
Topic: APEXlang with Oracle APEX 26.1 on Windows Part 1: Setup and Configuration
Replies: 0
Views: 5881

APEXlang with Oracle APEX 26.1 on Windows Part 1: Setup and Configuration

APEXlang with Oracle APEX 26.1 on Windows
Part 1: Setup and Configuration

A practical guide for Oracle developers on Windows including real errors encountered, exact fixes applied, and lessons learned along the way.

By Malik Sikandar Hayat | Oracle ACE Pro | ERPstuff.com | admin@erpstuff.com ...
by admin
Sun May 24, 2026 5:12 am
Forum: Oracle APEX
Topic: Installing Oracle APEX 26.1 with ORDS 26.1 and Data Reporter on Oracle Database 26ai Free
Replies: 1
Views: 75418

Installing Oracle APEX 26.1 with ORDS 26.1 and Data Reporter on Oracle Database 26ai Free

Oracle APEX 26.1 is the latest release of Oracle's low code development platform. This article walks through the complete installation on Oracle Database 26ai Free edition on Windows including all errors encountered and how they were resolved.


What is Data Reporter

Data Reporter is a new ...
by admin
Sat May 02, 2026 6:26 am
Forum: Oracle APEX
Topic: How to apply patch?
Replies: 0
Views: 29654

How to apply patch?

Oracle APEX 24.2 Patch 16 is a cumulative patch. This means it includes all fixes and updates from the previous patches in the 24.2 release series.

If you are currently on version 24.2.1/24.2.10 and want to upgrade to 24.2.16, you only need to apply Patch 16. There is no requirement to install each ...
by admin
Thu Feb 19, 2026 9:27 am
Forum: Oracle Forms & Reports
Topic: How to install Oracle Forms 10g on Win10,11
Replies: 0
Views: 80219

How to install Oracle Forms 10g on Win10,11

If you want to install Oracle Forms 10g on windows 10,11 here are the steps you need to perform,

1. Get Oracle Forms 10g and it will have Disk_1 & Disk_2.

forms1.png

2. Now ideally you should double click setup.exe and installation should start and finish but this is not the case. Oralce forms ...
by admin
Sat Jan 31, 2026 1:03 pm
Forum: Oracle APEX
Topic: PDF Reports in Oracle APEX using jsPDF – Simple, Matrix & Master-Detail Source Code Included
Replies: 0
Views: 39564

PDF Reports in Oracle APEX using jsPDF – Simple, Matrix & Master-Detail Source Code Included

You will learn how to generate different report formats step by step, including:

Simple PDF report
Matrix (tabular) report
Master–Detail PDF report

The video focuses on structuring data properly and rendering it into well-formatted PDF documents using jsPDF, making it useful for ERP, reporting ...
by admin
Sun Jan 04, 2026 3:10 am
Forum: Oracle APEX
Topic: Create your own Captcha for Security on Login Page
Replies: 2
Views: 99604

Re: Create your own Captcha for Security on Login Page

Hi, You may be missing steps. thanks
by admin
Fri Dec 19, 2025 1:58 pm
Forum: Oracle APEX
Topic: Create your own Captcha for Security on Login Page
Replies: 2
Views: 99604

Create your own Captcha for Security on Login Page

Providing Captcha on your Oracle APEX login page is a security requirement which any public application must have to handle automated logins.


Captcha1.png

Best practices for CAPTCHA

Generate the code
Use a random string for the CAPTCHA Mix letters and numbers (avoid ambiguous characters ...
by admin
Sat Dec 13, 2025 2:46 am
Forum: Application DBA & System Administration
Topic: RMAN Implementation & Important Commands
Replies: 0
Views: 86938

RMAN Implementation & Important Commands

RMAN connection to target database
rman target /

Check database structure using RMAN
REPORT SCHEMA

Display current RMAN configuration
SHOW ALL

Enable automatic control file backup
CONFIGURE CONTROLFILE AUTOBACKUP ON

Set disk backup location format
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/u01 ...
by admin
Sat Dec 06, 2025 4:19 am
Forum: Oracle APEX
Topic: Ollama Ai LLM Commands
Replies: 0
Views: 43119

Ollama Ai LLM Commands

https://ollama.com/

serve Start the Ollama service so models can run
Sample: ollama serve

create Build a new model from a Modelfile for custom LLMs
Sample: ollama create mymodel -f Modelfile

show Display full details of a model such as parameters and template
Sample: ollama show llama3

run ...
by admin
Wed Nov 12, 2025 7:33 am
Forum: Oracle APEX
Topic: Barcode PNG Generation Script
Replies: 0
Views: 46703

Barcode PNG Generation Script

DECLARE
l_data VARCHAR2(4000);
l_qr_blob BLOB;
l_ean8 VARCHAR2(8);
BEGIN
FOR r IN (
SELECT empno,
NVL(ename, '') ename,
NVL(job, '') job
FROM emp
)
LOOP
IF :P27_BARCODE_TYPE = 'QRCODE' THEN
-- QR Code: can use full data
l_data := TO_CHAR(r.empno) || ',' || r.ename || ',' || r.job;
l ...