Create Database in PostgreSQL


In this article, we will learn how to create a database in PostgreSQL, we are familiar with SQL programming, so we will use the SQL command to create a database in PostgreSQL and also we will learn how to create a database in PostgreSQL by using PgAdmin4.

Create a database using SQL command

Using the CREATE DATABASE command, we can create the database in PostgreSQL, if we are familiar with MS SQL Server, then this command is straightforward for us. If you are using pgAdmin4, then open a SQL Tool and write the following command.


CREATE DATABASE "DB_NAME"
    WITH
    OWNER = postgres
    ENCODING = 'UTF8'
    LC_COLLATE = 'English_United States.1252'
    LC_CTYPE = 'English_United States.1252'
    TABLESPACE = pg_default
    CONNECTION LIMIT = -1;


If you want to create a database on a default setup, then use only CREATE DATABASE “DB_NAME” then all default setup will be applied on the database but if you want to customize like role, language, table storage size and connection limit then use the above command. In the above SQL command, we create the database with the custom property, so we need to know about this and be careful when you create your database.

OWNER

If you want the setup role for a particular database, then create a user and assign them using OWNER when creating the database.

ENCODING

This is actually character set support; in PostgreSQL, it allows you to store text in a variety of character sets, which is called encodings. For more information, you can follow this link encoding. https://www.postgresql.org/docs/8.3/multibyte.html#MULTIBYTE-CHARSET-SUPPORTED

TABLESPACE

This allows us to register a new cluster-wide tablespace. Mean if a superuser wants to define an alternative location on the system where the data files containing database objects (such as table and indexes) can reside, then he can use the TABLESPACE. For more information click here https://www.postgresql.org/docs/8.3/sql-createtablespace.html

CONNLIMT

You can define how many concurrent connections can be made to this database using CONNLIMIT. If you don’t want to define the limit the set -1 it means no limit.

Create a database using PgAdmin4

If you want to create a database using pgAdmin4, then follow the following steps.
Step 1: Open pgAdmin4 and connect the server after that right-click on databases àcreateàdatabase see the below pic.

Step 2: After click on the create database below window will open where you will set the name of the database and owner.


Step 3: In this step, you will set up your Encoding, Template, Tablespace, Collation, Character type, Connection limit as described above, you can leave blank for the default setup.

Step 4: Here, you will set up the security you can left blank for the default setup.


Step 5: Here, you will set the parameter for the cluster-wide tablespace if you are using otherwise can let for the default setup.


Now click on the save button and your database will create if you want to see the SQL script then click on SQL tab, it looks like below.

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...