Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Oracle SQL Developer Graph Visualization for VSCodeNew to Visual Studio Code? Get it now.
Oracle SQL Developer Graph Visualization for VSCode

Oracle SQL Developer Graph Visualization for VSCode

Oracle Corporation

oracle.com
|
826 installs
| (1) | Free
Ultimate solution to visualize and interact with your Oracle SQL Property Graphs
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

SQL Developer Graph Visualization Extension for VS Code

Overview

This extension enhances the Oracle SQL Developer extension with graph visualization capabilities for Oracle Database 23ai and above. Visualize and explore the result of GRAPH_TABLE queries as a graph.

Screenshot

Features

  • Seamless Integration: Works alongside the Oracle SQL Developer extension for VS Code
  • Interactive Graph Visualization: Visualize query results containing GRAPH_TABLE operator data
  • Rich Styling Options: Customize vertex and edge appearances with colors, icons, animations, and more
  • Graph Exploration: Navigate complex graph structures with intuitive controls

Prerequisites

  • Oracle SQL Developer Extension for VS Code, version 25.2.2 or higher (will be installed automatically if not present)
  • Oracle Database 23ai or higher
  • Use with SQL property graphs. PGQL property graphs are not supported. To convert your PGQL property graphs to SQL property graphs in Oracle Database 23ai, please refer to the corresponding migration guides of Autonomous Database Serverless or user-managed databases.

Getting Started

  1. Connect to your Oracle database using the SQL Developer extension
  2. Create a new SQL worksheet
  3. Write a SQL query that includes the GRAPH_TABLE operator
    • Note: The query must project vertex/edge IDs for the extension to work correctly
  4. Click the "Visualize SQL Graph" button in the editor toolbar or use the command palette (Ctrl/Cmd+Shift+P) and select "SQL Developer Graph Visualization (Worksheet): Visualize SQL Graph"

Basic Graph Query

SELECT *
FROM GRAPH_TABLE(
    my_graph
    MATCH (v)-[e]->(w)
    COLUMNS (
        vertex_id(v) AS vid,
        vertex_id(w) AS wid,
        edge_id(e)   AS eid
    )
)

Support

If you encounter issues, please report it on the SQL Developer for VS Code forum.

License

Oracle Graph Visualization extension for VS Code is distributed free, under the Free Use Terms and Conditions (FUTC) License.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft