06-27-2014 11:43 AM
06-28-2014 10:32 AM
set PGPASSWORD=admin
psql -d postgres -U postgres -w -f Create_PostgreSQL_Database.sql
set PGPASSWORD=owdemo
psql -d owd -U owdemo -w -f OwPostgreSQL_CreateAttributeBagTable.sql
DROP DATABASE IF EXISTS owd;
DROP ROLE IF EXISTS owdemo;
CREATE ROLE owdemo LOGIN ENCRYPTED PASSWORD 'owdemo'
SUPERUSER CREATEDB CREATEROLE
VALID UNTIL 'infinity';
CREATE DATABASE owd
WITH OWNER = "owdemo"
ENCODING = 'UTF8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
07-03-2014 10:16 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.