aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install/schemas/oracle_schema.sql
diff options
context:
space:
mode:
authorCHItA <mate.bartus@gmail.com>2015-06-13 15:35:19 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-07-08 01:28:03 +0200
commit3dcaa48850bf823b238391fbf9c3f085092010bc (patch)
tree52101d29d4774e88d2cf6c3a249e435c06b8d6ba /phpBB/phpbb/install/schemas/oracle_schema.sql
parentdb4cfa7df62d5911bc5a0edcdc59236c39aede08 (diff)
downloadforums-3dcaa48850bf823b238391fbf9c3f085092010bc.tar
forums-3dcaa48850bf823b238391fbf9c3f085092010bc.tar.gz
forums-3dcaa48850bf823b238391fbf9c3f085092010bc.tar.bz2
forums-3dcaa48850bf823b238391fbf9c3f085092010bc.tar.xz
forums-3dcaa48850bf823b238391fbf9c3f085092010bc.zip
[ticket/13740] Move installer files to phpbb/install directory
PHPBB3-13740
Diffstat (limited to 'phpBB/phpbb/install/schemas/oracle_schema.sql')
-rw-r--r--phpBB/phpbb/install/schemas/oracle_schema.sql37
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/schemas/oracle_schema.sql b/phpBB/phpbb/install/schemas/oracle_schema.sql
new file mode 100644
index 0000000000..2473d31aab
--- /dev/null
+++ b/phpBB/phpbb/install/schemas/oracle_schema.sql
@@ -0,0 +1,37 @@
+/*
+ This first section is optional, however its probably the best method
+ of running phpBB on Oracle. If you already have a tablespace and user created
+ for phpBB you can leave this section commented out!
+
+ The first set of statements create a phpBB tablespace and a phpBB user,
+ make sure you change the password of the phpBB user before you run this script!!
+*/
+
+/*
+CREATE TABLESPACE "PHPBB"
+ LOGGING
+ DATAFILE 'E:\ORACLE\ORADATA\LOCAL\PHPBB.ora'
+ SIZE 10M
+ AUTOEXTEND ON NEXT 10M
+ MAXSIZE 100M;
+
+CREATE USER "PHPBB"
+ PROFILE "DEFAULT"
+ IDENTIFIED BY "phpbb_password"
+ DEFAULT TABLESPACE "PHPBB"
+ QUOTA UNLIMITED ON "PHPBB"
+ ACCOUNT UNLOCK;
+
+GRANT ANALYZE ANY TO "PHPBB";
+GRANT CREATE SEQUENCE TO "PHPBB";
+GRANT CREATE SESSION TO "PHPBB";
+GRANT CREATE TABLE TO "PHPBB";
+GRANT CREATE TRIGGER TO "PHPBB";
+GRANT CREATE VIEW TO "PHPBB";
+GRANT "CONNECT" TO "PHPBB";
+
+COMMIT;
+DISCONNECT;
+
+CONNECT phpbb/phpbb_password;
+*/