Skip to main content
St Louis

Back to all posts

How to Create A User In PostgreSQL?

Published on
4 min read
How to Create A User In PostgreSQL? image

Best Database Management Tools to Buy in April 2026

1 Funny SQL Database Cartoon Vinyl Sticker

Funny SQL Database Cartoon Vinyl Sticker

  • DURABLE, WATERPROOF VINYL: IDEAL FOR TECH GEAR PERSONALIZATION!
  • PERFECT GIFT FOR PROGRAMMERS: HUMOR MEETS FUNCTIONALITY!
  • CHEERFUL DESIGN: BRIGHTEN UP LAPTOPS, BOTTLES, AND NOTEBOOKS!
BUY & SAVE
$3.90 $6.90
Save 43%
2 Office Suite 2025 Special Edition for Windows 11-10-8-7-Vista-XP | PC Software and 1.000 New Fonts | Alternative to Microsoft Office | Compatible with Word, Excel and PowerPoint

Office Suite 2025 Special Edition for Windows 11-10-8-7-Vista-XP | PC Software and 1.000 New Fonts | Alternative to Microsoft Office | Compatible with Word, Excel and PowerPoint

  • SEAMLESS MS OFFICE COMPATIBILITY FOR HASSLE-FREE DOCUMENT SHARING.
  • 1,000 FONTS AND 20,000 CLIPART IMAGES TO CUSTOMIZE YOUR PROJECTS!
  • USER-FRIENDLY INTERFACE ENSURES QUICK AND SIMPLE SETUP AND USE.
BUY & SAVE
$14.99
Office Suite 2025 Special Edition for Windows 11-10-8-7-Vista-XP | PC Software and 1.000 New Fonts | Alternative to Microsoft Office | Compatible with Word, Excel and PowerPoint
3 LibreOffice Suite 2026 Home and Student for - PC Software Professional Plus - compatible with Word, Excel and PowerPoint for Windows 11 10 8 7 Vista XP 32 64-Bit PC

LibreOffice Suite 2026 Home and Student for - PC Software Professional Plus - compatible with Word, Excel and PowerPoint for Windows 11 10 8 7 Vista XP 32 64-Bit PC

  • PERFECT WORD & EXCEL ALTERNATIVE WITH COMPREHENSIVE TOOLS INCLUDED.
  • ENJOY 20,000 CLIPART IMAGES AND DEDICATED EMAIL TECH SUPPORT.
  • FULLY COMPATIBLE WITH WINDOWS AND ALL MAJOR OFFICE FORMATS.
BUY & SAVE
$12.99
LibreOffice Suite 2026 Home and Student for - PC Software Professional Plus - compatible with Word, Excel and PowerPoint for Windows 11 10 8 7 Vista XP 32 64-Bit PC
4 Membership Manage Professional; 100,000 Member Database Tracking and Management Software; Multiuser License (Online Access Code Card) Win, Mac, Smartphone

Membership Manage Professional; 100,000 Member Database Tracking and Management Software; Multiuser License (Online Access Code Card) Win, Mac, Smartphone

  • ONE-TIME PAYMENT GRANTS LIFETIME ACCESS-NO MONTHLY FEES!
  • EFFORTLESSLY MANAGE AND TRACK MEMBER DETAILS AND ATTENDANCE.
  • STREAMLINE BILLING WITH DETAILED INVOICES AND EVENT REGISTRATION.
BUY & SAVE
$40.00
Membership Manage Professional; 100,000 Member Database Tracking and Management Software; Multiuser License (Online Access Code Card) Win, Mac, Smartphone
5 Database Development For Dummies

Database Development For Dummies

  • AFFORDABLE PRICES: QUALITY READS WITHOUT BREAKING THE BANK!
  • ECO-FRIENDLY CHOICE: PROMOTE SUSTAINABILITY WITH EVERY PURCHASE.
  • DIVERSE SELECTIONS: DISCOVER HIDDEN GEMS AND RARE FINDS TODAY!
BUY & SAVE
$25.40 $41.99
Save 40%
Database Development For Dummies
6 Office Suite on DVD for Home Student and Business, Compatible with Microsoft Office Word Excel PowerPoint for Windows 11 10 8 7 powered by Apache

Office Suite on DVD for Home Student and Business, Compatible with Microsoft Office Word Excel PowerPoint for Windows 11 10 8 7 powered by Apache

  • ALL-IN-ONE DVD: AFFORDABLE PRODUCTIVITY SOFTWARE FOR ALL USERS.
  • FULLY COMPATIBLE: OPEN AND EDIT MICROSOFT OFFICE FILES SEAMLESSLY.
  • EXPERT SUPPORT: INCLUDES A PERSONAL GUIDE AND ACCESS TO COMMUNITY HELP.
BUY & SAVE
$17.99
Office Suite on DVD for Home Student and Business, Compatible with Microsoft Office Word Excel PowerPoint for Windows 11 10 8 7 powered by Apache
7 Office Suite 2025 Edition CD DVD 100% compatible with Microsoft® Word® and Excel® for Windows 11-10-8-7-Vista-XP

Office Suite 2025 Edition CD DVD 100% compatible with Microsoft® Word® and Excel® for Windows 11-10-8-7-Vista-XP

  • 100% MICROSOFT OFFICE COMPATIBILITY FOR SEAMLESS WORKFLOW.
  • BOOST CREATIVITY WITH 20,000 IMAGES & 1,000 FONTS INCLUDED.
  • PERFECT FOR ALL WINDOWS VERSIONS: FAST, EASY INSTALL & NAVIGATION!
BUY & SAVE
$14.99
Office Suite 2025 Edition CD DVD 100% compatible with Microsoft® Word® and Excel® for Windows 11-10-8-7-Vista-XP
8 EZ Home and Office Address Book Software

EZ Home and Office Address Book Software

  • MULTI-FORMAT SUPPORT: WORKS ON WINDOWS 11 TO XP, ENSURING BROAD COMPATIBILITY.
  • CUSTOMIZABLE LABELS: PRINT COLORFUL LABELS WITH EASE USING POPULAR AVERY FORMATS.
  • VERSATILE DATABASES: CREATE UNLIMITED CATEGORIES FOR HOME AND BUSINESS NEEDS.
BUY & SAVE
$29.95
EZ Home and Office Address Book Software
9 Database Design for Mere Mortals: 25th Anniversary Edition

Database Design for Mere Mortals: 25th Anniversary Edition

BUY & SAVE
$36.43 $54.99
Save 34%
Database Design for Mere Mortals: 25th Anniversary Edition
+
ONE MORE?

To create a user in PostgreSQL, you can use the command-line interface utility called "psql". Here is the syntax to create a user:

CREATE USER username WITH PASSWORD 'password';

Replace "username" with the desired name for the user and "password" with the desired password. This command will create a new user with the specified username and password.

To grant specific privileges to the user, you can use the "GRANT" command. For example, to grant all privileges to the user on a specific database, you can run:

GRANT ALL PRIVILEGES ON DATABASE database_name TO username;

Replace "database_name" with the name of the database to which you want to grant privileges.

After executing the above commands, the user will be created and can be used to connect to the PostgreSQL database using the specified username and password.

How to lock/unlock a user account in PostgreSQL?

In PostgreSQL, locking/unlocking a user account is done by altering the user's account status. Here are the steps to lock/unlock a user account:

  1. Connect to the PostgreSQL database server with a superuser or a user with the necessary permissions.
  2. Open a new SQL command prompt or use a database management tool such as pgAdmin.
  3. To lock a user account, execute the following command, replacing with the username of the user: ALTER USER CONNECTION LIMIT 0; This command sets the connection limit to 0, effectively preventing the user from connecting to the database.
  4. To unlock a user account, execute the following command, replacing with the username of the user: ALTER USER CONNECTION LIMIT -1; This command sets the connection limit to -1, allowing the user to connect to the database again.
  5. You can verify the locked/unlocked status of a user account by querying the pg_user catalog table: SELECT usename, usesuper, userepl, usecreatedb, usesuper, usecatupd, passwd, valuntil, rolvaliduntil FROM pg_user; The valuntil column will show the date and time until which the user is locked.

That's it! You have now learned how to lock/unlock a user account in PostgreSQL.

How to revoke privileges from a user in PostgreSQL?

To revoke privileges from a user in PostgreSQL, you can use the REVOKE command. Here are the steps to revoke privileges:

  1. Connect to the PostgreSQL database server using an account with superuser or the necessary privileges to revoke privileges.
  2. Determine the specific privileges you want to revoke from the user. Common privileges include SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, and GRANT OPTION.
  3. Use the following syntax to revoke privileges:

REVOKE privileges ON table_name FROM user_name;

Replace "privileges" with the specific privileges you want to revoke (e.g., SELECT, INSERT, UPDATE), "table_name" with the name of the table or object you want to revoke privileges from, and "user_name" with the name of the user you want to revoke privileges from.

For example, if you want to revoke the SELECT privilege from the user "testuser" on the table "employees", you would use the following command:

REVOKE SELECT ON employees FROM testuser;

  1. You can also revoke multiple privileges at once by separating them with commas. For example:

REVOKE SELECT, INSERT ON employees FROM testuser;

  1. After running the REVOKE command, the specified user will no longer have the revoked privileges on the specified table or object.

Remember to use caution when revoking privileges, as it can affect the user's ability to access certain data or perform specific actions.

What is the purpose of the CREATEDB attribute when creating a user in PostgreSQL?

The CREATEDB attribute is used when creating a user in PostgreSQL to grant the user the ability to create databases. By including the CREATEDB attribute in the command, you give the user permission to create new databases within the PostgreSQL system. This attribute essentially grants administrative privileges related to database creation and management to the specified user.