diff --git a/tools-ng/ecdc/eclipseConnector/dotclasspath b/tools-ng/ecdc/eclipseConnector/dotclasspath index d6872757f..c6420ca8d 100644 --- a/tools-ng/ecdc/eclipseConnector/dotclasspath +++ b/tools-ng/ecdc/eclipseConnector/dotclasspath @@ -1,177 +1,177 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools-ng/ecdc/local.build.properties b/tools-ng/ecdc/local.build.properties index b7f409f89..f97e2d841 100644 --- a/tools-ng/ecdc/local.build.properties +++ b/tools-ng/ecdc/local.build.properties @@ -26,6 +26,11 @@ # Set to 'modern' or 'jikes' #build.compiler=modern +# Set to Eclipse JDT batch compiler (requires ecj.jar) +#build.compiler=org.eclipse.jdt.core.JDTCompilerAdapter +#ant.build.javac.source=1.6 +#ant.build.javac.target=1.6 + # These properties apply to Javac and Jikes #compile.debug=on #compile.optimize=on diff --git a/tools-ng/ecdc/local.ccm.properties b/tools-ng/ecdc/local.ccm.properties index f1f385294..43de8d79f 100644 --- a/tools-ng/ecdc/local.ccm.properties +++ b/tools-ng/ecdc/local.ccm.properties @@ -5,3 +5,7 @@ ## Usually you will define your own specific bundle! #ccm.bundle.folder=${ccm.project.dir}/ccm-ldn-aplaws/bundles/devel +ccm.upgrade.package=ccm-xxx +ccm.upgrade.from.version=x.x.x +ccm.upgrade.to.version=y.y.y + diff --git a/tools-ng/ecdc/scriptlib/build-ccm.xml b/tools-ng/ecdc/scriptlib/build-ccm.xml index 70a0271d0..4ec76d5c9 100644 --- a/tools-ng/ecdc/scriptlib/build-ccm.xml +++ b/tools-ng/ecdc/scriptlib/build-ccm.xml @@ -15,47 +15,39 @@ Loading bundle ${ccm.bundle.folder} into ${ccm.home} - + - - + + value="${java.protocol.handler.pkgs}" /> + --> - - load ${applications} --init using ${ccm.bundle.folder}/cfg/integration.properties - + + load ${applications} --init using ${ccm.bundle.folder}/cfg/integration.properties + + + + + + + + load ${applications} + - - - - - - - load ${applications} - - - - + --> + @@ -86,5 +78,52 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools-ng/sql/oracle-se/create_tablespace.sql b/tools-ng/sql/oracle-se/create_tablespace.sql new file mode 100644 index 000000000..bb4e4405b --- /dev/null +++ b/tools-ng/sql/oracle-se/create_tablespace.sql @@ -0,0 +1,14 @@ +create tablespace aplaws + logging + datafile 'aplaws.dbf' + size 32m + autoextend on + next 32m maxsize 2048m + extent management local; +create tablespace aplaws + logging + datafile 'aplaws.dbf' + size 32m + autoextend on + next 32m maxsize 2048m + extent management local; \ No newline at end of file diff --git a/tools-ng/sql/oracle-se/create_user.sql b/tools-ng/sql/oracle-se/create_user.sql new file mode 100644 index 000000000..9c4ffd3d2 --- /dev/null +++ b/tools-ng/sql/oracle-se/create_user.sql @@ -0,0 +1,40 @@ +PROMPT Dropping USER ccm + + DROP USER ccm CASCADE; + +PROMPT Creating USER ccm + + CREATE USER ccm + IDENTIFIED BY ccm + DEFAULT TABLESPACE APLAWS + TEMPORARY TABLESPACE TEMP PROFILE DEFAULT + QUOTA UNLIMITED ON APLAWS + QUOTA 0 ON USERS; + + GRANT CONNECT, RESOURCE, QUERY REWRITE, CTXAPP, CREATE PROCEDURE, CREATE TRIGGER, CREATE TABLE, CREATE VIEW, CREATE SEQUENCE TO ccm; + + REVOKE UNLIMITED TABLESPACE FROM ccm; + + REVOKE RESOURCE FROM ccm; + +QUIT; +PROMPT Dropping USER ccm + + DROP USER ccm CASCADE; + +PROMPT Creating USER ccm + + CREATE USER ccm + IDENTIFIED BY ccm + DEFAULT TABLESPACE APLAWS + TEMPORARY TABLESPACE TEMP PROFILE DEFAULT + QUOTA UNLIMITED ON APLAWS + QUOTA 0 ON USERS; + + GRANT CONNECT, RESOURCE, QUERY REWRITE, CTXAPP, CREATE PROCEDURE, CREATE TRIGGER, CREATE TABLE, CREATE VIEW, CREATE SEQUENCE TO ccm; + + REVOKE UNLIMITED TABLESPACE FROM ccm; + + REVOKE RESOURCE FROM ccm; + +QUIT;