• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Oracle Synonyms

 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Consider TABLE1 it's owner is A and we have one more user B

I m gonnna create synonym for TABLE1 as SYNONYM1 by using command

by entering the Oracle DB in user A
Then I m granting the permission to B for select,insert,modify for the synonym SYNONYM1

then when i select the synonym with the user B
i getting the error as
ORA-00980Synonym transalation is no longer valid
Can anyone help for the above problem?
 
Ranch Hand
Posts: 333
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Looks like a bug to me...

I did it this way, just last week, on 10g...



(well, actually I wanted read-only via a view, so I granted SELECT and REFERENCES, but I'd think it would be the same for U & I)
reply
    Bookmark Topic Watch Topic
  • New Topic