changeset 2368:ce4c7045afc1

Fixed oracle_create_user.sql script: Fixed notation of the table in the alter statement. flys-backend/trunk@3328 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Schilberg <bjoern@intevation.de>
date Tue, 29 Nov 2011 15:31:18 +0000
parents 418a0918863b
children a3c02addd1fa
files flys-backend/ChangeLog flys-backend/doc/schema/oracle_create_user.sql
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/flys-backend/ChangeLog	Fri Nov 18 15:53:07 2011 +0000
+++ b/flys-backend/ChangeLog	Tue Nov 29 15:31:18 2011 +0000
@@ -1,3 +1,8 @@
+2011-11-29	Bjoern Schilberg <bjoern.schilberg@intevation.de>:
+
+	* doc/schema/oracle_create_user.sql: Fixed notation of the table in the
+	  alter statement.
+
 2011-11-18	Sascha L. Teichmann	<sascha.teichmann@intevation.de>:
 
 	Fixed flys/issue415
--- a/flys-backend/doc/schema/oracle_create_user.sql	Fri Nov 18 15:53:07 2011 +0000
+++ b/flys-backend/doc/schema/oracle_create_user.sql	Tue Nov 29 15:31:18 2011 +0000
@@ -3,9 +3,9 @@
 --CREATE USER
 CREATE USER test IDENTIFIED BY test;
 -- USER SQL
-ALTER USER test DEFAULT TABLESPACE test TEMPORARY TABLESPACE "TEMP" ACCOUNT UNLOCK ;
+ALTER USER test DEFAULT TABLESPACE "test" TEMPORARY TABLESPACE "TEMP" ACCOUNT UNLOCK ;
 -- QUOTA for user on TABLESPACE
-ALTER USER test QUOTA UNLIMITED ON test;
+ALTER USER test QUOTA UNLIMITED ON "test";
 GRANT ALL on "MDSYS"."ALL_SDO_GEOM_METADATA" to test ;
 GRANT CREATE SESSION TO test ;
 GRANT CREATE VIEW TO test;

http://dive4elements.wald.intevation.org