Oracle Java Blog
-
Internet Resources for Learning Oracle ADF and JDeveloper
https://www.quora.com/Good-resource-in-internet-to-learn-using-ADF-in-JDeveloper
-
Unexpire Oracle Password
sourc: http://www.dba-oracle.com/t_unexpire%20password.htm
Step 1: Create a profile to use by all Oracle ID's: create profile my_profile limit password_life_time unlimited; Step 2: Alter … more
-
Difference between Physical standby and Logical standby database
source: http://dbatrainer.com/difference-between-physical-standby-and-logical-standby-database/
Data Guard Apply process in standby database can apply redo information directly and in that case it … more
-
Oracle Fine-Grained Auditing is Only Available in Enterprise Edition
https://docs.oracle.com/cd/E18283_01/appdev.112/e16760/d_fga.htm
You can check version by using:
SELECT * FROM V$VERSION
The word Enterprise will be missing if it isn't the Enterprise Edition. more
-
Oracle Pragma Autonomous Transaction
CREATE FUNCTION FN_MYAPP_WS_LOGGERreturn VARCHAR2as PRAGMA AUTONOMOUS_TRANSACTION;BEGIN
/* needs grant select on v$session (or any dictionary), but not via role */INSERT INTO MYAPP_WS_LOGGERSELECT * … more
-
Oracle Basic Auditing
selectto_number(substr(dbms_session.unique_session_id,1,4),'XXXX') as mysid, sys_context('USERENV','SID') as my_current_session, sys_context('USERENV','SESSIONID') as my_audsid,sysdate as now, case … more
-
Oracle Auditing and Fine Grained Auditing (FGA)
https://technology.amis.nl/2005/09/26/select-trigger-in-oracle-database-introducing-fine-grained-auditing/
http://www.dba-oracle.com/t_audit_sql_select_statements.htm
http://www.dba-oracle.com/ … more
-
JDeveloper Error: weblogic.transaction.internal.TimedOutException: Transaction timed out after <x> seconds
Try increasing the domain's JTA Timeout : open the weblogic console, go to domain, services, JTA ; Change 'Timeout Seconds' from 30 to 3000. In config.xml this should shown as:
<JTA TimeoutSeconds="3 … more
-
Jdeveloper Configuration: Setting the JAVA_HOME variable
Modify the jdeveloper configuration file(s). Default location will be:
C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev.conf
also modify the setDomainEnv.cmd file in the user appdata … more
-
How to Uninstall JDeveloper
Uninstaller at: JDEV_HOME\oui\bin\
Source: https://docs.oracle.com/middleware/1212/jdev/OJDIG/deinstall.htm#OJDIG185
-
Error while deploying application to Jdeveloper: CreateProcess error=206, The filename or extension is too long
I got an additional consuming test webpage to work while testing a web service (after adding the java directory to the PATH variable and putting it to the front of the PATH variable). However I … more
-
Consuming JDeveloper Oracle ADF Web Services
https://blogs.oracle.com/fadevrel/how-to-query-data-using-the-web-services-find-operation
-
JDeveloper Deployment Errors
http://madhunitk.blogspot.com.au/2013/06/adf-web-application-deployment-error.html
-
Remove Deployment Profiles From JDeveloper
https://technology.amis.nl/2017/07/03/remove-deploy-target-from-jdeveloper/
-
Developing a Web Service from a PL/SQL Package with JDeveloper
http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/202336.htm
https://technology.amis.nl/2010/12/29/quickly-creating-reploying-and-testing-a-webservice-interface-for-adf-business- … more
-
Oracle Enterprise Manager Console: How to Recreate
the solution is simple, you have to unplug the network cable and start the console service ( you have to do it every time you want to start the console)
emctl start dbconsole
if console still … more
-
How to delete and recreate Integrated WebLogic Server Default Domain in JDeveloper
http://www.catgovind.com/jdeveloper/how-to-delete-and-recreate-integrated-weblogic-server-default-domain-in-jdeveloper/
https://perrohunter.com/how-to-delete-de-defaultdomain-of-an-integrated- … more
-
Oracle Discoverer Command Line Interface
https://docs.oracle.com/cd/E28280_01/bi.1111/b40108/ref.htm#BIDEU141 more
-
Oracle version control and change control products
http://www.dba-oracle.com/t_version_control_change_control.htm more
-
Change Password on Oracle APEX
Change own password:
BEGIN APEX_UTIL.CHANGE_CURRENT_USER_PW ('Password'); END;
or as sys:
@apxchpwd more