Quick Start
Get connected to Oracle Fusion Cloud in minutes with this step-by-step guide.Step 1: Open SQL Query Editor
First, open the Koala Data Explorer interface:- Open VS Code Command Palette:
- Windows/Linux:
Ctrl+Shift+P
- Mac:
Cmd+Shift+P
- Windows/Linux:
- Type: “Koala Data Explorer: Open SQL Query Editor”
- Press Enter
Step 2: Open Connection Manager
In the SQL Query Editor:- Look for the Manage Connections button in the top-left corner
- Click the button to open the Connection Manager dialog
The Manage Connections button looks like a database icon with a gear.
Step 3: Add New Connection
In the Connection Manager dialog:- Click Add Connection button
- Choose your authentication type:
- Basic Auth (Free): Username and password
- OAuth PKCE (Paid): Enterprise SSO
- SSO (Paid): Single Sign-On
Step 4: Configure Connection
Basic Authentication (Free)
Fill in the connection details:- Name: Friendly name for this connection (e.g., “Prod”, “Test”, “Dev”)
- Host: Your Oracle Fusion instance URL (without https://)
- Username: Your Oracle Fusion username
- Password: Your Oracle Fusion password
Do not include
https://
in the host field. Enter only the domain name.OAuth/SSO Authentication (Paid)
For OAuth PKCE authentication:- Client ID: OAuth application client ID
- Scope: Required OAuth scopes
- Authorization URL: IDCS authorization endpoint
- Token URL: IDCS token endpoint
Contact your Oracle Fusion administrator for OAuth configuration details.
Step 5: Test Connection
Before saving:- Click Test Connection button
- Wait for the connection test to complete
- Look for success message: “Connection successful!”
- Network connectivity to Oracle Fusion
- Correct hostname (no typos)
- Valid credentials
- Firewall/proxy settings
Step 6: Save Connection
Once the test passes:- Click Save button
- Connection appears in your connections list
- Click Done to close the dialog
Step 7: Connect to Oracle Fusion
Back in the SQL Query Editor:- Find the connection dropdown in the query tab header
- Select your newly created connection
- Click the Connect button
- Wait for “Connected” status
When connected successfully, you’ll see:
- Green “Connected” status
- Data sources loading in the sidebar (Paid feature)
- Ready to execute queries
Step 8: Run Your First Query
Try a simple query to verify everything works:Ctrl+Enter
(Windows/Linux) or Cmd+Enter
(Mac) to execute.
Connection Best Practices
Naming Conventions
Use clear, descriptive names:- ✅ “Production - Finance”
- ✅ “DEV Environment”
- ✅ “Test Instance - US”
- ❌ “Connection 1”
- ❌ “Oracle”
Security Recommendations
- Never share credentials: Each user should use their own account
- Use SSO when available: More secure than basic auth
- Rotate passwords regularly: Update connections after password changes
- Limit access: Only connect to instances you need
Multiple Environments
Organize connections by environment:Common Connection URLs
Oracle Fusion Cloud
Regional Instances
Troubleshooting Connection Issues
”Connection Failed” Error
Check these common causes:-
Incorrect Host:
- Remove
https://
prefix - Verify no trailing slashes
- Check for typos
- Remove
-
Invalid Credentials:
- Verify username format
- Check password is current
- Ensure account isn’t locked
-
Network Issues:
- Test Oracle Fusion access in browser
- Check VPN connection if required
- Verify firewall rules
”Timeout” Error
Increase timeout in settings:“Certificate” Error
For self-signed certificates:Only disable SSL verification for development/test environments.
Proxy Configuration
If behind a corporate proxy:Managing Multiple Connections
Switch Between Connections
- Use the dropdown in the query tab
- Select different connection
- Click Connect
Edit Existing Connections
- Open Manage Connections
- Click edit icon next to connection
- Update details
- Test and save
Delete Connections
- Open Manage Connections
- Click delete icon
- Confirm deletion
Deleting a connection doesn’t affect saved queries or history.
Connection Status Indicators
Status | Meaning | Action |
---|---|---|
🔴 Disconnected | Not connected | Click Connect button |
🟡 Connecting | Connection in progress | Wait for completion |
🟢 Connected | Active connection | Ready to query |
⚠️ Error | Connection failed | Check credentials/network |