Using the BPEL Service Engine in a Project

ProcedureTo create an Oracle user

  1. Log into Oracle as sysdba (from SQLPlus, connect using connect sys/manager@machine-name as sysdba).

  2. Execute the following script with default values:

    Click here to download the annotated scripts.


    CREATE TABLESPACE bpelsedb
    
    DATAFILE 'bpelsedb.dat' SIZE 512M REUSE
    
    AUTOEXTEND ON NEXT 2048M MAXSIZE UNLIMITED;
    
    CREATE USER bpelse_user
    
    IDENTIFIED BY bpelse_user
    
    DEFAULT TABLESPACE bpelsedb
    
    QUOTA UNLIMITED ON bpelsedb
    
    TEMPORARY TABLESPACE temp
    
    QUOTA 0M ON system;
    
    GRANT CREATE session to bpelse_user;
    
    GRANT CREATE table to bpelse_user;
    
    GRANT CREATE procedure to bpelse_user;
    
    GRANT select on sys.dba_pending_transactions to bpelse_user;
    
    GRANT select on sys.pending_trans$ to bpelse_user;
    
    GRANT select on sys.dba_2pc_pending to bpelse_user;
    
    GRANT execute on sys.dbms_system to bpelse_user;
    
    GRANT select on SYS.dba_2pc_neighbors to bpelse_user;
    
    GRANT force any transaction to bpelse_user;

    Note –

    You can also connect using NetBeans IDE or a number of SQL clients by entering the username sys as sysdba. The password should be the same as that of the system user. You can also change the user, tablespace, datafile name, and size/quota according to your requirements.