I am looking into a system table: stl_load_errors
and I have created a view on top of stl_load_errors
to restrict the data.
sample view:
create view vw_sample_load_errors
as
select * from stl_load_errors where filename like 'sample123%'
Now, when a regular user queries the view, the user is unable to see any rows.
How do I give him access to this view alone.
I do not want to give syslog access which will give user unlimited access to all data in all system tables including stl_load_errors
.
Let me know if it is clear enough.