Wednesday, 26 October 2016

-Djava.security.manager -DXL.HomeDir=. -Djava.security.policy=config\xl.policy -Djava.security.auth.login.config=config\authwl.conf -Dlog4j.configuration=config\log.properties -Djava.naming.provider.url=t3://idm.oracle.com:7701



eclipse error:

eclipse: cairo-misc.c:380: _cairo_operator_bounded_by_source: Assertion `NOT_REACHED' failed."

OIM Errors:

java.lang.NoClassDefFoundError: oracle/jrf/PortabilityLayerException

NoClassDefFoundError: org/springframework/jndi/JndiTemplate

Wednesday, 28 September 2016

To Set the ANT_HOME Variable on a Linux


In your home folder, open the .bash_profile file in the root directory.

Add the following lines to the file, substituting the directory where you installed Ant:

 ANT_HOME=/apache-install-dir/apache-ant-version
ANT_OPTS="-Xms256M -Xmx512M"
PATH=$PATH:$HOME/bin:$ANT_HOME/bin
export ANT_HOME ANT_OPTS PATH
To test the setting, type ant at a command prompt and press Return.

If a Build not found error message appears, you have correctly installed Ant.

If you do not see an error message, check the environment variable settings and make sure they are pointing to the correct directory locations.

Friday, 11 March 2016

How to list tables which are under TABLESPACE

select owner, table_name,tablespace_name

   from dba_tables

  where tablespace_name='DEV_OIM';

( or )



select table_name ,tablespace_name 

from user_tables

where tablespace_name='YOUR TABLE SPACE NAME';