Archives
-
Configuring Oracle Identity and Access Management components
Tweet Oracle Fusion Applications Installation: Configuring Oracle Identity and Access Management components Previous: Installing Oracle Identity and Access Management Components Configuring Oracle Identity Management components” can be divided into following tasks. Configuring the Web Tier Create Weblogic Domain for Identity Management Extending the Domain with Oracle Internet Directory Extending the Domain with Oracle Directory Service Manager [...]
Feb 6th, 2012 | Filed under Fusion Applications Provisioning, Fusion Middleware, HTTP Server, Identity Management, Installing Oracle Applications, Linux/Unix/Solaris, Oracle, Oracle Applications, Oracle Applications DBA, Oracle DBA, Oracle Fusion Applications, Oracle Internet Directory, WebgateTags: access manager, Administration, fusion 11g, fusion applications installation, guide, HTTP server, identity management, installation, installing, installing oracle fusion applications, oracle applications, Oracle Applications DBA, oracle apps, oracle directory service, Oracle fusion applications, oracle internet directory, virtual directory, webgate -
Creating a new Provisioning Plan
Tweet Oracle Fusion Applications Installation: Creating a new Provisioning Plan Previous: Preparing Identity and Policy Store In order to create a new fusion applications provisioning plan we should launch the provisioning wizard again from <framework_location>/provisioning/bin <framework_location> is same what we mentioned in previous post. i.e. /app/fusion [oracle@fusion $ cd /app/fusion/provisioning/bin [oracle@fusion bin]$ ./provisioningWizard.sh On Welcome screen, click Next Select [...]
Feb 3rd, 2012 | Filed under Application server, Fusion Applications Provisioning, Installing Oracle Applications, Oracle, Oracle Applications, Oracle Applications DBA, Oracle DBA, Oracle Fusion Applications -
Running Repository Creation Utility for Oracle Identity Management components
Tweet Oracle Fusion Applications installation: Running Repository Creation Utility (RCU) for Oracle Identity Management Components Previous: Running Oracle Fusion Applications Repository Creation Utility (Applications RCU) Important Note: We are NOT creating a separate database to host Oracle Identity Management schemas. Instead we will create these schemas in our Fusion Database (fusiondb) itself since the schema names [...]
-
PL/SQL quick reference
Tweet Oracle PL/SQL Quick Reference PL/SQL Block Structure DECLARE –Optional –Variables, Cursors, User-defined exceptions BEGIN –Mandatory –SQL statements –PL/SQL statements EXCEPTION –Optional –Actions to perform when errors occur END; –Mandatory
Jun 24th, 2009 | Filed under Database programming, Oracle, Oracle Database, Oracle developers, Oracle PL/SQL -
Oracle SQL Quick reference
Tweet Oracle SQL Quick Reference SELECT Query Statement SELECT [DISTINCT] {*, column [alias],…} FROM table WHERE condition(s)] ORDER BY {column, exp, alias} [ASC|DESC]] NOTE: Avoid using DISTINCT with large table as it first does sorting of all the rows and then eliminates duplicate rows, so need a full table scan and thus it’s very slow. [...]
Jun 24th, 2009 | Filed under Oracle, Oracle SQL