Skip to content

Commit d9b0105

Browse files
authored
Merge pull request #6615 from yuki-tei/patch-12
Update running_edb_loader.mdx
2 parents 807fb30 + 39dbadb commit d9b0105

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

product_docs/docs/epas/15/database_administration/02_edb_loader/invoking_edb_loader/running_edb_loader.mdx

+2-1
Original file line numberDiff line numberDiff line change
@@ -241,12 +241,13 @@ EDB*Loader: Copyright (c) 2007-2021, EnterpriseDB Corporation.
241241
Successfully loaded (4) records
242242
```
243243

244-
This example invokes EDB\*Loader using a normal user. For this example, one empty table `bar` is created and a normal user `bob` is created. The `bob` user is granted all privileges on the table `bar`. The CREATE TABLE command creates the empty table. The CREATE USER command creates the user, and the GRANT command gives required privileges to the user `bob` on the `bar` table:
244+
This example invokes EDB\*Loader using a normal user. For this example, one empty table `bar` is created, and a normal user `bob` is created. The `bob` user is granted all privileges on the table `bar`. Also, the `bob` user must be granted the pg_read_server_files role to utilise edb_bulkload. The CREATE TABLE command creates an empty table. The CREATE USER command creates the user, and the GRANT command gives required privileges to the user `bob` on the `bar` table and pg_read_server_files role:
245245

246246
```sql
247247
CREATE TABLE bar(i int);
248248
CREATE USER bob identified by '123';
249249
GRANT ALL on bar TO bob;
250+
GRANT pg_read_server_files TO bob;
250251
```
251252

252253
The control file and data file:

0 commit comments

Comments
 (0)