1、IssueVision能以SQL Server 2005 为后台数据库安装吗?
2、为什么我的安装过程到达安装数据库这一步时 (Test Connection通过) 会弹出这样的窗口(不能上传附件,那我把窗口的内容写出来吧)错误对话框  其中主要内容为
-----------------------------------
An unhandled exception has occurred in a component in
your application. Click continue and application will
ignore this error and attempt to continue.密码有效性验证失败。该密码不够复杂,不符合 Windows 策略要求。-----------------------------------发现这个错误后,我设置了密码策略,同时系统和数据库都设置了可以通过Windows自身的复杂密码检查的密码,却一直没能解决这个问题,还请高人赐教

解决方案 »

  1.   

    Take a look here: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=92347&SiteID=1What I did instead of running a manual DB install is;(- all as described in the forum linked to above) Once the installer got to the installation DB, I went to ...\Program Files\IssueVision\1.0\CS\Database\SqlServer_IssueVision_Schema.sqland deleted the line containing: exec sp_addlogin N'IVUser', N'IVUser', @logindb ...and replaced it with: create login IVUser WITH PASSWORD = 'IVUser' , DEFAULT_DATABASE = IssueVision, CHECK_POLICY=OFF;I then saved the SqlServer_IssueVision_Schema.sql , went back to the installer and proceeded with the installation completing without any further hickups.Hope this helps.Asside the little manual script-run evation twist, Full credit is due to DongbumLee .
      

  2.   

    本人解决成功
    在安装issuevision时,在安装数据库时,先进入安装的目录,在database目下有文件SqlServer_IssueVision_Schema.sql,将其文件中的exec sp_addlogin N'IVUser', N'IVUser', @logindb ...语句,替换为create login IVUser WITH PASSWORD = 'IVUser' , DEFAULT_DATABASE = IssueVision, CHECK_POLICY=OFF;保存退出,然后点击安装按钮。安装成功
      

  3.   

    虽然有点晚了,还是谢谢两位,我已经想办法解决了,我是直接在数据库中手动建立了一个IVUser用户而跳过了那句话谢谢两位   这就放分