Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: grant access question
Hi,
You need to qualify your table.
Connected as SCOTT:
SQL>select * from system.tablename;
BTW, it is very bad practice to store data in the system schema. You did change to passwords, didn't you ? Everyone knows about scott/tiger, system/manager & sys/change_on_install You should really create your own schema (create user...identified by...default tablespace users temporary tablespace temp;)
Hope this helps,
-- Today, Tomorrow, Together The DOC (The Dutch Oracle Company) Xavier. "Ben" <no.way_at_never.com> wrote in message news:3b7bfa32_1_at_mk-nntp-1.news.uk.worldonline.com...Received on Fri Aug 17 2001 - 00:32:52 CDT
> Hi all
>
> I have a question:
>
> how can SCOTT access tables that have been created and filled by SYSTEM ?
>
> I have GRANT SELECT to SCOTT as SYSTEM was logged on .... but still
> wouldn't show any data when SCOTT is on.
>
> any ideas .. as to what I can do, please ?
>
> Benj
>
>
>
![]() |
![]() |