Reputation: 31
I have 2 schemas on my DB i.e. Host and Staging. I have given SELECT grant on table host.ctrl_test to user staging. But when I fire select query on host.ctrl_test table from staging user, it returns 0 rows.
SQL> conn host
Enter password:
Connected.
SQL> select count(1) from host.ctrl_test;
COUNT(1)
----------
14455
SQL> conn staging
Enter password:
Connected.
SQL> select count(1) from host.ctrl_test;
COUNT(1)
----------
0
Upvotes: 3
Views: 122
Reputation: 1589
Possible reasons for this behavior include:
Upvotes: 1