1 Answer
- Newest
- Most votes
- Most comments
0
Verify it's actually a permissions issue. Run: DESCRIBE database.table;
If these fail with the same error, it's almost certainly permissions rather than a SQL issue.
Lake Formation permissions Make sure the principal you're granting to has:
- DESCRIBE on the database
- DESCRIBE on the table (or inherited)
- SELECT on the table
If using column-level permissions, ensure the specific columns are included. A common mistake is granting only SELECT without DESCRIBE.
Relevant content
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated a year ago

The DESCRIBE command worked, but the SELECT command is still returning the same issue. The principal has Select and Describe permissions for Table and Column level