Error code

SQL Server 229

SQL SERVER229
Database Error Code· An error code returned by a database server such as PostgreSQL or MySQL.

What it means

execute permission denied on object — the user lacks the required privilege.

How to fix it

  1. Grant the required permission with GRANT EXECUTE ON <object> TO <user>.
  2. Assign the user to a database role that already holds the permission.
  3. Verify that the application is connecting with the correct user account.

Not affiliated with SQL Server. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.