Difference between revisions of "Create database (PostgreSQL)"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 9: Line 9:
 
   WITH OWNER "postgres"
 
   WITH OWNER "postgres"
 
   ENCODING '[[UTF8]]';
 
   ENCODING '[[UTF8]]';
 +
 +
https://confluence.atlassian.com/doc/database-setup-for-postgresql-173244522.html
 +
CREATE DATABASE "confluence"
 +
  WITH OWNER "confluenceuser"
 +
  ENCODING '[[UTF8]]'
 +
  LC_COLLATE = 'en_US.UTF-8'
 +
  LC_CTYPE = 'en_US.UTF-8';
  
  

Revision as of 13:33, 3 March 2020

CREATE DATABASE "scratch"
 WITH OWNER "postgres"
 ENCODING 'UTF8'
 LC_COLLATE = 'en_US.UTF-8'
 LC_CTYPE = 'en_US.UTF-8';
CREATE DATABASE "scratch"
 WITH OWNER "postgres"
 ENCODING 'UTF8';

https://confluence.atlassian.com/doc/database-setup-for-postgresql-173244522.html

CREATE DATABASE "confluence"
 WITH OWNER "confluenceuser"
 ENCODING 'UTF8'
 LC_COLLATE = 'en_US.UTF-8'
 LC_CTYPE = 'en_US.UTF-8';


Related terms


See also

Advertising: