How do I let ODI open with a different user? - oracle

In ODI I created a different user in the Security tab with some profiles. When starting ODI it is not using that new created user but with a default user and option to choose the Supervisor. How do I open ODI with that new user?

Related

PowerApps - what could be licensing requirement for me to create entities in CDS?

I exported a SharePoint list to Excel and then tried Data -> Entities -> Get Data to create entities in CDS uploading data from Excel. It says 'You are missing privileges to create entities in this environment.' What could I do?
Possibilities of this error while creating entity are:
You are trying to create entity in some environment where you don't have security role/privilege to do this operation, viz Environment Admin, System Admin, System Customizer or custom Admin role
Trying this operation in Default or a CDS environment without database provisioning (highly unlikely)
Probably you have Environment maker role, client assumes that it is enough which is not the case
Try to get Admin privileges in Dev/sandbox environment from your client or create a trial org to try out things. You may have license but the basic role to access the system as an end user will not help you to do such stuffs.

Giving a user READ-ONLY permission on a workspace in APEX

I have a workspace created, in APEX and has a user associated with it (say, USER). I also have an ADMIN user. I want the USER to be able to just select the data from the schema tables and not update/delete tables or create a package etc. How can I achieve this?
I logged in as ADMIN and was tweaking some settings of the workspace. I saw an option called SQL Workshop. Enabling or disabling it doesn't serve my purpose. I want the user to be able to write queries (only select) but he must not be able to update the data or create packages or stuff like that.
There isn't a way to accomplish this within the same workspace. Anyone who can develop or administer a workspace can parse SQL as any database user (schema) mapped to that workspace. You could achieve this using another workspace and normal database object privileges.
Create a second workspace, which USER can login to.
Selectively grant object privileges from objects owned by the database user of the
first workspace to the database user of the second workspace. E.g.,
GRANT READ ON dbuser1.table TO dbuser2;

Oracle SOA BPM issue

I created instance at user level.but I am not getting same instance in oracle SOA BPM 11g workspace. these same issue facing in all the BPM interfaces in (DEV Environment ). please give me the solution for this...
Create a User and assign the role to the user in the "Security Realm" under user tab of weblogic console.
After adding user, make sure you have the role available under the groups tab. Add the respected role to user and logout from workspace and retry to login and verify for the instance. The instance should be visible in the workspace.
For instance, the lane participant for the User task is Approver as shown above. The user should be assigned to this role in order to retrieve the task. Please make sure that the user is assign to the Approver role and this role is exist in the Application roles under Security Realm. HTH.

How to create a user in Oracle SQL developer

I am newbie to oracle sql developer 3.1.07.42, and have just installed it on my machine. I want to make a new connection, but it requires a user and a password which I do not know. I have been googling about it since many days, and have learned that there are some commands to create user, but I do not know where should I run those commands, because I cannot run queries/commands until the connection is created.
Would anyone let me know what should I do?
Steps for creating new user :
1)Open Sql Developer, make new connection.
2)Login with System username and password(made during installation).
3)Once you connect, expand the System user (under Connections, in the left pane) and scroll down to Other users. Then right click users and add new user.
4)Give its username and password & select appropriate system privilege.
5)You are done now, check by making new connection.
Use this below simple commands to create an user
-- Create a user
CREATE USER youruser IDENTIFIED BY yourpassword;
--Grant permissions
GRANT CONNECT, RESOURCE, DBA TO demo;
you should install database software in your local pc/laptop then create user in the database and you can connect the database via sql developer by key in username and password that already created.If you want to connect to other database same step like the previous step but before that you need to point to the remote database.
I thinks you should use "Database Configuration Assistant" to create new database and U can set user name and password and use it in oracle SQL Developer!!!

how to create a clean oracle database without excess tables in oracle 11g

why am i seeing these , ready made tables inside my newly created connection in my oracle 11g express, via oracle sql developer?,
what i did was, I just created a new connection, with username as system, and password as sasori....then when i clicked the "tables",
i saw alot of tables in it which i didn't created my self
AQ$_DEF$_AQERROR_F
AQ$_INTERNET_AGENTS
AQ$_INTERNET_AGENT_PRIVS
AQ$_QUEUE_TABLES
DEF$_DESTINATION
DEF$_PROPAGATOR
DEF$_PUSHED_TRANSACTIONS
LOGMNRC_DBNAME_UID_MAP
LOGMNRC_GSBA
and etc.etc...etc....
how can i create a new connection w/o those tables automatically created
A new database comes with a couple of standard users. This allows you to manage the database. One of the tasks is to create your own users.
First you create a connection as user system.
When you are connected as system, you can now create a new user.
Make a new connection using this new users credentials.

Resources