I got permission denied problem which executing query for Sybase.
1. Exception: SELECT permission denied on object sysmonitors, database master, owner dbo.
2. Exception: master.dbo.monCachePool not found. Specify owner.objectname or use sp_help to check whether the objects persist(sp_help may produce lots of product).
My database is sybasedb and my username is tester, not sa. For super user 'sa' is okay, no exception. But when I created normal user and tested it, I got these exceptions. I thought that this is permission issue. That's why I grant permission for this user 'test' to be able to access these tables. Like this:
- grant select on master.dbo.monCachePool, master.dbo.monDataCache to tester
But still can not. I got above exceptions. Please help me how to solve it.