Search found 2122 matches
- Sat May 30, 2026 9:41 am
- Forum: Oracle APEX
- Topic: Oracle APEX 26.1 - Generative AI Agent with Sales Analytics
- Replies: 0
- Views: 120
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 ...
- 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: 238
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 ...
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 ...
- 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: 0
- Views: 23373
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 ...
What is Data Reporter
Data Reporter is a new ...
- Sat May 02, 2026 6:26 am
- Forum: Oracle APEX
- Topic: How to apply patch?
- Replies: 0
- Views: 16654
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 ...
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 ...
- Thu Feb 19, 2026 9:27 am
- Forum: Oracle Forms & Reports
- Topic: How to install Oracle Forms 10g on Win10,11
- Replies: 0
- Views: 47498
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 ...
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 ...
- 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: 29727
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 ...
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 ...
- Sun Jan 04, 2026 3:10 am
- Forum: Oracle APEX
- Topic: Create your own Captcha for Security on Login Page
- Replies: 2
- Views: 27216
Re: Create your own Captcha for Security on Login Page
Hi, You may be missing steps. thanks
- Fri Dec 19, 2025 1:58 pm
- Forum: Oracle APEX
- Topic: Create your own Captcha for Security on Login Page
- Replies: 2
- Views: 27216
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 ...
Captcha1.png
Best practices for CAPTCHA
Generate the code
Use a random string for the CAPTCHA Mix letters and numbers (avoid ambiguous characters ...
- Sat Dec 13, 2025 2:46 am
- Forum: Application DBA & System Administration
- Topic: RMAN Implementation & Important Commands
- Replies: 0
- Views: 64074
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 ...
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 ...
- Sat Dec 06, 2025 4:19 am
- Forum: Oracle APEX
- Topic: Ollama Ai LLM Commands
- Replies: 0
- Views: 31804
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 ...
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 ...
- Wed Nov 12, 2025 7:33 am
- Forum: Oracle APEX
- Topic: Barcode PNG Generation Script
- Replies: 0
- Views: 35812
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 ...
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 ...
- Mon Nov 10, 2025 4:00 am
- Forum: Oracle APEX
- Topic: ComboBox Code
- Replies: 0
- Views: 34593
ComboBox Code
DECLARE
v_input VARCHAR2(4000) := :P30_DEPTNAME_MANUAL;
v_deptno NUMBER;
v_deptno_list VARCHAR2(4000);
v_exists NUMBER;
BEGIN
FOR rec IN (
SELECT TRIM(COLUMN_VALUE) AS dept_name
FROM TABLE(APEX_STRING.SPLIT(v_input, ':'))
WHERE TRIM(COLUMN_VALUE) IS NOT NULL
)
LOOP
-- Check if ...
- Sun Sep 14, 2025 7:03 am
- Forum: Application DBA & System Administration
- Topic: Google Account Hacked? Recover Gmail, YouTube, Google Drive, AdSense
- Replies: 0
- Views: 160877
Google Account Hacked? Recover Gmail, YouTube, Google Drive, AdSense
Has your Google account been hacked? Don’t worry in this video I’ll show you how to recover your Gmail, YouTube channel, Google Drive, AdSense, and all linked services.
✔ Secure your Gmail after a hack and reset your password
✔ Recover a hacked YouTube channel and protect your content
✔ Regain ...
✔ Secure your Gmail after a hack and reset your password
✔ Recover a hacked YouTube channel and protect your content
✔ Regain ...
- Fri Aug 29, 2025 3:35 am
- Forum: Oracle APEX
- Topic: Compiling Invalid Objects Scripts
- Replies: 0
- Views: 178847
Compiling Invalid Objects Scripts
1)
BEGIN
DBMS_UTILITY.compile_schema
(
schema => 'your schema nme', compile_all => FALSE
);
END;
/
2)
SELECT 'ALTER ' || OBJECT_TYPE || ' ' || OWNER || '.' || OBJECT_NAME || ' COMPILE;'
FROM DBA_OBJECTS
WHERE STATUS = 'INVALID';
3)
SET SERVEROUTPUT ON
DECLARE
v_sql VARCHAR2(200);
BEGIN
FOR ...
BEGIN
DBMS_UTILITY.compile_schema
(
schema => 'your schema nme', compile_all => FALSE
);
END;
/
2)
SELECT 'ALTER ' || OBJECT_TYPE || ' ' || OWNER || '.' || OBJECT_NAME || ' COMPILE;'
FROM DBA_OBJECTS
WHERE STATUS = 'INVALID';
3)
SET SERVEROUTPUT ON
DECLARE
v_sql VARCHAR2(200);
BEGIN
FOR ...
- Thu Aug 28, 2025 6:08 am
- Forum: Oracle APEX
- Topic: Public Holidays adjustment during Leaves
- Replies: 2
- Views: 144391
Re: Public Holidays adjustment during Leaves
You are welcome. thanks