创建一用户
 create user test identified by <passwdXXXXX> default tablespace test temporary tablespace test;
 授权
grant dba, connect, resource, create table to test;

解决方案 »

  1.   

    创建用户,其密码应该是oracle自己的参数,
    你要是做个软件什么的,可以建个用户表(用户名/密码),密码字段指定长度!
      

  2.   

    oracle提供了一个函数,你只要修改其中的代码便可.函数名好像是verify_function.在utlpwdmg.sql中.
      

  3.   

    PASSWORD_VERIFY_FUNCTIONPL/SQL function that makes a
    password complexity check
    before a password is assignedFunction must be created in the SYS schema and
    must have the following specification:function_name(
    userid_parameter IN VARCHAR2(30),
    password_parameter IN VARCHAR2(30),
    old_password_parameter IN VARCHAR2(30))
    RETURN BOOLEAN
    然后,创建一个profile,使用这个密码验证函数。
    创建用户,使用这个profile
      

  4.   

    在 oracle 数据库里,不太可能吧 :( 
    关注...