Home > Net >  I am getting aclcheck_error error in postgresql while trying to access my db table
I am getting aclcheck_error error in postgresql while trying to access my db table

Time:12-24

I am trying to run a db in my application but I am getting ErrorCode: 42501 aclcheck_error. Can anyone help here.

CodePudding user response:

The ACL check error is usually seen due to insufficient priviledges to access/modify the table.

Check if the DB user has the relevant permissions to the table you're trying to access.

  • Related