ARGStackOvaFlo
ARGStackOvaFlo

Reputation: 305

Can we grant SELECT privilege for view in Oracle?

I'm using Oracle 10g 10.2.0.4.0 version.

I need to grant SELECT privilege for a view present in "DRAGON" Schema to "BALLZ" Schema.

Is it possible ?

If possible then please let me know the query.

Thanks !

Upvotes: 0

Views: 13935

Answers (1)

Jacob
Jacob

Reputation: 14741

Try as

GRANT SELECT ON <your_view> TO BALLZ;

You have to execute the above from DRAGON schema.

If you would like to execute as SYSDBA, try as

GRANT SELECT ON DRAGON.<your_view> TO BALLZ;

Upvotes: 3

Related Questions