{"id":12,"date":"2015-12-18T08:59:54","date_gmt":"2015-12-18T01:59:54","guid":{"rendered":"https:\/\/oracletutorial.com\/?page_id=12"},"modified":"2025-04-25T21:10:39","modified_gmt":"2025-04-26T04:10:39","slug":"what-is-oracle-database","status":"publish","type":"page","link":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/","title":{"rendered":"What Is Oracle Database"},"content":{"rendered":"\r\n<p><strong>Summary<\/strong>: In this tutorial, you will have an overview of the Oracle Database, its features, and editions.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id='what-is-a-database'>What is a database? <a href=\"#what-is-a-database\" class=\"anchor\" id=\"what-is-a-database\" title=\"Anchor for What is a database?\">#<\/a><\/h2>\r\n\r\n\r\n\r\n<p>A database is an organized collection of structured data stored electronically in a computer system.<\/p>\r\n\r\n\r\n\r\n<p>When the computer was first invented, it was mainly used for scientific research to perform calculations quickly.<\/p>\r\n\r\n\r\n\r\n<p>As computers became more widely adopted, their requirements also increased to store a larger volume of data for fast retrieval.<\/p>\r\n\r\n\r\n\r\n<p>Before the database system was invented, the flat file structure was commonly used to store data. For example, here is the comma-separated value (CSV) file that stores employee information:<\/p>\r\n\r\n\r\n<pre class=\"wp-block-code lang:plsql highlight:0 decode:true\"><span><code class=\"hljs\">first name, last name, phone\r\nJohn, Doe, (408)-245-2345\r\nJane, Doe, (503)-234-2355\r\n...\r\n<\/code><\/span><\/pre>\r\n\r\n\r\n<p>The CSV file consists of three columns, known as fields, and rows, referred to as records. When the number of rows in the flat file increases, e.g., to millions of rows, it becomes unmanageable.<\/p>\r\n\r\n\r\n\r\n<p>In the 1970s, <a href=\"https:\/\/en.wikipedia.org\/wiki\/Edgar_F._Codd\" target=\"_blank\" rel=\"noreferrer noopener\">Dr. Ted Codd<\/a>, a computer scientist, invented the <strong>relational model<\/strong> for database management. The relational model addresses many issues arising from the flat file model.<\/p>\r\n\r\n\r\n\r\n<p>According to his relational model, data is organized into entities and attributes, rather than being combined into a single structure. An entity is a person, place, or thing, and attributes describe the person, place, or thing.<\/p>\r\n\r\n\r\n\r\n<p>For example, you can use the relational model to organize employee information into an employee entity with the following attributes: employee Id, first name, last name, and phone number.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"193\" height=\"168\" class=\"wp-image-2538\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-employee-entity.png\" alt=\"what is oracle database - employee entity\" \/><\/figure>\r\n\r\n\r\n\r\n<p>Each employee may have one or more contacts. You can create a contact entity and relate the employee entity to it through a <strong>one-to-many<\/strong> relationship.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"476\" height=\"199\" class=\"wp-image-2537\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-relationship.png\" alt=\"what is oracle database - relationship\" srcset=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-relationship.png 476w, https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-relationship-300x125.png 300w\" sizes=\"auto, (max-width: 476px) 100vw, 476px\" \/><\/figure>\r\n\r\n\r\n\r\n<p>We often refer to the entities as tables, records as rows, and fields as columns.<\/p>\r\n\r\n\r\n\r\n<p>The relational model is superior to the flat file model because it eliminates duplicate data, for example, when storing employee and contact information in the same file. The employee, who has more than one contact, will appear in multiple rows.<\/p>\r\n\r\n\r\n\r\n<p>The Relational Database Management System<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">\u00a0<strong>(RDBMS)<\/strong><\/span>\u00a0manages relational data. Oracle Database is a relational database management system (RDBMS) with the largest market share.<\/p>\r\n\r\n\r\n\r\n<p>In addition to the Oracle Database, other relational database management system (RDBMS) products are available. Here are some notable ones:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><a href=\"https:\/\/www.db2tutorial.com\/\" target=\"_blank\" rel=\"noopener\">DB2<\/a> from IBM.<\/li>\r\n\r\n\r\n\r\n<li><a href=\"https:\/\/www.sqlservertutorial.net\/\" target=\"_blank\" rel=\"noopener\">SQL Server<\/a> from Microsoft.<\/li>\r\n\r\n\r\n\r\n<li><a href=\"https:\/\/www.mysqltutorial.org\/\" target=\"_blank\" rel=\"noopener\">MySQL<\/a> &#8211; the most popular open-source database, also from Oracle.<\/li>\r\n\r\n\r\n\r\n<li><a href=\"https:\/\/www.mariadbtutorial.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">MariaDB<\/a> &#8211; the open-source database from the MariaDB Foundation.<\/li>\r\n\r\n\r\n\r\n<li><a href=\"https:\/\/www.pgtutorial.com\/\" target=\"_blank\" rel=\"noopener\">PostgreSQL<\/a> &#8211; the most advanced open source database.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id='oracle-database-features'>Oracle Database features <a href=\"#oracle-database-features\" class=\"anchor\" id=\"oracle-database-features\" title=\"Anchor for Oracle Database features\">#<\/a><\/h2>\r\n\r\n\r\n\r\n<p>Oracle Database enables you to store and retrieve data quickly and safely. Here are some advantages of the Oracle Database:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><strong>Oracle Database is cross-platform<\/strong>. It can run on various hardware across operating systems, including Windows Server, Unix, and various distributions of GNU\/Linux.<\/li>\r\n\r\n\r\n\r\n<li><strong>Networking<\/strong> &#8211; Oracle Database features a networking stack that enables applications from various platforms to communicate with the Oracle Database seamlessly. For example, applications running on Windows can connect to the Oracle Database server running on Unix.<\/li>\r\n\r\n\r\n\r\n<li><strong>ACID-compliant<\/strong> &#8211; Oracle is an ACID-compliant Database that helps maintain data integrity and reliability.<\/li>\r\n\r\n\r\n\r\n<li><strong>Commitment to open technologies<\/strong> &#8211; Oracle was one of the first databases to support GNU\/Linux in the late 1990s, before GNU\/Linux became a commercial product. It has been supporting this open platform since then.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>Oracle Database has several structural features that make it popular:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><strong>Logical data structure<\/strong> &#8211; Oracle utilizes a logical data structure to store data, allowing users to interact with the database without being aware of its physical storage location.<\/li>\r\n\r\n\r\n\r\n<li><strong>Partitioning is a high-performance feature<\/strong> that enables you to divide a large table into separate pieces and store each piece across multiple storage devices.<\/li>\r\n\r\n\r\n\r\n<li><strong>Memory caching<\/strong> &#8211; the memory caching architecture enables you to scale a huge database while maintaining high performance.<\/li>\r\n\r\n\r\n\r\n<li><strong>Data Dictionary<\/strong> is a set of internal tables and views that support administering the Oracle Database more effectively.<\/li>\r\n\r\n\r\n\r\n<li><strong>Backup and recovery<\/strong> &#8211; ensure the integrity of data in the event of system failure. Oracle includes a powerful tool called Recovery Manager (RMAN), which enables DBAs to perform cold, hot, and incremental database backups, as well as point-in-time recoveries.<\/li>\r\n\r\n\r\n\r\n<li><strong>Clustering<\/strong> &#8211; Oracle Real Application Clusters (RAC) &#8211; Oracle enables high availability, which allows the system to remain up and running without interruption of services in the event of one or more server failures in a cluster.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id='basic-oracle-database-server'>Basic Oracle Database Server <a href=\"#basic-oracle-database-server\" class=\"anchor\" id=\"basic-oracle-database-server\" title=\"Anchor for Basic Oracle Database Server\">#<\/a><\/h2>\r\n\r\n\r\n\r\n<p>Oracle database is a client-server architecture. The client-server architecture is a model where clients (<strong>users<\/strong>) request services and a server (<strong>Oracle Database<\/strong>) provides them:<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1097\" height=\"497\" class=\"wp-image-2580\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/Oracle-Database-Architecture.png\" alt=\"Oracle Database Architecture\" srcset=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/Oracle-Database-Architecture.png 1097w, https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/Oracle-Database-Architecture-300x136.png 300w, https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/Oracle-Database-Architecture-768x348.png 768w, https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/Oracle-Database-Architecture-1024x464.png 1024w\" sizes=\"auto, (max-width: 1097px) 100vw, 1097px\" \/><\/figure>\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\" id='client'>Client <a href=\"#client\" class=\"anchor\" id=\"client\" title=\"Anchor for Client\">#<\/a><\/h3>\r\n\r\n\r\n\r\n<p>The client side can be an application or a user&#8217;s computer. It is a tool that allows you to interact with the Oracle database. Some Oracle client tools are SQL Developer and SQL*Plus.<\/p>\r\n\r\n\r\n\r\n<h3 class=\"wp-block-heading\" id='server'>Server <a href=\"#server\" class=\"anchor\" id=\"server\" title=\"Anchor for Server\">#<\/a><\/h3>\r\n\r\n\r\n\r\n<p>The server is where the Oracle Database runs. The server includes:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><strong>Listener<\/strong>: A background process that listens for client connection requests.<\/li>\r\n\r\n\r\n\r\n<li><strong>Oracle Instance<\/strong>: The processes that manage the database.<\/li>\r\n\r\n\r\n\r\n<li><strong>Oracle Database<\/strong>: The actual data stored on disk, such as tables.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>Note that client and server can be on the same computer.<\/p>\r\n\r\n\r\n\r\n<p>You&#8217;ll learn more about <a href=\"https:\/\/www.oracletutorial.com\/oracle-administration\/oracle-database-architecture\/\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle Database Architecture<\/a> in the <a href=\"https:\/\/www.oracletutorial.com\/oracle-administration\/oracle-database-architecture\/\" target=\"_blank\" rel=\"noreferrer noopener\">database administration section<\/a>.<\/p>\r\n\r\n\r\n\r\n<p>To learn Oracle Database, you need an Oracle Database server and a client tool.<\/p>\r\n\r\n\r\n\r\n<p>We&#8217;ll show you <a href=\"https:\/\/www.oracletutorial.com\/getting-started\/install-oracle\/\" target=\"_blank\" rel=\"noreferrer noopener\">how to set up<\/a>:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Oracle Database Server &#8211; Oracle Database Server 23ai.<\/li>\r\n\r\n\r\n\r\n<li>Client tool &#8211; SQL Developer.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id='quiz'>Quiz <a href=\"#quiz\" class=\"anchor\" id=\"quiz\" title=\"Anchor for Quiz\">#<\/a><\/h2>\r\n\r\n\r\n\r\n<p><iframe loading=\"lazy\" class=\"iframe\" src=\"\/quiz\/?quiz=what-is-oracle\" name=\"quiz\" width=\"600\" height=\"700\"><\/iframe><\/p>\r\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"12\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/\"\n\t\t\t\tdata-post-title=\"What Is Oracle Database\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"12\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/\"\n\t\t\t\tdata-post-title=\"What Is Oracle Database\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation. Oracle Database is commonly referred to as Oracle RDBMS or simply Oracle.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":149,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-12","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is Oracle Database<\/title>\n<meta name=\"description\" content=\"Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Oracle Database\" \/>\n<meta property=\"og:description\" content=\"Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/\" \/>\n<meta property=\"og:site_name\" content=\"Oracle Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-26T04:10:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-employee-entity.png\" \/>\n\t<meta property=\"og:image:width\" content=\"193\" \/>\n\t<meta property=\"og:image:height\" content=\"168\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/\",\"name\":\"What is Oracle Database\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.oracletutorial.com\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/what-is-oracle-database-employee-entity.png\",\"datePublished\":\"2015-12-18T01:59:54+00:00\",\"dateModified\":\"2025-04-26T04:10:39+00:00\",\"description\":\"Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/what-is-oracle-database-employee-entity.png\",\"contentUrl\":\"https:\\\/\\\/www.oracletutorial.com\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/what-is-oracle-database-employee-entity.png\",\"width\":193,\"height\":168,\"caption\":\"what is oracle database - employee entity\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/what-is-oracle-database\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with Oracle Database\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/getting-started\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What Is Oracle Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/\",\"name\":\"Oracle Tutorial\",\"description\":\"Oracle Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.oracletutorial.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Oracle Database","description":"Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/","og_locale":"en_US","og_type":"article","og_title":"What is Oracle Database","og_description":"Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation.","og_url":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/","og_site_name":"Oracle Tutorial","article_modified_time":"2025-04-26T04:10:39+00:00","og_image":[{"width":193,"height":168,"url":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-employee-entity.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/","url":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/","name":"What is Oracle Database","isPartOf":{"@id":"https:\/\/www.oracletutorial.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/#primaryimage"},"image":{"@id":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/#primaryimage"},"thumbnailUrl":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-employee-entity.png","datePublished":"2015-12-18T01:59:54+00:00","dateModified":"2025-04-26T04:10:39+00:00","description":"Oracle Database is an object-relational database management system developed and marketed by Oracle Corporation.","breadcrumb":{"@id":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/#primaryimage","url":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-employee-entity.png","contentUrl":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/07\/what-is-oracle-database-employee-entity.png","width":193,"height":168,"caption":"what is oracle database - employee entity"},{"@type":"BreadcrumbList","@id":"https:\/\/www.oracletutorial.com\/getting-started\/what-is-oracle-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.oracletutorial.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started with Oracle Database","item":"https:\/\/www.oracletutorial.com\/getting-started\/"},{"@type":"ListItem","position":3,"name":"What Is Oracle Database"}]},{"@type":"WebSite","@id":"https:\/\/www.oracletutorial.com\/#website","url":"https:\/\/www.oracletutorial.com\/","name":"Oracle Tutorial","description":"Oracle Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.oracletutorial.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/12","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/comments?post=12"}],"version-history":[{"count":0,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/12\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/149"}],"wp:attachment":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/media?parent=12"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}