Re: prefixless Select statement

From: Evan <devnull50_at_yahoo.com>
Date: 8 Aug 2001 06:24:16 -0700
Message-ID: <4009888a.0108080524.62ed19a7_at_posting.google.com>


If user USER1 has read privileges on tables created by another user, login as USER1 and create a synonym.

For example say, ADMIN creates table employee You problem is when you log in as USER1 you are having to run the following;
select * from admin.employee;

To resolve, log in as USER1 and create a synonym create synonym employee for admin.employee;

This will allow you to then type the following: select * from employee; Received on Wed Aug 08 2001 - 15:24:16 CEST

Original text of this message