VM Informatica power centre client to data source connectivity issue in different server - informatica-powercenter

In my Windows virtual machine, one Unix server hosted where Informatica is installed.
I want to connect oracle exadata dB which is present in different server.
I opened firewalls between Unix server to oracle exadata server. While trying to connect from Unix server using SQL client (sqlplus), I am able to connect. But from Informatica client which is present in same windows virtual machine, it is not working.
My doubt is do I need to open firewall from vm window also for client? If so does this mean, for new data source connectivity for informatica client and server we need to treat them separately?

Related

how to restore mongodb dump file on MongoDB Server On Windows VM In Azure

I m trying to restore a MongoDB dump file present on my windows machine into MongoDB server created inside azure portal as azure virtual machine, I have created this virtual machine and named it mongodbserver then I m connecting via SSH with the client for this case is the power shell CMD that I'm connecting with form my windows machine, now my questions are:
1.In order for me to restore MongoDB dump file where should it be in the server side? or either on my windows machine still I will be able to get it from there and restore it successfully in the server?
2.Can I use Filezilla client to move the database dump file into the server but the problem with this i don't have the password for the virtual machine created since I'm connecting via SSH and Filezilla will require password for it to connect.
3.After restoring the database successfully how can I connect this virtual machine with the MongoDB compass and also how can i get the database Uri in order for me to connect it with my spring application.
Any suggestions will be much appreciated!

How to connect to external oracle database from BSD

One of my work mates has set up a freenas server for storage (version9.1)
I have created a jail under this running FreeBSD 10.3-STABLE.
I want to create a web server in this jail and need to be able to connect to an external oracle (11g) database. I have the web server working but have been unable to find information on how to connect to an external oracle server from freebsd.
Is this even possible?
I am very new to BSD and Oracle.
The Ports collection contains several oracle clients/odbc drivers etc. in the databases category

Connecting to Oracle database from another machine on LAN

Am a newbie to oracle, I've Oracle Database installed on my windows machine and I can connect to the database without any problem from my machine using the sqlPlus / SQL Developer. And I have a java application in my machine which needs to connect to the Database using JDBC driver. After downloading the ojdbc driver I can connect to the java application by providing the connection url as jdbc:oracle:thin:#127.0.0.1:1521:orcl
Now, I want to know how can I connect to my oracle database that is installed in my machine (ip address:10.0.xx.xx) from the java application which is running in another machine (ip address:10.0.yy.yy). BTW both the machines are connected in LAN.
Do I need to change anything in listener configuration or in tnsnames.ora file?
I checked these links for reference before posting this question:
How to connect to an Oracle DB from another system
also Cannot access oracle using sqlplus from another machine on the LAN
Please Suggest me how can I do this one. Thanks in advance.
The JDBC url has this form
jdbc:oracle:thin:#HOST:PORT:SID
So if you wanted to connect to an oracle server running on 10.1.2.3, on port 1521 (the default one), and on a database named 'stackoverflowdb' you'd use:
jdbc:oracle:thin:#10.1.2.3:1521:stackoverflowdb

To access the oracle database from one machine to another (with LAN)

I installed oracle11g in one machine and also created the database on it.Now I have to access the already created database from another machine(Remote).
Note: In second machine I'm not install anything for oracle.
Both systems are connected with LAN.
I have to install anything for Remote machine(2nd machine)? ( i.e. Instant Client)
Is this possible to connect the oracle database from one machine to another machine?
1) If you want to connect using some third party tool like Toad, SQL Tools etc., then you need to install Oracle Client in 2nd Machine and copy the tnsnames.ora content from your server machine.
2) If you want to use SQL*Plus only, login to the Server machine using SSH or TELNET and then fire sqlplus username/password#database to access oracle.
There can be more options, may be some other person can tell you here.

Connecting to remote Oracle database using Oracle Client

I have to connect to a remote Oracle database. Connection will only work with a VPN access to the remote network. I have already setup the VPN, and that is working.
Remote team has passed TNS.ORA settings. I have hardly worked on configuring oracle and neither I am aware of the setup that I need to have on my machine. I just need to run few queries to test the data.
Can somebody guide me on the setup and the configuration I need to have on my windows 7 to connect to a remote Oracle database ?.
My first assumption was to download Oracle client. I downloaded Oracle Insta Client files, but I have no idea how to configure it to connect to a remote database. I couldn't even find any ORA file in the installed files of Insta client.
One you installed the instant client and installed it, you can conect to the remote database by using an easyconnect string. If you are in sqlplus you can do the following:
CONNECT username#[//]host[:port][/service_name][:server][/instance_name]
Lets assume your remote host is remote1 and the service_name is test (This can be retrieved from the tnsnames.ora)
connect username#//remote1/test

Resources