how to configure web sphere portal 8 derby database in visualizer? - derby

I want to view the data inside the portal Derby DB, what data it is storing, how it is retrieving, i want to visualize the derby databases of IBM WebSphere portal 8 Derby data bases in DBVisualizer. can any one tell be steps to configure in DB visualizer?

YAH, i got it myself,
Give user id , and password as portal admin, and Database is : C:\IBM\WebSphere\wp_profile\PortalServer\derby\wpsdb
That is the location where portal derby data bases resides.
for more you can ref http://kotireddy143.blogspot.in/2014/11/how-to-configure-web-sphere-portal-8.html

Related

Connect to Oracle database through Azure data factory

I have to get data from a Oracle database through ADF into ADLS. I have a linked service which connects to the Oracle database(type : Oracle).
I am actually not able to create the dataset for this linked service as there is no option for a Oracle dataset creation in the ADF.
Can anyone help me out with this ?
When you click Dataset > New Dataset, you should see this below. If you do not, you should open an Azure ticket to see if there is something wrong with your browser.
If you click on Dataset | New from your ADF UI, you can then type in "Oracle" in the dataset search bar to find the Oracle connector.

How can I connect to existing databases from odoo application?

I am using Odoo 10 version. I lost database connectivity from my application. While trying to select database using database selector (ipaddress:portno/web/database/selector) no databases are displaying.
Then I tried to create a new database.Then, only newly created database is showing. Then I entered directly to the backend and checked whether the databases are there or not. In backend(postgresql) databases are there. How can I connect to existing databases from odoo application?
Odoo shows the list database that belong to the user that you are using to connect to postgresql. So just change the owner of the database to be your user.

ORACLE Application Express - how to connect to your tables in production

I've been trying for days but cannot find the answer to this. I am using Oracle Application Express (APEX), someone else setup the initial connection to a "Apex" database in oracle, but I am trying to connect to our production database in oracle. I am making web forms and the web forms are connected to the "Apex" database that was setup already, but I need to connect to our production database so we can create reports from the data entered through the web forms. I need the tables to show up in the create page option from the production database, currently its coming from the apex database, please help.
Create Page View with Tables (from apex)
Thank You so much in Advance!
What is the "production database"? Is it really a different database (than the one you're currently connected to), or is it a user in the same database?
if former:
you could create a database link between those two databases and create synonyms for production users' tables in one of schemas your workspace is assigned to.
another option is to install Apex onto the production database, so that you could use current installation as "development" and then deploy the application into the "production-based" Apex
if latter, you might do the same (i.e. create synonyms, just without the database link), or simply assign the production schema to your workspace
You may be interested to read Mike's response to a question with a similar misunderstanding regarding architecture.
https://community.oracle.com/thread/4135843
Once you have your head wrapped around this, you can consider the parsing schema to your application. This schema defines the table access your application has, in the normal way Oracle handles table privileges.
Then it's up to you to define who has access to what pages, using APEX Authorisation Schemes.

How do I connect to oracle apex database through JDBC?

I have got a workspace in apex.oracle.com , Now , I want to connect to that database through JDBC from ubuntu-14.04 machine. please explain the steps , From where should I download the drivers and what should be the arguments in
DriverManager.getConnection();
step by step please. Thank you
You will not be able to connect to the database that's supporting the APEX instance on apex.oracle.com. If you are hosting your own instance, it's no different than connecting to any other Oracle database.A quick code snippet can be found here: http://www.java2s.com/Code/Java/Database-SQL-JDBC/TestOracleJDBCDriverInstallation.htm. You will need a password for the user/schema that you wish to connect to. If you don't have one, then talk to your DBA.
BTW, please remember that no production-type application and data should be used on the public APEX instance.
Maybe your problem is (or was) that you cannot connect via JDBC using the users you administered in your APEX workspace.
It seems to me that APEX users are not regular users for DB connections via JDBC. If my assumption is right, then you need to create database user with sufficient privileges to access the workspace tables.

Drupal modules calling Oracle DB

working on an Drupal architecture where I'd like to have a stand alone Drupal/DrupalCommerce installation with product definition based on content coming from an apart Oracle DB.
Does anybody have experience in integration between Drupal and ORacle.
I'm not speaking about replacing MySQL by ORacle but by using ORacle content in specific modules.
What is the best connections options : XML-RPC, REST, WebServices/SOAP ...
Did you try to define the Oracle database as a secondary database in the Drupal settings file?
http://www.php.net/manual/en/book.oci8.php
http://drupal.org/project/oracle
If you manage to connect, you could then write a custom module to switch to the secondary database, retrieve the data from the Oracle database and bring it into the Drupal context.
I would like to find out if you found other solutions.

Resources