Probleme : je ne peut pas acceder a mes tables
voila j'ai creer ceci a partir du compte sys
Code:
1 2 3 4 5 6 7 8
|
create tablespace ETDESPTP datafile 'C:\oraclexe\app\oracle\product\10.2.0\server\mydata\etdesptp.dbf' size 100M ;
create user LOHI identified by lucie default tablespace ETDESPTP ;
grant ALL PRIVILEGE
to LOHI
with ADMIN OPTION ; |
puis a partir du compte lohi j'ai creer ceci
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
create user ETD identified by ETD
default tablespace ETDESPTP
temporary tablespace TEMP
quota 100M on ETDESPTP
account unlock;
create user AUTRE_ETD identified by ETD
default tablespace ETDESPTP
temporary tablespace TEMP
quota 100M on ETDESPTP
account unlock;
grant connect to ETD;
grant connect to AUTRE_ETD; |
Puis j'ai creer une table acteur toujours avec le compte lohi
Code:
1 2 3 4 5 6 7 8 9 10
|
create table ACTEUR
(
NUMERO_ACTEUR NUMBER(3) not null,
NOM_ACTEUR CHAR(20) not null,
PRENOM_ACTEUR CHAR(20) ,
NATION_ACTEUR CHAR(20) ,
DATE_DE_NAISSANCE DATE ,
constraint pk_acteur primary key (NUMERO_ACTEUR)
); |
le probleme est que je n'arrive pas a voir la table lorsque je suis connecté avec le compte etd
Quand je fais select * from acteur , ilme repond que la table ou la vue n'existe pas
j'ai du oublier de faire un truc aidez moi sil vous plait c important