Oracle Database Graphical Database Designer

29.08.2019
  • The performance of the computer executing running Oracle Database. The performance of the database during data access operations. The efficiency of backup and recovery procedures for the database. Plan the relational design of the database objects and the storage characteristics for each of these objects.
  • The performance of the computer executing running Oracle Database. The performance of the database during data access operations. The efficiency of backup and recovery procedures for the database. Plan the relational design of the database objects and the storage characteristics for each of these objects.

Oracle SQL Developer has quickly become a popular graphical tool for database development. New features have been added in each release, demonstrating Oracle's commitment to continuing to enhance this product. With Oracle SQL Developer, you can browse database objects, run SQL statements and scripts.

06 March 2018

SQL Server 2017 now includes a new feature to represent complex relationships in data called Graph Databases. Robert Sheldon introduces Graph Databases in the first article of this new series.

The series so far:

Graphical

With the release of SQL Server 2017, Microsoft added support for graph databases to better handle data sets that contain complex entity relationships, such as the type of data generated by a social media site, where you can have a mix of many-to-many relationships that change frequently. Graph databases use the same table structures found in traditional SQL Server databases and support the same tools and T-SQL statements, but they also include features for storing and navigating complex relationships.

This article is the first in a series about SQL Server graph databases. The article introduces you to basic graph concepts and demonstrates how to create and populate graph tables, using SQL Server Management Studio (SSMS) and a local instance of SQL Server 2017. In the articles to follow, we’ll dig into how to query a graph database and modify its data, but for this article, we’re starting with the basics.

The SQL Server Graph Database

SQL Server’s graph databases can help simplify the process of modeling data that contains complex many-to-many and hierarchical relationships. At its most basic, a graph database is a collection of nodes and edges that work together to define various types of relationships. A node is an entity such as a person or location. An edge is a relationship between two entities. For example, a relationship might exist between a location such as Toledo and a person named Chris, who lives in Toledo. Chris and Toledo are the entities, and ‘lives in’ is the relationship between the two.

A node table in SQL Server is a collection of similar entities, and an edge table is a collection of similar relationships. To help understand how this works, consider the graph model shown in the following figure, which is based on a fictitious fish-lovers forum. The model includes three nodes (FishSpecies, FishLover, and FishPost) and three edges (Likes, Posts, and LinksTo).

The rectangles represent the nodes, and the arrows connecting the nodes represent the edges, with the arrows pointing in the direction of the relationship. For example, the Likes edges can define any of the following relationships:

  • A fish lover likes a fish species.
  • A fish lover likes a post about fish.
  • A fish lover likes another fish lover.

You can represent all three relationships as data in a single edge table in the graph database, with each relationship in its own row. A node table works much the same way, except that it includes a row for each entity. You can also associate properties with both nodes and edges. A property is a key-value attribute that is defined as a column in a node or edge table. For example, the FishSpecies node might include properties for storing the common and scientific names of each species. The properties are created as user-defined columns in the FishSpecies table. When creating a node table, you must include at least one property.

For most operations, node and edge tables work just like any other SQL Server user-defined table. Although there are a few limitations—such as not being able to declare temporary tables or table variables as node or edge tables—most of the time you’ll find that working with graph tables will be familiar territory.

Where things get a bit unclear is with the graph database itself. Although the name might suggest that you’re creating a new type of database object, that is not the case. A graph database is merely a logical construct defined within a user-defined database, which can support no more than one graph database. The existence of the graph database is relatively transparent from the outside and, for the most part, is not something you need to be concerned about. When working with graph databases, your primary focus will be on the graph tables and the data they contain.

In general, a graph database provides no capabilities that you cannot achieve by using traditional relational features. The promise of the graph database lies in being able to organize and query certain types of data more efficiently. Microsoft recommends that you consider implementing a graph database in the following circumstances:

  • You need to analyze highly interconnected data and the relationships between that data.
  • You’re supporting data with complex many-to-many relationships that are continuously evolving.
  • You’re working with hierarchical data, while trying to navigate the limitations of the HierarchyID data type.

SQL Server’s graph database features are fully integrated into the database engine, leveraging such components as the query processor and storage engine. Because of this integration, you can use graph databases in conjunction with a wide range of components, including columnstore indexes, Machine Learning Services, SSMS, and various other features and tools.

Defining Graph Node Tables

Oracle Database Graphical Database Designer Salary

To create a graph database based on the model shown in the preceding figure, you must create three node tables and three edge tables. Microsoft has updated the CREATETABLE statement in SQL Server 2017 to include options for defining either table type. As already noted, you can create the tables in any user-defined databases. For the examples in this article, I created a basic database named FishGraph, as shown in the following T-SQL code:

2
4
6
GO
GO
GO

As you can see, there’s nothing special going on here. You create the database just like any other user-defined database. There’s nothing special you need to do to set it up to support a graph database.

If you plan to try out these examples for yourself, you can use the FishGraph database or one of your own choosing. Whatever you decide, the next step is to create the FishSpecies node table, using the following CREATETABLE statement:

2
4
6
8
GO
GO
FishIDINTIDENTITYPRIMARYKEY,
ScientificNameNVARCHAR(100)NOTNULL

The column definitions should be fairly straightforward. What’s important here is the ASNODE clause, which you must include to create a node table. When you specify this clause, the database engine adds two columns to the table (which we’ll get to shortly) and creates a unique, non-clustered index on one of those columns.

You can verify whether the table has been created as a node table by querying the sys.tables view. With the release of SQL Server 2017, Microsoft updated the view to include the is_node and is_edge bit columns. If the table is a node table, the is_node column value is set to 1, and the is_edge column value is set to 0. If an edge table, the values are reversed. The following example uses the view to confirm that the FishSpecies table has been defined correctly:

2
WHEREname='FishSpecies';

The SELECT statement returns the results shown in the following figure, which indicate that FishSpecies was created as a node table.

Microsoft also updated the sys.columns view to include the graph_type and graph_type_desc columns. You can use the view and new columns to learn more about the FishSpecies table:

Hp laserjet m14-m17 os x driver windows 7

2
FROMsys.columns

The following figure shows the columns created for the FishSpecies table.

When you create a node table, the database engine adds the graph_id_<hex_string> and $node_id_<hex_string> columns and creates a unique, non-clustered index on the $node_id column. The database engine uses the first column for internal operations and makes the second column available for external access. The $node_id column stores a unique identifier for each entity, which you can view when querying the data. This is the only column of the two you need to be concerned with. In fact, if you were to query the table directly, you would see only the $node_id column, not the graph_id column.

The graph_type and graph_type_desc columns returned by the sys.columns view are specific to the auto-generated columns in a graph table. The columns indicate the types of columns that the database engine generated. The type is indicated by a predefined numerical value and its related description. Microsoft does not provide a great deal of specifics about these codes and descriptions, but you can find some details in the Microsoft document SQL Graph Architecture. Again, your primary concern is with the $node_id column and the data it contains.

After you’ve created your table, you can start adding data. Running an INSERT statement against a node table works just like any other table. You specify the target columns and their values, as shown in the following example:

2
4
6
8
10
INSERTINTOFishSpecies (CommonName,ScientificName)VALUES
('Chinook salmon','Oncorhynchus tshawytscha'),
('European seabass','Morone (Decentrarchus) labrax'),
('Japanese striped knife jaw','Oplegnathus faciatus'),
('Pacific herring','Clupea pallasi'),
('Sole (Dover)','Solea solea'),

Of course, you can add whatever fish species you have a particular fondness for. My choices here were completely arbitrary. But if you do stick with my data and then query the FishSpecies table, your results should look similar to those in the following figure.

As mentioned above, the graph_id column does not show up in the results, but the $node_id column does, complete with auto-generated values. The database engine creates each value as a JSON string that provides the type (node or edge), schema, table, and a BIGINT value unique to each row. As expected, the database engine also returns the values in the user-defined columns, just like a typical relational table.

The next step is to create and populate the FishLover node table, using the following T-SQL code:

2
4
6
8
10
12
GO
FishLoverIDINTIDENTITYPRIMARYKEY,
)ASNODE;
('powerangler'),
('hooked'),
('underwatercasey');

The table includes only two user-defined columns—FishLoverID and UserName—but you can define as many columns as necessary. For example, you might want to include first and last names, contact information, and other details, depending on the nature of the application. Once you’ve created the table, you can then run a query to verify the data. Your results should look similar to those shown in the following figure.

You can then take the same steps to create and populate the FishPost table, passing in whatever message text you wish:

2
4
6
8
10
12
GO
PostIDINTIDENTITYPRIMARYKEY,
MessageTextNVARCHAR(800)NOTNULL
INSERTINTOFishPost (Title,MessageText)VALUES
('The one that got away','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.'),
('A study in fish','Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.'),
('Hook, line and sinker ','Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.'),
('So many fish, so little time','Nullam dictum felis eu pede mollis pretium. Integer tincidunt.'),
('My favorite fish','Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.');

The following figure shows the results you would see if you stuck with the Lorem Ipsum data.

That’s all there is to creating and populating your node tables. Except for the ASNODE clause in the CREATETABLE statement, most everything else is business as usual.

Defining Graph Edge Tables

Creating an edge table is similar to creating a node table except that you must specify the ASEDGE clause rather than the ASNODE clause. For example, to create the Posts table, you would use the following CREATETABLE statement:

2
4
GO
ImportantFlagBITNOTNULLDEFAULT0

The table definition is similar to a node table except that it does not include a primary key column (and, of course, it takes the ASEDGE clause). In this case, a primary key is not necessary, but if at some point you determine that you need a primary key, you certainly can add one. (You’ll see shortly why primary keys are useful for the node tables.)

Notice that the table definition also includes the ImportantFlag column. I included this primarily to demonstrate that you can add user-defined columns to your edge table, just like with node tables. That said, it’s not uncommon to create an edge table without user-defined columns, unlike a node table, which must include at least one user-defined column.

After creating the edge table, you can verify that it’s been defined correctly by querying the sys.tables view, as you saw earlier:

2
WHEREname='Posts';

If you did everything right, your results should look like those in the following figure.

You can also query the sys.tables view to verify column details, just like you did before:

2
FROMsys.columns

The following figure shows the results returned on my system.

As you can see, the database engine adds eight columns to an edge table, rather than the two you saw with node tables. Again, refer to the SQL Graph Architecture document for descriptions of each column type. That majority of these columns are used by the database engine for internal operations. You need to be concerned primarily with the following three columns:

  • The $edge_id_<hex_string> column uniquely identifies each relationship.
  • The $from_id_<hex_string> column stores the $node_id value associated with the entity in the table where the relationship originates.
  • The $to_id_<hex_string> column stores the $node_id value associated with the entity in the table where the relationship terminates.

As with the $node_id column in a node table, the database engine automatically generates values for $edge_id column. However, you must specifically add values to the $from_id and $to_id columns to define a relationship. To demonstrate how this works, we’ll start with a single record:

2
(SELECT$node_idFROMFishLoverWHEREFishLoverID=1),

The INSERT statement is defining a relationship in the Posts table between a FishLover entity whose FishLoverID value is 1 and a FishPost entity whose PostID value is 3. Notice that you can use the $node_id, $from_id, and $to_id aliases to reference the target columns, without having to come up with the hex strings.

To add data to the $from_id column, you must specify the $node_id value associated with the FishLover entity. One way to get this value is to include a subquery that targets the entity, using its primary key value. You can take the same approach for the $from_id column.

Inserting the data in this way demonstrates why it’s useful to add primary keys to the node tables, but not necessary for the edge tables. The primary keys on the node tables make it much easier to provide the $node_id value to the INSERT statement.

If you now query the Posts table, your results should look similar to those shown in the following figure.

The table should contain the new relationship, with the ImportantFlag set to 0, the default. You can now add a few more rows, using the following INSERT statements:

2
4
6
8
10
12
(SELECT$node_idFROMFishLoverWHEREFishLoverID=3),
INSERTINTOPosts ($from_id,$to_id)VALUES(
(SELECT$node_idFROMFishPostWHEREPostID=5));
INSERTINTOPosts ($from_id,$to_id,ImportantFlag)VALUES(
(SELECT$node_idFROMFishPostWHEREPostID=4),1);
INSERTINTOPosts ($from_id,$to_id,ImportantFlag)VALUES(
(SELECT$node_idFROMFishPostWHEREPostID=1),1);

Notice that the last two INSERT statements also provide a value for the ImportantFlag column. When you query the Posts table, your results should now include all five rows.

The next step is to create and populate the Likes table, using the following T-SQL code:

2
4
6
8
10
12
GO
INSERTINTOLikes ($from_id,$to_id)VALUES(
(SELECT$node_idFROMFishSpeciesWHEREFishID=8));
(SELECT$node_idFROMFishLoverWHEREFishLoverID=5),
INSERTINTOLikes ($from_id,$to_id)VALUES(
(SELECT$node_idFROMFishLoverWHEREFishLoverID=4));

You can, of course, define any relationships you want. The important point to notice here is that you’re not limited to any one set of nodes. For example, the first INSERT statement creates a relationship between FishLover and FishSpecies, the second statement creates a relationship between FishLover and FishPost, and the third statement creates a relationship between FishLover and FishLover. This gives us the query results shown in the following figure.

You can take the same approach when creating and populating the LinksTo table:

2
4
6
8
10
12
GO
INSERTINTOLinksTo ($from_id,$to_id)VALUES(
(SELECT$node_idFROMFishSpeciesWHEREFishID=6));
(SELECT$node_idFROMFishPostWHEREPostID=4),
INSERTINTOLinksTo ($from_id,$to_id)VALUES(
(SELECT$node_idFROMFishPostWHEREPostID=5));

The following figure shows what the data should look like after being added to the table, assuming you followed the example.

With a graph database, you can add a wide range of relationships between originating and terminating nodes. You can also easily incorporate changes to the graph model. For example, you might decide to add a FishRecipes node table for storing the fish recipes that users post to the forum, in which case, you can leverage the existing Posts, Likes, and LinksTo edge tables.

Moving Forward With Graph Databases

Because Microsoft includes the graph database features as part of the SQL Server database engine, you can easily try them out without have to install or reconfigure any components. Best of all, you can use the same tools and procedures you’ve been using all along to create and populate node and edge tables. In the articles to follow, we’ll cover how to query and modify graph data and take a closer look at working with hierarchical data, so be sure to stay tuned.

Like Microsoft SQL Server Management Studio for MSSQL?

HaoestHaoest
5,96028 gold badges81 silver badges102 bronze badges

closed as off-topic by Jon Heller, jball, Mark Hildreth, DwB, GravitonJul 12 '13 at 2:50

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • 'Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.' – jball, Mark Hildreth, DwB, Graviton
If this question can be reworded to fit the rules in the help center, please edit the question.

9 Answers

Yes, there is Oracle SQL Developer, which is maintained by Oracle.

Oracle SQL Developer is a free graphical tool for database development. With SQL Developer, you can browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. You can also run any number of provided reports, as well as create and save your own. SQL Developer enhances productivity and simplifies your database development tasks.

SQL Developer can connect to any Oracle Database version 10g and later and runs on Windows, Linux and Mac OSX.

RedFilterRedFilter
138k30 gold badges247 silver badges256 bronze badges

There are a few options:

  • Database.net is a windows GUI to connect to many different types of databases, oracle included.
  • Oracle SQL Developer is a free tool from Oracle.
  • SQuirreL SQL is a java based client that can connect to any database that uses JDBC drivers.

I'm sure there are others out there that you could use too..

Bryan RehbeinBryan Rehbein
8,2113 gold badges30 silver badges41 bronze badges
It GruntIt Grunt
2,6103 gold badges13 silver badges23 bronze badges

you can always use the web based management tool that comes with oracle express db. have tried using it? you can access it through http://host:port/apex if i remember correctly..

Alternative solutions are Oracle SQL Developer, TOAD etc..

Abdel RaoofAbdel Raoof
16.3k8 gold badges72 silver badges123 bronze badges

SQLTools is an almost fully functional and free Oracle GUI:

Oracle Database Graphical Database Designer Resume

rustyxrustyx
35.5k10 gold badges108 silver badges149 bronze badges

You could try this: it's a very good tool, very fast and effective.

michaelb958
3,9007 gold badges24 silver badges33 bronze badges
Soma SarkarSoma Sarkar

Try this : https://code.google.com/p/oracle-gui/

Haven't used it yet, but looks good though.

RaulRaul

Try odbTools at http://odbtools.software.informer.com - it is free.

odbTools is set of integrated GUI tools to manage, administer, monitor and tune the Oracle database.

Florian Greinacher
12.1k1 gold badge26 silver badges48 bronze badges
MichelMichel

VSQL++ for Oracle is a simplify database management for oracle.

JacketJacket

Not the answer you're looking for? Browse other questions tagged oracle or ask your own question.

Comments are closed.