Sqlexp

ludi

New Member
Good day

I'm running progress OpenEdge 12.8, I used the following scripts to add users to my database, users are added and can create a connection using SQLEXP, but I can't pull tables as its saying access denial, any assistance?
 

Attachments

  • grand.p
    328 bytes · Views: 5
  • report.txt
    6.3 KB · Views: 4
Which user are you using to run 'grant select, update, insert,delete on PUB."' + _file._file-name + '" to ~"dario" '

This user should be allow to do it (like Sysprogress)

Patrice
 

Rob Fitzpatrick

ProgressTalk.com Sponsor
Your user SQLUser is unable to read data because your attempt to grant it select permissions failed.

First, check who has such permissions; look in the sysdbauth table. E.g.:
select * from sysprogress.sysdbauth;
 
Top