Search found 2110 matches

by admin
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: 89724

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 ...
by admin
Fri Aug 29, 2025 3:35 am
Forum: Oracle APEX
Topic: Compiling Invalid Objects Scripts
Replies: 0
Views: 93197

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 ...
by admin
Thu Aug 28, 2025 6:08 am
Forum: Oracle APEX
Topic: Public Holidays adjustment during Leaves
Replies: 2
Views: 113734

Re: Public Holidays adjustment during Leaves

You are welcome. thanks
by admin
Thu Aug 28, 2025 5:47 am
Forum: Oracle APEX
Topic: Login Page Region Alignment on the screen
Replies: 0
Views: 11452

Login Page Region Alignment on the screen

Paste the following code in the Theme Roller or Incline CSS of login page,

.t-Login-region {
position: fixed;
top: 25%;
left: 2%;
}

login_left.png
by admin
Sat Aug 09, 2025 5:54 am
Forum: Application DBA & System Administration
Topic: NLS_LANGUAGE FOR R12 In client/SQL Developer
Replies: 0
Views: 8667

NLS_LANGUAGE FOR R12 In client/SQL Developer

If you are connected with Oracle EBS R12 instance and trying to get data but it is showing no record then do this setting,

1. select * from hr_operating_units;
no data

2.ALTER SESSION SET NLS_LANGUAGE= 'AMERICAN';

select * from nls_session_parameters;

3. select * from hr_operating_units;
Now it ...
by admin
Mon Aug 04, 2025 1:57 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 34375

Re: FBR Pakistan API Call

Please check my video on SSL,

https://youtu.be/77jfvRe2GqQ
by admin
Thu Jul 31, 2025 5:13 am
Forum: Oracle APEX
Topic: How to reset Identiity Column Starting Value?
Replies: 0
Views: 11532

How to reset Identiity Column Starting Value?

This topic will help you to reset or continue Oracle identity sequences without dropping the table or manually altering internal sequences.

What is an Identity Column?

An identity column in Oracle is used to automatically generate sequential values, typically for a primary key. When you define ...
by admin
Fri Jul 25, 2025 8:18 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 34375

Re: FBR Pakistan API Call

You skipped ACL or wrongly configured your database not allowing your code to go out im simple words

My Video explaining ACL
https://youtu.be/XKmI4s4pIDA


ORA-29273: HTTP request failed
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES", line 681
ORA-06512: at "APEX_240200.WWV_FLOW_WEB_SERVICES ...
by admin
Fri Jul 25, 2025 5:48 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 34375

Re: FBR Pakistan API Call

main post above update you can find detail at the bottom. thanks
zainhanaan wrote: Thu Jul 24, 2025 6:24 pm what about 11g and 12.1 . your mention code is for oracle apex only
by admin
Sat Jul 19, 2025 6:17 am
Forum: Oracle APEX
Topic: Master Detail using RESTful Web Services Code and Demo
Replies: 0
Views: 12161

Master Detail using RESTful Web Services Code and Demo

A Master-Detail relationship is a common design pattern in application development where two sets of data are related hierarchically. In this context, the Master represents a high-level record, such as an Invoice, while the Detail contains the associated lower-level records, such as the Invoice ...
by admin
Mon Jul 14, 2025 10:07 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 34375

Re: FBR Pakistan API Call

Upgrade your database. Thanks
by admin
Wed Jul 09, 2025 2:31 am
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 34375

Re: FBR Pakistan API Call

Dear unable to understand as certificate file attached just rename it. Thanks
by admin
Mon Jul 07, 2025 12:14 pm
Forum: Oracle APEX
Topic: FBR Pakistan API Call
Replies: 10
Views: 34375

FBR Pakistan API Call

First register and get token which might take some time may be upto 2 days,

User Manual
https://download1.fbr.gov.pk/Docs/20256251162757102DIUserManualV1.4.pdf

Technical Document
https://download1.fbr.gov.pk/Docs/20256201364855300TechnicalDocumentationforDIAPI.pdf

You can download here if ...
by admin
Tue Jul 01, 2025 4:26 am
Forum: Oracle APEX
Topic: Keeping Network ACLs Alive Across Oracle APEX Upgrades
Replies: 0
Views: 17848

Keeping Network ACLs Alive Across Oracle APEX Upgrades

When you patch or upgrade Oracle APEX, Oracle creates a new internal schema whose name embeds the APEX version, e.g.

APEX release Internal schema
22.2 APEX_220200
23.1 APEX_230100
24.1 (future) APEX_240100

If you granted network‑access privileges to the old schema (via XML ACLs in 11 g or unified ...
by admin
Fri May 23, 2025 2:38 am
Forum: Oracle APEX
Topic: Process only Selected Rows in IG Solution
Replies: 0
Views: 12795

Process only Selected Rows in IG Solution

1. Create an IG
2. Create a Text Item to Keep selected Values like in my case P2_SELECTED
3. Create Dynamic Action on IG > Selection Change IG and write following Javascript

var model = this.data.model;
var selectedRecords = this.data.selectedRecords;
var idList = [];

for (var i = 0; i ...