Results 1 to 5 of 5

Thread: Managing the access control in database

  1. #1
    Join Date
    Oct 2009
    Posts
    82

    Managing the access control in database

    I am using oracle database on linux operating system and with the SYSTEM privilege.Recently,I created a function and grant this function to the SCOTT user of the database but he reported that he can access the privileges that I gave him.What the problem may with him to cause this type of error.I will be highly obliged to you support for this answer.

    Thanks.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Managing the access control in database

    Managing the access control =>

    You are running as a SYSTEM user in your database and gave some privileges to the SCOTT user but what the problem he has you didn't discuss here then how can we able to give the answer,At least provide me some reported error to discuss .

    But If he is getting problem then there may be different reasons.May be some changes in the database done by SYS user or may be the table space related errors ,etc .

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Privileges granting error in database

    Privileges granting error

    The privileges that you have granted to the SCOTT user that may be not done successfully.This may be one of the reason to access problem of database object .

    You have to use the below command to grant the privileges on any object to any user of database :

    SQL> GRANT <List of privileges>ON<Object_name>TO <User_name>;
    That was a simple synopsis to grant just look below with an example:

    Code:
    SQL> GRANT SELECT,UPDATE,DELETE ON CALCULATE_FUN TO SCOTT;

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    TABLESPACE access error in database

    If the SCOTT has tablespace related problem then that would be an administrative task to available the data.

    In this case,Try to access yourself and make sure any tablespace related error is occurring or not.May be some long operation is going on with the tablespace and the database administrator makes the tablespace in read only mode or offline mode .

    To solve this issue,you need to contact with database administrator and if you have success privilege on the tablespace then disable the restriction and made available to the user SCOTT to access that object.

    Convert the tablespace in WRITE and ONLINE mode using the following command :
    Code:
    SQL> ALTER TABLESPACE <tablespace_name>READ WRITE;
    SQL> ALTER TABLESPACE <tablespace_name>ONLINE;

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    User access control in database

    User access control -

    The error may be from the user control where user is not configured properly and need to check the status of his account.

    When a user is created a default profile is assigned to the user from the database and when a user is working on organization standard then they use different privilege as per the organization rule.May be the user has done some mistake which goes beyond the rules of profile or role.

    You need to check his status and made the required changes.May be his account has been locked so that you need to activate his account again with the ALTER USER command to unlock the status .

Similar Threads

  1. Restoring and managing Control file in oracle
    By Lachlann in forum Software Development
    Replies: 5
    Last Post: 12-02-2010, 09:09 PM
  2. Managing Rollback segment in database
    By Adriana_andros in forum Software Development
    Replies: 4
    Last Post: 08-02-2010, 06:48 PM
  3. Managing users in database
    By LaMarcus in forum Software Development
    Replies: 4
    Last Post: 02-02-2010, 06:46 PM
  4. Managing oracle 9i Database
    By Landan in forum Software Development
    Replies: 3
    Last Post: 21-01-2010, 11:05 AM
  5. Access - Managing foreign date format
    By Vodka in forum Windows Software
    Replies: 5
    Last Post: 14-01-2010, 09:34 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,559,439.81960 seconds with 17 queries