Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7985797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:39:41+00:00 2026-06-04T11:39:41+00:00

In Oracle, a table, ‘MyTable’ is owned by ‘User1’, how can I grant table

  • 0

In Oracle, a table, ‘MyTable’ is owned by ‘User1’, how can I grant table access permission to another user, say ‘User2’ ?

In SQL server, we have some application access permission, does Oracle has something ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T11:39:43+00:00Added an answer on June 4, 2026 at 11:39 am

    You can grant SELECT privileges (or INSERT, UPDATE, DELETE, and a few others like REFERENCES) to a user

    GRANT SELECT 
       ON user1.MyTable
       TO user2
    

    It would be more common, though, to create a role, grant the privileges to the role, and then grant the role to whatever users need it, i.e.

    CREATE ROLE user1_select;
    
    GRANT SELECT 
       ON user1.MyTable
       TO user1_select;
    
    GRANT user1_select
       TO user2;
    

    That makes it easier in the future to grant a single role to more users and to ensure that all the users with a specific job function have the same set of roles rather than trying to make sure that you’ve granted everyone access to exactly the same set of objects.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got an existing table in Oracle database how can I generate my Hibernate
I have a string from oracle table like this: SELECT col1 FROM MyTable; col1
Is there a way to access Oracle table level statistics in a Java application
I have an Access 2002 application which links an Oracle table via ODBC with
In an Oracle table (e.g. MYTABLE , with a numeric sequenced field as primary
How can I predict the future size / growth of an Oracle table? Assuming:
I have an oracle table with a column from type SYS.XMLTYPE and a storage
I have to get data from Oracle Table in which I have one datefield
Having a XMLTYPE column in an Oracle table, I would like to update the
What is the best data structure to store an oracle table that's about 140

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.