Skip to content

Commit

Permalink
add FAQ to README (#251)
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Wagner <[email protected]>
  • Loading branch information
ImTheKai authored Aug 7, 2024
1 parent 7931b29 commit a6b07da
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,9 @@ Date: Wed Sep 13 09:48:31 2023 +0530
Fix the ALTER SUBSCRIPTION to reflect the change in run_as_owner option.
```

## FAQ

### What would be the best way to encrypt an existing table using pg_tde?

- That can be done by using the ALTER TABLE command and changing the table's access method to pg_tde_basic. `ALTER TABLE table_name SET access method pg_tde_basic;` This command rewrites the table, so for large tables, it might take a considerable amount of time. Unfortunately, rewriting the table is currently the only available option.

0 comments on commit a6b07da

Please sign in to comment.