DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: views?

  1. #1
    Join Date
    Jun 2001
    Posts
    76
    I am trying to create a view from one users schema to anothers. example:

    CREATE VIEW daily_domain AS SELECT processdate from usage.raddaily_domain;

    the error i get says that this table or view does not exist.

    HOWEVER, when I run the query

    SELECT * FROM usage.raddaily_domain;

    I get results. Is there something I need to do before I can create this view?

    Thanks.
    On the other hand, you have different fingers.

  2. #2
    Join Date
    May 2001
    Location
    Chantilly, Virginia
    Posts
    30
    Hi
    You may have only select privileges. Check for the privileges on that table.

    Prasad

  3. #3
    Join Date
    Nov 2000
    Posts
    344
    I think you need to have the privileges granted directly to your user id, not through a role.

    -John

  4. #4
    Join Date
    Aug 2000
    Posts
    194
    Try granting the "SELECT" privilege explicitly (not thru ROLES) to the user and then try creating the view.


  5. #5
    Join Date
    Jun 2001
    Posts
    76

    Thumbs up

    thanks.

    It turns out that select permissions do need to be granted explicitly to the user,not role.

    once again,thanks
    On the other hand, you have different fingers.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width