Home > Software engineering >  Connecting to Oracle data source via DataGrip (HR scheme)
Connecting to Oracle data source via DataGrip (HR scheme)

Time:07-28

I downloaded schemes from this website (https://github.com/oracle-samples/db-sample-schemas/releases/tag/v21.1)

but I don't know how to work on them in the DataGrip, that is, how to connect and which user data to use for connecting to the Oracle data source (Host, SID, Port, user, password etc)

Thanks in advance!

CodePudding user response:

Schemas are the content. And you need a place where to place this content.

So, create a database server first. You can do that via Docker or in the cloud. Here is the Dockerfile you can use to create a docker container with the oracle database running:

https://github.com/DataGrip/docker-env-oracle/blob/master/12.2.0.1/Dockerfile

During installation, you will set the username, password, port etc

  • Related