please connect as the powerbuilder catalog owner

错误信息如下:“please connect as the powerbuilder catalog owner.this is necessary for the initial connection to oracle to grant privileges on the repository.”

解决方法:点击system属性页,在powerbuilder catalog table owner后面填上实际的loginid即可

 

 

方法一

PB catalog owner默认用户是system, 可以先用 system 用户连上数据库, PB会在数据库中建立一些相关的表和存储过程,然后可以使用普通用户连接;

最好的法是将默system改成普通用

SYSTEM标签页上 的写上:   
  powerbuilder catalog table owner 
user 

方法二

oraclesql/plussystem行以下  
    grant   select,insert,update,delete   on   PBCATCOL   to   public;  
    grant   select,insert,update,delete   on   PBCATEDT   to   public;  
    grant   select,insert,update,delete   on   PBCATFMT   to   public;  
    grant   select,insert,update,delete   on   PBCATTBL   to   public;  

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/12330444/viewspace-686541/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/12330444/viewspace-686541/

你可能感兴趣的:(please connect as the powerbuilder catalog owner)