1、系统提供的包

dbms_output     输出包
        dbms_output.put_line('hello'); 
dbms_random    随机数包 
        select    dbms_random.value(1,100) from dual;        
        select    trunc(dbms_random.value(1,100)) from dual;   
dbms_job     定时任务包 
         可以定时调用存储过程  
dbms_lob     操作大数据类型的包 比如 blob  和 clob 类型

2、用户可以自定义包

无论是系统的包 还是自定义的包    使用包中的数据记得在数据前加 包名点即可 
mypack    -----   getmax 
mypack.getmax(1,100)