Admin account of progress database - openedge

I'm trying to connect via ODBC to a clean install of Progress DB. Any idea what username/password should I use?

Did you try :
-user sysprogress
-password 123

Out-of-the-box you have two options to access the database with an account that has DBA privileges granted:
The credentials of the operating system account under which you've created the database.
You can manually create or, if it already exists, modify the special user SYSPROGRESS with the 4GL data administration tool. You cannot change it's password but you can delete and re-create it with a password of your choice if you have the credentials of an account on the 4GL engine that has the privileges to do so.
Both users will have DBA privileges.

Related

Can not create a new database on phpmyadmin because of this error - 1044 - Access denied for user 'xxx' to database 'zzz'

I need to import a sql. database to Wordpress through phpMyAdmin.
Anytime I want to create a new database this error happens (#1044 - Access denied for user 'xxx' to database 'zzz').
Thanks for your help.
You can check all privileges permission of database user and also check our sql file. May be mention there "CAEATE DATABASE '*******'" if you have that then you remove that. Most of this #1044 refer you to check your database user and permission of your database. I think this suggestion will help you.
As the others have mentioned, shared hosting environments generally don't allow you to create any arbitrary database name, sometimes you're limited to only one database and sometimes it has to be a subset of your username or something. If that's the case, you'll need to edit the .sql file to force it to use the database name you've been assigned.
If that's not the case, it's likely the user you are logged in as doesn't have the privileges to create a new database, so you'll need to log in as a user that does have privileges. Perhaps you're not logged in as the user you think you are. Note that the username and host value need to match, otherwise you could be logged in as the anonymous user instead of one that has permissions (for instance, if your user account is mia with host field 127.0.0.1 but you're logged in via the socket connection to 'localhost', it doesn't match.

ORA-31631: privileges are required ORA-39122: Unprivileged users may not perform REMAP_SCHEMA remappings

While trying to remap schema in impdp i am getting this error.
ORA-31631: privileges are required
ORA-39122: Unprivileged users may not perform REMAP_SCHEMA remappings.
Priviledges are granted to users inside sql shell.
I am executing as oracle user how to grant priviledge to it.I am executing impdp after doing su - oracle
Grant imp_full_database role to the database user and then import

Setting up WSO2 GREG with Oracle: permission to dbgreg user

I am trying to set up GREG 4.5.3 with Oracle 11.2.0.1.
The documentation http://docs.wso2.org/wiki/display/Governance453/Setting+up+with+Oracle (step 3) ask for creating a user and grants it dba role.
Is it needed that the user has dba role? Can I assign the user to a more restrictive role?
Dba role is forbiden by our dba department for application users.
Regards
Nope. It's not necessary to grant the dba role always to your database user in order to configure the registry datasource. Typically, you would only need to grant connect, create session and database table level privileges such as SELECT, INSERT, etc. to your database user to be able to use it in the registry datasource configuration.
Cheers,
Prabath

how to remove dbo role requirement for .net membership in SQL database?

I am transitioning an application from Dev to QA. I have created an sql file to populate the database in the QA environment. In the QA environment I am using windows authentication on the db. My user has minimal permissions. I am comin up with the error
EXECUTE permission denied on object 'aspnet_CheckSchemaVersion', database 'QADB', schema 'dbo'.
when I try an log in. I noticed my db creation script has:
"CREATE ROLE [aspnet_Membership_BasicAccess] AUTHORIZATION [dbo]"
When I change the permissions of my user to dbo, the problem goes away.
I do not wish for my user to be dbo. Does anybody know what I can do to remedy this?
Grant the user the execute permission on the stored procedure, or better still, make sure the user is a member of the role and grant execute permissions to the role.
GRANT EXECUTE ON aspnet_checkscemaversion TO aspnet_membership_basicaccess

Which user can I set up a new user in Oracle 11.2.0?

Which user can I set up a new user in Oracle 11.2.0 ?
i connect with scott/tiger as normal (i cant connect with sysdba)
how i can create new user ?
how to connect with power user for this ?
thanks in advance
Gali-
Out of the box the Scott user lacks the required privileges to create users and/or connect as sysdba.
Using the command line sqlplus utility:
$ sqlplus / as sysdba
This will log you in as the SYS user on the database for which you want to create the new user. From here you can issue your standard
CREATE USER foo IDENTIFIED BY bar;
Alternatively, when you setup and installed the database, you should have been prompted for a SYS user password. You can use this account to log in via a GUI (say Toad or SQL Developer) using the "SYSDBA" connection property.
Hope this helps.
-CJ

Resources