摘要:
Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 Connected as SYSSQL> select * from store.purchases; PRODUCT_ID CUSTOMER_ID QUANTITY--------------------------------------- --------------------------------------- --------------------------------------- 1 4 1 2 4 1SQL> sele 阅读全文
摘要:
SQL> alter type person_typ not final cascade;Type altered 阅读全文
摘要:
grant select,insert,update on store.products to SYS;grant create session,create user,create table to SYS;grant execute any procedure to SYS with admin option;create user roy identified by williams; 阅读全文