Skip to main content
Version: 3.0.0

Create an Oracle Connection

This guide shows you how to create an Oracle connection in Ascend

Prerequisites

  • An existing Ascend project (see: Create a Project)
  • An existing Ascend Workspace (see: Setting Up a Workspace)
  • Credentials for your MySQL database
    • Username: Username of the account used to connect to the Oracle server
    • Password: Password of the account used to connect to the Oracle server

Locate Your Project Folder

  1. From your Ascend Instance Homepage, click on your Workspace to open it.
  2. From here, click on the Files icon on the left navigation bar. This will open the File Tree in the left panel.
  3. In your File Tree, locate your top-level project folder and open it.
  4. Within the project folder, locate the connections folder.

Add a New Connection File

  1. Right-click on the connections folder and click New File.
  2. Provide the file with a name and a .yaml extension, such as oracle_connection.yaml. This will open the empty file in the build pane.
  3. From here, you can enter the details for your connection.

Enter Connection Details

Your new connection file will open in the build panel. Enter the following YAML configuration, replacing the placeholder values with your Oracle connection details:

/my_project/connections/oracle_connection.yaml
connection:
oracle:
host: <host>
port: 1521 # default value is 1521, can modify as needed
database: <database>
user: <user>
password: ${secret.<your_vault>.<password>}

To view all available connection options, see the Oracle Connection Reference.

Once you have entered your Connection details, click "Save" to save the file and click "Build Project" to apply the changes.

Now that you have created a Oracle connection, you can start ingesting data from Oracle or writing data out to Oracle.