sql >> データベース >  >> RDS >> Oracle

ストアドプロシージャで特権を見つけるためのOracleクエリ

    役割を通じて助成金を説明するには:

      select grantee, table_name, privilege
         from dba_tab_privs
         where
           table_name = 'my_stored_proc'
            and 
           owner = 'ownerOfObject'
           and
           (grantee = 'userA'
             or
             grantee in
              (select granted_role
            from dba_role_privs
            where grantee = 'userA'
               )
            )
    


    1. SQL-同じ列から複数のテーブルを選択して複数の行を結合する方法は?

    2. TimescaleDBを簡単にデプロイする方法

    3. ASP.NET/Identityエラー:エンティティタイプApplicationUserは、現在のコンテキストのモデルの一部ではありません

    4. jQueryとCodeIgniterを使用したファイルのアップロード(ただし、ページの更新はありません)