Oracle impdp (import data pump)

1). Create a directory: 2). Copy your database to the directory C:\ 3). Issue the impdp command 1impdp user/secret@ORACLE11G schemas=USERSCHEMA directory=export_dir dumpfile=export.dmp logfile=output.log

Install 11g (11.1.0.6) Oracle Client on Windows 7

http://msutic.blogspot.com/2009/08/how-to-instal-oracle-client-11g-on.html Shortly after initiating installation of Oracle Client 11g (11.1.0.6.0) installation stopped on prerequisite checks with error: Checking operating system requirements … Expected result: One of 5.0,5.1,5.2,6.0 Actual Result: 6.1 …

Rebuild INVALID Oracle Objects

1234567891011SELECT ( case when object_type = ‘VIEW’ THEN ‘ALTER VIEW ‘ || object_name || ‘ COMPILE;’ when object_type = ‘PROCEDURE’ THEN ‘ALTER PROCEDURE ‘ || object_name || ‘ COMPILE;’ when …

Call Java from PLSQL

1). Create a Java class 12345public class EDCTest1 {    public static String getsometext() {       return "this is test text";    } } 2). Load the class …