You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -50,7 +50,7 @@ The server admin user account can be used to create more users and grant those u
50
50
1. Edit and run the following SQL code. Replace your new user name with the placeholder value <new_user>, and replace the placeholder password with your own strong password.
@@ -64,12 +64,12 @@ The server admin user account can be used to create more users and grant those u
64
64
65
65
1. Edit and run the following SQL code. Replace the placeholder value `<db_user>` with your intended new user name and placeholder value `<newdb>` with your own database name. Replace the placeholder password with your own strong password.
66
66
67
-
This sql code syntax creates a new database named testdb, for example, purposes. Then it creates a new user in the PostgreSQL service and grants connect privileges to the new database for that user.
67
+
This SQL code below creates a new database, then it creates a new user in the PostgreSQL instance and grants connect privilege to the new database for that user.
@@ -80,7 +80,7 @@ The server admin user account can be used to create more users and grant those u
80
80
GRANT ALL PRIVILEGES ON DATABASE <newdb> TO <db_user>;
81
81
```
82
82
83
-
If a user creates a table "role," the table belongs to that user. If another user needs access to the table, you must grant privileges to the other user on the table level.
83
+
If a user creates a table "role", the table belongs to that user. If another user needs access to the table, you must grant privileges to the other user on the table level.
84
84
85
85
For example:
86
86
@@ -91,7 +91,7 @@ The server admin user account can be used to create more users and grant those u
91
91
1. Sign in to your server, specifying the designated database, using the new username and password. This example shows the psql command line. With this command, you're prompted for the password for the user name. Replace your own server name, database name, and user name.
0 commit comments