Hi,
I using Oracle 8.1.7 and have the following problem:
I Have two users, User1 and User2, and a have one tablespace TS_DATA.
User1 have full access on TS_DATA (Create Tables, Drop Tables and others). User1 have created the table below:

CREATE TABLE USER1.TB_TEST1
( CODE NUMBER NOT NULL PRIMARY KEY,
DESC VARCHAR2(50) NOT NULL);

How can I grant permission to USER2 to do SELECT on TB_TEST1 without put the owner before the table name?
For example:
SELECT * FROM TB_TEST1