> $sqlplus scott/tiger
>
> SQL>select table_name from tabs;
정상적으로 움직이는 겁니다.
scott user로 login하셔서,
create table tmp_data (
no1 number(8) Not Null,
no2 number(9),
chr1 varchar2(10));
alter table tmp_data
add constraint tmp_data_pk primary key (no1);
하신다음에 다시 select table_name from tabs; 해보시기 바랍니다.
tolkien입니다.
|