SELECT owner, name, type, line, text
FROM dba_source
WHERE instr(UPPER(text), UPPER('string')) > 0;
Qaium's IT Demonstration
Muhammad Abdul Qaium is a Database Engineer/Oracle Apex Developer/BI Developer (in Connecticut, USA) who is an Oracle Certified Cloud Architect Professional, OCI Autonomous DB specialist as well as Oracle Business Intelligence Foundation Suite 11g Certified Implementation Specialist with extensive expertise in Database design , PL/SQL, Oracle Apex, Microsoft SSIS, ETL, Power BI, Qlik Sense, BI Publisher, Jasper Report, OBIEE. Contact: qaiuminfo@gmail.com
Search This Blog
Wednesday, February 26, 2025
Search String Inside Oracle Database Objects SQL
Sunday, February 16, 2025
How to Implement Password Hide/Show in Login Page
Follow these steps to enable users to toggle between hiding and showing their password on the login page.
Step 1: Add the Function and Global Variable
First, you need to add the following JavaScript function and global variable to your login page.
function viewPW() {
var Vpw = document.getElementById('P9999_PASSWORD');
// The password input field
var VsetIcon = document.getElementById('pwItem');
// The icon for toggling visibility
if (Vpw.type !== 'password') {
// Hide password: change type to 'password' and show the eye icon
Vpw.type = 'password';
VsetIcon.className = 'fa fa-eye pw-item-icon';
// 'eye' icon
} else {
// Show password: change type to 'text' and show the 'eye-slash' icon
Vpw.type = 'text';
VsetIcon.className = 'fa fa-eye-slash pw-item-icon'; // 'eye-slash' icon
}
}
Step 2: Add the Inline CSS
Next, insert this inline CSS to style the visibility toggle icon and place it to the right of the password input.
.pw-item-icon {
float: right;
margin-left: -30px;
margin-top: 11px;
position: relative;
z-index: 1;
}
Step 3: Add the Toggle Icon to Your Password Input Field
Finally, insert the following HTML code right after your password input field. This code will create the eye icon that the user can click to toggle password visibility.
<span id="pwItem" class="fa fa-eye pw-item-icon" onClick="viewPW()"
aria-hidden="true"></span>
Saturday, February 15, 2025
Automatic ORDS start / Create a windows service to open a software automatically
Step 1: Create the Batch File
- Open a text editor (like Notepad) and add the following code, replacing the path with your Oracle ORDS directory:
@echo off
cd C:\Oracle\app\ords
java -jar ords.war
pause
- Save the file with a
.bat
extension (e.g.,start_ords.bat
).
Step 2: Test the Batch File
-
Double-click the
.bat
file to ensure it starts Oracle ORDS properly. -
Once confirmed, move the file to the ORDS installation directory (e.g.,
C:\Oracle\app\ords
).
Step 3: Download NSSM
-
Go to the following link and download NSSM (Non-Sucking Service Manager) version 2.24:
-
Extract the contents of the ZIP file to a folder, then move the extracted folder to your C: drive.
Step 4: Install ORDS as a Service
-
Navigate to the folder where NSSM was extracted (
C:\nssm-2.24\win64
). -
In the file explorer, hold
Shift
and right-click inside the folder. Select "Open command window here" or "Open PowerShell window here." -
In the command prompt, type:
nssm.exe install
Step 5: Configure the Service
- In the NSSM window that opens, browse to the
.bat
file you created earlier. - Set the "Shutdown" option to "None."
- Provide a service name (e.g.,
ORDS_Service
) and click "Install."
Step 6: Set the Service to Start Automatically
- Open the Services application (press
Windows + R
, typeservices.msc
, and hit Enter). - Find the service you just created (
ORDS_Service
), right-click it, and select "Properties." - Set the "Startup type" to "Automatic" and click "OK."
That’s it! ORDS should now start automatically as a service whenever your system restarts.
Let me know if you need any more tweaks or further details!
Thursday, February 13, 2025
Create List from Navigation Menu
select null c1_level,
ENTRY_TEXT c2_name_for_label,ENTRY_TARGET c3_target_url,
null c4_is_current,
ENTRY_IMAGE c5_icon_name,
null c6_icon_attrs,
null c7_icon_alt_text,
null c8_user_attr1_badge_text
from APEX_APPLICATION_LIST_ENTRIES where LIST_NAME='Desktop Navigation Menu' and APPLICATION_ID=147 and PARENT_ENTRY_TEXT='Tables & Queries';
Saturday, January 25, 2025
Java to Oracle database Connection Using JDBC
Saturday, January 18, 2025
Confirmation Alert Before Submit / Conditional Button execution using one button JavaScript in Oracle Apex
Using below code you can take a confirmation before execution even you can do conditional button press and execution.
Friday, January 17, 2025
Interactive Grid Alternating Row Color
1. Put the CSS into Page properties Inline->
.customAlternatingRow .a-IRR-table tr:nth-child(odd) td{background-color:#bac3cc}
.customAlternatingRow .a-IRR-table tr:nth-child(even) td{background-color:#dceaf7}
.customRowHighlight .a-IRR-table tr:hover td{background-color:rgba(103,159,214,.55)}Tuesday, January 14, 2025
Audit Log Sample Trigger
create or replace TRIGGER "SCHEMA"."UDS_CALL_LOG_INFO_BIU"
BEFORE INSERT OR UPDATEON "APEX_UDS"."UDS_CALL_LOG_INFO"
FOR EACH ROW
BEGIN
IF INSERTING THEN
IF :NEW.MASTER_ID IS NULL THEN
SELECT UDS_CALL_LOG_INFO_SEQ.NEXTVAL
INTO :NEW.MASTER_ID
FROM DUAL;
END IF;
:NEW.CREATED_DATE := LOCALTIMESTAMP;
:NEW.CREATED_BY:=nvl(v('APP_USER'),USER);
ELSIF UPDATING THEN
:NEW.EDIT_DATE := LOCALTIMESTAMP;
:NEW.EDITED_BY:=nvl(v('APP_USER'),USER);
END IF;
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line ('An error was encountered '||SQLCODE||' -ERROR- '||SQLERRM);
END UDS_CALL_LOG_INFO_BIU;
Monday, December 9, 2024
PDF to Text Covert by Oracle Apex
Here are the steps to convert and get the character into a region by Oracle Apex.
Step1. Create a page and Copy-Pest the below code into Page Function and Global Variable Declaration
Saturday, November 30, 2024
Online Oracle Database Live SQL Developer , free SQL/DB (23ai!), no sign-up required
Online Oracle Database and SQL Developer. You can practice Oracle SQL PL/SQL on online SQL Developer for free. Even no sign-up is required.
Search String Inside Oracle Database Objects SQL
SELECT owner, name, type, line, text FROM dba_source WHERE instr(UPPER(text), UPPER('string')) > 0;
-
1. Make a Region with PL/SQL Dynamic Content type . ========== 2. Assign ID to the region using HTP.p ( <span id="TEST_ID...
-
Create Excel File From Classic Report in Oracle Apex Using Java Script 1. Upload File Download File 2. Copy Pest the Code <!DO...