ALM安装12.50 - "站点管理数据库架构"问题

时间:2016-05-03 09:33:04

标签: oracle windows-server-2012-r2 alm

Oracle数据库通过ALM连接,但在"站点管理数据库架构"选项卡,填写默认用户名和默认密码后,出现错误"数据库管理员[qcsiteadmin_db]没有所有必需的权限,或者模式密码不符合密码策略要求。"选择"创建新架构"。

我已经尝试了几次密码但仍无法解决,也没有任何线索。

有没有人得到解决方案或我错过了什么?

  

Windows Server 2012 R2

     

HP ALM 12.50

     

Oracle 12c

1 个答案:

答案 0 :(得分:0)

$(document).ready (function () {
$('#dob2').datepicker();
$('#dob2').datepicker ("option", "changeMonth", true);
$('#dob2').datepicker ("option", "changeYear", true);
$('#dob2').datepicker ("option", "yearRange", "-100:-16");
$('#dob2').datepicker ("option", "maxDate", "-16Y");
$('#dob2').datepicker ("option", "minDate", "-100Y");
$('#dob2').datepicker ("option", "minDate", "-100Y");
$('#dob2').datepicker ("option", "onSelect", function(dateText, inst) { 
            var date = $(this).datepicker('getDate');
            var year  = date.getFullYear();  
            var curYear = new Date().getFullYear();
            age = curYear - year;
            console.log(age);
            if(age>=16 || age<18){
                alert("The minimum age requirement for supplementary card applicant is 18 years old. For applicant aged 16 and 17, and are going overseas to study, please submit the letter of acceptance from the education institution.");
            }
       });

   });