Home

Oracle connection?

I have a connection to an Oracle database that is through my work and SQL Developer "magically" connects. I would like to get the parameters needed to establish a LinqPad connection to this database. It seems that there are more things need than the username/password. From the look of it I need server name, port, service name, schema name(s), etc. I come from an MS SQL background and all this seems foreign to me. Ideas?

Comments

  • The only mandatory items are Server and User ID. Sometimes a Service Name will also be required.

    If the server name is DBSERVER and the service name is orclpdb.mshome.net, you will commonly see it written like this:

    DBSERVER/orclpdb.mshome.net
    
Sign In or Register to comment.