Tags: oracle

Oracle Application Server 10g Installation Guide

Oracle Send feedback »
Oracle Application Server 10g Installation.pdf more »

How To Encrypt your passwords in Oracle Application Server

Technology, Oracle Send feedback »
Add the following entry to data-sources.xml <data-source class="com.evermind.sql.DriverManagerDataSource" name="jdbc/Oracle" location="jdbc/OracleCoreDS" xa-location="jdbc/xa/OracleXADS" ejb-location="jdbc/OracleDS" connection-driver="oracle.jdbc.dr… more »

Oracle: HOW TO SELECT USERNAME AND CHECK THERE STATUS

Technology, Oracle Send feedback »
select username,created,account_status from dba_users where username like '-----%' order by created more »

Oracle: HOW TO CREATE USER AND GIVE GRANTS

Technology, Oracle Send feedback »
create user [username] identified by [password] default tablespace [tablespace name which has free space acc to statement 8] quota unlimited on [same tablespace name]; more »

Oracle: HOW TO ALTER THE SPFILE TO INCLUDE CONTROL FILES

Technology, Oracle Send feedback »
alter system set control_files='path.ctl','path.ctl' scope=spfile; more »