Latest

  • Import & Export in Oracle database

    Imports and exports extract or insert an Oracle-readable copy of the actual data and structures in the database. The exports can be used to recover…

  • Eclipse Error – Specified VM install not found: type Standard VM

      I kept getting errors saying “Specified VM install not found” when trying to launch Ant build files though. Solution: Checked the launch configuration for…

  • Signing android application

    Keytool command that generates a private key: d:> keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 18250 Reference: 18250 is days…

  • ‘Who am I’ in Oracle

    Reports information about your current database context select ‘User: ‘|| user || ‘ on database ‘ || global_name,        ‘  (term=’||USERENV(‘TERMINAL’)||        ‘, audsid=’||USERENV(‘SESSIONID’)||’)’ as…