OWNER=xonstat
CONNECTION LIMIT=-1;
+Next, log into the newly created database using the user account
+you just created:
+
+ psql -U xonstat xonstatdb
+
Create the schema in which all of the xonstat tables will reside:
CREATE SCHEMA xonstat
AUTHORIZATION xonstat;
-Navigate to the 'build' directory. Log into the database as the
-admin user created above and issue the following to build the
-initial tables:
+Create the pgplsql language:
- \i build/build_full.sql
+ CREATE LANGUAGE pgplsql;
- *Note: You will see a lot of NOTICE messages. This is normal.
+Back in the command shell, navigate to the 'build' directory.
+Log into the database as the admin user created above and issue
+the following to build the initial tables:
-TODO:
+ \i build/build_full.sql
-- Define indexes
-- Audit report SQL to verify index usage
-- ? Partition games, player_game_stats, player_weapon_stats via inheritance
+ *Note: You will see a lot of NOTICE messages. This is normal.