Search found 2093 matches

by admin
Sat May 17, 2025 3:56 am
Forum: Oracle APEX
Topic: Vector Embedding using ONNX Model in Oracle 23ai
Replies: 0
Views: 16

Vector Embedding using ONNX Model in Oracle 23ai

Oracle Database 23ai

Oracle Database 23ai introduces a powerful integration of AI within enterprise databases. Unlike public Large Language Models such as ChatGPT, Cohere, Google Gemini, or Meta LLaMA, which are limited to their training data, Oracle 23ai enables the enhancement of LLMs with real ...
by admin
Thu May 15, 2025 3:21 am
Forum: Oracle APEX
Topic: How to add select or select all checkboxes in Interactive Report?
Replies: 0
Views: 29

How to add select or select all checkboxes in Interactive Report?

It is very normal to use Interactive Report and process selective records by giving checkboxes to users. Users can select single, multiple or can use select all and then process selected lines. By default till Oracle APEX 24.2.5 this functionality is not avaiable so here are the steps to enable such ...
by admin
Mon May 05, 2025 11:27 am
Forum: Oracle APEX
Topic: Weekends and Time range in Calendar?
Replies: 0
Views: 85

Weekends and Time range in Calendar?

Select calendar region then attriburtes and Initialization JavaScript Function

function(poptions) {

// Show weekends
poptions.weekends = true;

// Days of the week: 0=Sun, 1=Mon, 2=Tue, 3=Wed, 4=Thu, 5=Fri, 6=Sat
poptions.firstDay = 1;

// Show week numbers in the calendar
poptions ...
by admin
Sat May 03, 2025 2:48 am
Forum: Oracle APEX
Topic: Refresh Dynamic Contents region on Dialog Page Close
Replies: 0
Views: 77

Refresh Dynamic Contents region on Dialog Page Close

In Oracle APEX if you need to refresh Dynamic Content Region on the Source/calling page when a called dialog page closed then following these steps,
Refresh_DC.jpg
by admin
Thu Apr 10, 2025 3:27 am
Forum: Oracle APEX
Topic: Creating DML Error log table for Dataload errors
Replies: 0
Views: 581

Creating DML Error log table for Dataload errors

begin
DBMS_ERRLOG.CREATE_ERROR_LOG (dml_table_name => 'EMP');
end;

it will create table for dataload error,

CREATE TABLE "ERR$_EMP"
( "ORA_ERR_NUMBER$" NUMBER,
"ORA_ERR_MESG$" VARCHAR2(2000),
"ORA_ERR_ROWID$" UROWID (4000),
"ORA_ERR_OPTYP$" VARCHAR2(2),
"ORA_ERR_TAG$" VARCHAR2(2000 ...
by admin
Tue Apr 08, 2025 12:35 pm
Forum: Oracle APEX
Topic: Avatar in classic report
Replies: 0
Views: 298

Avatar in classic report

{with/}
TYPE:=INITIAL
IMAGE:=#AVATAR#
SIZE:=t-Avatar--lg
SHAPE:=t-Avatar--circle
CSS_CLASSES:=u-color-29
{apply THEME$AVATAR/}
by admin
Thu Mar 27, 2025 5:35 am
Forum: Oracle APEX
Topic: Disabled lnading page
Replies: 0
Views: 1087

Disabled lnading page

by admin
Wed Mar 19, 2025 4:13 am
Forum: Oracle APEX
Topic: Pagination in Interactive Report or limits records to display
Replies: 0
Views: 592

Pagination in Interactive Report or limits records to display

1: Run the Interactive report and go to Actions button
2: Select Rows per page choose desired value
3: select Save Report and select default report settings for all users
by admin
Sun Mar 16, 2025 8:17 am
Forum: Oracle APEX
Topic: Setting up cohere AI HTTP 401: Unauthorized?
Replies: 0
Views: 602

Setting up cohere AI HTTP 401: Unauthorized?

Setting up Cohere AI in Oracle APEX

Step 1
Register and get API from Cohere.com

Step 2
Download and install SSL certificates from Cohere.com and install in your Oracle Wallet.

VIDEO: Oracle Wallet Creation, SSL Certificate Import, and Secure Web Services Integration in Oracle APEX
https://youtu ...
by admin
Sat Feb 08, 2025 8:50 am
Forum: Oracle APEX
Topic: KANBAN IN ORACLE APEX
Replies: 1
Views: 1242

Re: KANBAN IN ORACLE APEX

Dear there is a Plugin just use it. thanks
by admin
Sat Feb 08, 2025 6:09 am
Forum: Oracle APEX
Topic: Hide Close X from a dialog page
Replies: 0
Views: 1024

Hide Close X from a dialog page

Step 1
On calling page inline add this

.no-close .ui-dialog-titlebar-close {
display: none;
}

Step 2
then on the dialog page properties go to Dialog > CSS Classes > Enter no-close
by admin
Sun Jan 19, 2025 5:34 am
Forum: Oracle APEX
Topic: Oracle APEX 24.2: Exploring Database Object Dependencies | Features, Benefits & Demo
Replies: 0
Views: 1069

Oracle APEX 24.2: Exploring Database Object Dependencies | Features, Benefits & Demo

In this video, we dive into the new Database Object Dependencies feature introduced in Oracle APEX 24.2. Discover how this powerful tool can help you track and manage the relationships between your APEX applications and the underlying database objects.

Learn when and where to use it, explore its ...
by admin
Tue Dec 31, 2024 9:45 am
Forum: Oracle APEX
Topic: Oracle APEX: Modifying and Customizing Pages and Reports – Adding Columns to Tables
Replies: 0
Views: 1035

Oracle APEX: Modifying and Customizing Pages and Reports – Adding Columns to Tables

Description:
In this video, we will walk you through the process of modifying and customizing Oracle APEX Pages and Reports, with a focus on adding new columns to a table and displaying them in various types of reports. You’ll learn how to:

Add a Column to an Existing Table

Step-by-step ...
by admin
Tue Dec 03, 2024 4:13 am
Forum: Oracle APEX
Topic: Oracle Wallet and SSL Certificate?
Replies: 0
Views: 1361

Oracle Wallet and SSL Certificate?

Explanation Video


Common Name: Enter the fully qualified domain name that you need to secure (www.yourdomain.com).
Organizational Unit: Enter a department such as 'Security' or 'IT'.
Organization: Enter the full legal name of your organization (DigiCert, Inc.).
Locality/City: Enter the city ...
by admin
Mon Dec 02, 2024 2:10 pm
Forum: Oracle APEX
Topic: Deleted Process still working in Background APEX 24.1.4?
Replies: 0
Views: 1097

Deleted Process still working in Background APEX 24.1.4?

If you are using Oracle APEX with Oracle Database 23ai Enterprise Edition Release 23.0.0.0.0 - Production Version 23.6.0.24.11 then if you deleted a process in a page and created new but still that delete process code will be working in the background. This issue noticed in APEX 24.1.4 in the cloud ...