{"id":1068,"date":"2020-11-16T07:00:00","date_gmt":"2020-11-16T04:00:00","guid":{"rendered":"https:\/\/www.dataplatform.gr\/?p=1068"},"modified":"2023-02-28T02:34:49","modified_gmt":"2023-02-27T23:34:49","slug":"vaseis-dedomenon-oracle-vs-sql-server","status":"publish","type":"post","link":"https:\/\/www.dataplatform.gr\/en\/vaseis-dedomenon-oracle-vs-sql-server\/","title":{"rendered":"The Great Database Battle \u2013 SQL Server vs Oracle Database"},"content":{"rendered":"<p>The two most famous <strong>RDBMS<\/strong> (Relational Database Management Systems) with the largest market shares are o <strong>Microsoft SQL Server <\/strong>and the <strong>Oracle Database<\/strong>.<\/p>\n\n\n\n<p>They have a lot in common but also a lot of differences between them.<\/p>\n\n\n\n<p>Let&#039;s see in detail:<\/p>\n\n\n\n<figure class=\"wp-block-table aligncenter is-style-stripes\"><table class=\"has-fixed-layout\"><thead><tr><th><img decoding=\"async\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/1-vs.png\" alt=\"\" style=\"width: 100px;\"><\/th><th><img decoding=\"async\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/2-vs.png\" alt=\"\" style=\"width: 100px;\"><\/th><\/tr><\/thead><tbody><tr><td>  <\/td><td><\/td><\/tr><tr><td><strong>Filegroups: <\/strong>It is a set of datafiles which define a group in which we can store objects such as tables. The default filegroup is called <strong>primary<\/strong>.<\/td><td><strong>Tablespaces: <\/strong>Tablespaces do a similar job. The default tablespace where all objects are stored is called <strong>USERS<\/strong>.<\/td><\/tr><tr><td>The smallest storage size is the <strong>Page<\/strong> (8K) and is stable.<\/td><td>We have changed  <strong>db_block_size<\/strong> depending on the use we want. We usually set a smaller size for transactional databases and a larger one for data-warehouses.<\/td><\/tr><tr><td><strong>Fill Factor:<\/strong> It is the percentage that one is allowed to fill <strong>Page<\/strong> in an Index (default behavior is at 100%) and is important to avoid page splits. This space is reserved for future inserts and updates. <\/td><td><strong>PCTFREE:<\/strong> is the percentage one is allowed to fill <strong>Block<\/strong>. This space is reserved for future updates and cannot be reserved by inserts. <br><br><strong>High Water Mark:<\/strong> It is the boundary between free and occupied space in a set of data blocks \/ pages (<strong>segment<\/strong>). As its size increases, so does the <strong>HWM<\/strong>. HWM is not reduced by deletes but only if a table is truncate, redefinition, shrink or deallocate. <\/td><\/tr><tr><td><strong>Schema:&nbsp; <\/strong>It is a logical group that allows the separation of database objects such as the tables. Each schema belongs to a database user. As default schema we have <strong>dbo<\/strong>.<\/td><td><strong>User<\/strong>\/<strong>Schema: <\/strong>Each user who creates an object is under his schema and in order for another user to see it, he must have the corresponding rights. As default schema we have <strong>users<\/strong>.<\/td><\/tr><tr><td><strong>Autocommit: <\/strong>Whenever we make a transaction such as e.g. an update of a record is done by itself <strong>commit<\/strong> (save). *unless it is inside an explicit transaction (<strong>begin tran<\/strong>).<\/td><td><strong>No auto commit: <\/strong>Every time we do a transaction we should commit or rollback to complete it.<\/td><\/tr><tr><td><strong>select creates blocking with the default isolation level (read committed): <\/strong>When a user selects a table and at the same time another user updates the same table, those records will be blocked until the first user finishes. If there is a third user, it will have to wait for the second one and so on.<\/td><td><strong>select does not create blocking (with the exception of select for update):<\/strong> Due to its architecture (with the undo tablespace) that part of the block from the datafiles is read or updated during a select, the original image of the blocks remains in the undo tablespace. So in the case of changes, the data is read by undo and thus there are no blockings. *When we have the well-known Error ORA-01555 contains the message, \u201csnapshot too old.\u201d means we should give more space to the undo tablespace. &nbsp;<\/td><\/tr><tr><td><strong>Temporal Tables: <\/strong>It is the technology that enables row versioning in the table so that we can call past queries. For example:<br><em>SELECT *, [SysStartTime],[SysEndTime] FROM [dbo].EMP FOR SYSTEM_TIME AS OF &#039;2020-05-04 09:30:00&#039; &nbsp;<\/em><\/td><td><strong>Flashback query:<\/strong> The corresponding technology in Oracle is the flashback query which works similarly. For example:<br><em>SELECT * FROM EMP AS OF TIMESTAMP TO_TIMESTAMP(&#039;2020-05-04 09:30:00&#039;, &#039;YYYY-MM-DD HH:MI:SS&#039;) &nbsp;<\/em><\/td><\/tr><tr><td>It doesn&#039;t have a modern one <strong>Active\/Active<\/strong> solution but now in an asynchronous form has the <strong>Azure Data Sync<\/strong>. As <strong>Active\/Passive<\/strong> has the technology <strong>Always On Availability Groups<\/strong> and <strong>Failover Cluster Instance<\/strong>.<\/td><td><strong>Active\/Active<\/strong> Clustering with Oracle Real Application Cluster (<strong>Oracle RAC<\/strong>): One of the most powerful cards that allows you to have multiple nodes connected to the same disk array for simultaneous access <strong>read\/write<\/strong>.<\/td><\/tr><tr><td><strong>Log shipping with Norecovery<\/strong>: We can have as a disaster recovery solution a server that will send the logs to another where the database will remain closed until we want to open it.<\/td><td><strong>Passive Data Guard:<\/strong>  Corresponding technology.<\/td><\/tr><tr><td><strong>Always On Availability Groups \/ Log shipping with standby \/ Transactional replication: <\/strong>Disaster recovery solutions with one server sending the information to other servers, with the difference that the database can be open for reading <strong>readonly<\/strong> on remote nodes.<\/td><td><strong>Active Data Guard: <\/strong>Corresponding technology with capability <strong>readonly<\/strong>.<\/td><\/tr><tr><td><strong>Full<\/strong><strong> Backup<\/strong><strong>: <\/strong>It is the backup of the entire database.<\/td><td><strong>Level 0 backup:<\/strong> It is the backup of the entire database.<\/td><\/tr><tr><td><strong>Differential<\/strong><strong> Backup<\/strong><strong>: <\/strong>It is the backup of the blocks that have changed since the last full backup was taken.<\/td><td><strong>Level 1 backup: <\/strong>It is the backup of blocks that have changed since the last level 0 backup was taken.<\/td><\/tr><tr><td><strong>Transaction Log:&nbsp; <\/strong>It records all the transactions that have taken place in the database.<\/td><td><strong>Redo Log: <\/strong>It records all the transactions that have taken place in the database.<\/td><\/tr><tr><td><strong>Transaction Log Backup: <\/strong>It is the transaction log backup.<\/td><td><strong>Archived Log \/ backup: <\/strong>It is the redo log that has been archived by the archiver service. In archived logs we can call one <strong>archived log backup<\/strong>.<\/td><\/tr><tr><td><strong>Simple Recovery Model: &nbsp;<\/strong>When the database is in a simple recovery model, the transaction log can be rewritten without having been backed up. This has the effect that the database cannot be restored to a point in time.<\/td><td><strong>Noarchivelog Recovery Model: <\/strong>It is the equivalent in terms of the redo log with the difference where when the base is in noarchivelog in Oracle, <strong>it does not have the possibility to take a backup of the database online<\/strong>. In this case, the database should not be accessible in order to take a backup.<\/td><\/tr><tr><td><strong>Full Recovery Model: <\/strong>&nbsp;When the database is in full recovery model, the only way to keep the transaction log from filling\/growing is with a transaction log backup so that the existing one can be reused. In this recovery model there is the possibility of restore point in time<\/td><td><strong>Archivelog Recovery Model: <\/strong>When the database is in archivelog recovery model the only way to keep the redo log from filling up is with an archivelog backup so that the existing one can be reused. In this recovery model there is the possibility to restore <strong>point in time<\/strong><\/td><\/tr><tr><td><strong>TSQL: <\/strong>It is an extension of the SQL language from Microsoft. They have differences in structure as well as in behavior e.g. a null value with an empty text &#039; &#039; is different<\/td><td><strong>PLSQL: <\/strong>It is an extension of the SQL language from Oracle. In Oracle in the same example a null value with an empty text &#039; &#039; is the same since it is converted.<\/td><\/tr><tr><td><strong>Snapshot Database: <\/strong>We have the ability to be able to save the database image at a specific point in time, so that in case many changes are made and we need to go back immediately without having to restore, this is possible.<\/td><td><strong>Flashback Database: <\/strong>Correspondingly in Oracle, we can get a guarantee restore point<strong> <\/strong>so that in case many changes are made and we need to go back immediately without having to restore, this is possible.<\/td><\/tr><tr><td><strong>Server<\/strong><strong> Memory<\/strong><strong>: <\/strong>It is the memory set for use by the instance.<\/td><td><strong>SGA+PGA: <\/strong>Memory is divided into System Global Area and Program Global Area. The first is common for all sessions, while in the second each session has its own.<\/td><\/tr><tr><td><strong>bcp in \/ bcp out: <\/strong>It is a SQL Server application with the ability to export and import data from tables using command lines.<\/td><td><strong>impdb \/ expdb: <\/strong>They are Oracle applications with the ability to export and import various objects such as tables, procedures, meta-data, indexes, etc. It can be used from command lines.<\/td><\/tr><tr><td><strong>The primary key becomes a clustered index key of exile: <\/strong>When a field is defined as primary key, the table with clustered index (btree structure) is automatically created in this field.<\/td><td><strong>There is no default clustered index behavior. <\/strong>Tables with primary keys can be heap. When creating it, it should have the organization index parameter (for a corresponding btree structure).<\/td><\/tr><tr><td><strong>sqlcmd: <\/strong>It is the implementation of SQL Server so that database queries can be managed through command lines.<\/td><td><strong>Sqlplus: <\/strong>It is Oracle&#039;s equivalent application so that database queries can be managed through command lines.<\/td><\/tr><tr><td><strong>instance: <\/strong>A resource set with multiple databases<\/td><td><strong>instance: <\/strong>A set of resources with one database each<br><\/td><\/tr><tr><td><strong>Indexed views<\/strong>: Unlike simple views \u2013 which point to real tables\/views \u2013 indexed views have their own physical existence. After creating them, a clustered index should be created in the view so that it is considered indexed.<\/td><td><strong>Materialized views<\/strong>: They work like the indexes views, with the difference that their creation is done easily with a single command.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>Of course, it is not possible to make a complete comparison in one article. An attempt has been made to cover the general picture of the main differences between the two databases.<\/p>\n\n\n\n<p>Each of them is recommended for use depending on the situation. They also have quite different pricing policies.<\/p>\n\n\n\n<h2 class=\"has-vivid-cyan-blue-color has-text-color wp-block-heading\">Sources:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/sql-server\/what-s-new-in-sql-server-ver15?view=sql-server-ver15\" target=\"_blank\" rel=\"noreferrer noopener\">SQL Server Docs<\/a><\/li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https:\/\/docs.oracle.com\/cd\/B19306_01\/server.102\/b14220\/toc.htm\" target=\"_blank\">Oracle Database Concepts<\/a><\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>The two best-known RDBMS (Relational Database Management Systems) with the largest market shares are Microsoft SQL Server and Oracle Database. They have a lot in common but also a lot of differences between them. Let&#039;s see in detail: Filegroups: It is a set of datafiles which define a group in which we can store objects such as tables. [...]<\/p>","protected":false},"author":1,"featured_media":686,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11,15,16],"tags":[29,23,5,30,6],"class_list":["post-1068","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-ms-sqlserver","category-oracle-db","tag-databases","tag-microsoft","tag-oracle-database","tag-rdbms","tag-sqlserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd - SQL Server vs Oracle Database - DataPlatform.gr<\/title>\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.dataplatform.gr\/en\/vaseis-dedomenon-oracle-vs-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd - SQL Server vs Oracle Database - DataPlatform.gr\" \/>\n<meta property=\"og:description\" content=\"\u03a4\u03b1 \u03b4\u03cd\u03bf \u03c0\u03b9\u03bf \u03b3\u03bd\u03c9\u03c3\u03c4\u03ac RDBMS (Relational Database Management Systems) \u03bc\u03b5 \u03c4\u03b1 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1 \u03bc\u03b5\u03c1\u03af\u03b4\u03b9\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b1\u03b3\u03bf\u03c1\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03bf Microsoft SQL Server \u03ba\u03b1\u03b9 \u03b7 Oracle Database. \u0388\u03c7\u03bf\u03c5\u03bd \u03c0\u03bf\u03bb\u03bb\u03ac \u03ba\u03bf\u03b9\u03bd\u03ac \u03b1\u03bb\u03bb\u03ac \u03ba\u03b1\u03b9 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03be\u03cd \u03c4\u03bf\u03c5\u03c2. \u03a0\u03ac\u03bc\u03b5 \u03bd\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03b1\u03bd\u03b1\u03bb\u03c5\u03c4\u03b9\u03ba\u03ac: Filegroups: \u0395\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03c3\u03cd\u03bd\u03bf\u03bb\u03bf \u03b1\u03c0\u03cc datafiles \u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03bf\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03bf\u03bc\u03ac\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03c5\u03bc\u03b5 objects \u03cc\u03c0\u03c9\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dataplatform.gr\/en\/vaseis-dedomenon-oracle-vs-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"DataPlatform.gr\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dataplatform.gr\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-16T04:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-27T23:34:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver_vs_oracle.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Stratos Matzouranis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stratos Matzouranis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/\"},\"author\":{\"name\":\"Stratos Matzouranis\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\"},\"headline\":\"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd &#8211; SQL Server vs Oracle Database\",\"datePublished\":\"2020-11-16T04:00:00+00:00\",\"dateModified\":\"2023-02-27T23:34:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/\"},\"wordCount\":430,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver_vs_oracle.png\",\"keywords\":[\"Databases\",\"Microsoft\",\"Oracle Database\",\"RDBMS\",\"SQL Server\"],\"articleSection\":[\"Databases\",\"Microsoft SQL Server\",\"Oracle Database\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/\",\"name\":\"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd - SQL Server vs Oracle Database - DataPlatform.gr\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver_vs_oracle.png\",\"datePublished\":\"2020-11-16T04:00:00+00:00\",\"dateModified\":\"2023-02-27T23:34:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver_vs_oracle.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver_vs_oracle.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/vaseis-dedomenon-oracle-vs-sql-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Databases\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd &#8211; SQL Server vs Oracle Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"name\":\"dataplatform.gr - Sky is not the limit!\",\"description\":\"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dataplatform.gr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\",\"name\":\"dataplatform.gr\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"width\":322,\"height\":139,\"caption\":\"dataplatform.gr\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dataplatform.gr\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dataplatform-gr\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\",\"name\":\"Stratos Matzouranis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"caption\":\"Stratos Matzouranis\"},\"sameAs\":[\"https:\\\/\\\/www.dataplatform.gr\"],\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/en\\\/author\\\/stratos-matzouranis\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd - SQL Server vs Oracle Database - DataPlatform.gr","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.dataplatform.gr\/en\/vaseis-dedomenon-oracle-vs-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd - SQL Server vs Oracle Database - DataPlatform.gr","og_description":"\u03a4\u03b1 \u03b4\u03cd\u03bf \u03c0\u03b9\u03bf \u03b3\u03bd\u03c9\u03c3\u03c4\u03ac RDBMS (Relational Database Management Systems) \u03bc\u03b5 \u03c4\u03b1 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1 \u03bc\u03b5\u03c1\u03af\u03b4\u03b9\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b1\u03b3\u03bf\u03c1\u03ac \u03b5\u03af\u03bd\u03b1\u03b9 \u03bf Microsoft SQL Server \u03ba\u03b1\u03b9 \u03b7 Oracle Database. \u0388\u03c7\u03bf\u03c5\u03bd \u03c0\u03bf\u03bb\u03bb\u03ac \u03ba\u03bf\u03b9\u03bd\u03ac \u03b1\u03bb\u03bb\u03ac \u03ba\u03b1\u03b9 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03be\u03cd \u03c4\u03bf\u03c5\u03c2. \u03a0\u03ac\u03bc\u03b5 \u03bd\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03b1\u03bd\u03b1\u03bb\u03c5\u03c4\u03b9\u03ba\u03ac: Filegroups: \u0395\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03c3\u03cd\u03bd\u03bf\u03bb\u03bf \u03b1\u03c0\u03cc datafiles \u03c4\u03b1 \u03bf\u03c0\u03bf\u03af\u03b1 \u03bf\u03c1\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03bf\u03bc\u03ac\u03b4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03c5\u03bc\u03b5 objects \u03cc\u03c0\u03c9\u03c2 \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2. [&hellip;]","og_url":"https:\/\/www.dataplatform.gr\/en\/vaseis-dedomenon-oracle-vs-sql-server\/","og_site_name":"DataPlatform.gr","article_publisher":"https:\/\/www.facebook.com\/dataplatform.gr\/","article_published_time":"2020-11-16T04:00:00+00:00","article_modified_time":"2023-02-27T23:34:49+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver_vs_oracle.png","type":"image\/png"}],"author":"Stratos Matzouranis","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stratos Matzouranis","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#article","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/"},"author":{"name":"Stratos Matzouranis","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf"},"headline":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd &#8211; SQL Server vs Oracle Database","datePublished":"2020-11-16T04:00:00+00:00","dateModified":"2023-02-27T23:34:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/"},"wordCount":430,"commentCount":3,"publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"image":{"@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver_vs_oracle.png","keywords":["Databases","Microsoft","Oracle Database","RDBMS","SQL Server"],"articleSection":["Databases","Microsoft SQL Server","Oracle Database"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/","url":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/","name":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd - SQL Server vs Oracle Database - DataPlatform.gr","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver_vs_oracle.png","datePublished":"2020-11-16T04:00:00+00:00","dateModified":"2023-02-27T23:34:49+00:00","breadcrumb":{"@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#primaryimage","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver_vs_oracle.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver_vs_oracle.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.dataplatform.gr\/vaseis-dedomenon-oracle-vs-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae","item":"https:\/\/www.dataplatform.gr\/"},{"@type":"ListItem","position":2,"name":"Databases","item":"https:\/\/www.dataplatform.gr\/category\/databases\/"},{"@type":"ListItem","position":3,"name":"\u0397 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03bc\u03ac\u03c7\u03b7 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd &#8211; SQL Server vs Oracle Database"}]},{"@type":"WebSite","@id":"https:\/\/www.dataplatform.gr\/#website","url":"https:\/\/www.dataplatform.gr\/","name":"dataplatform.gr - Sky is not the limit!","description":"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.","publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dataplatform.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dataplatform.gr\/#organization","name":"dataplatform.gr","url":"https:\/\/www.dataplatform.gr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","width":322,"height":139,"caption":"dataplatform.gr"},"image":{"@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dataplatform.gr\/","https:\/\/www.linkedin.com\/company\/dataplatform-gr\/"]},{"@type":"Person","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf","name":"Stratos Matzouranis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","caption":"Stratos Matzouranis"},"sameAs":["https:\/\/www.dataplatform.gr"],"url":"https:\/\/www.dataplatform.gr\/en\/author\/stratos-matzouranis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/1068","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/comments?post=1068"}],"version-history":[{"count":0,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/1068\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media\/686"}],"wp:attachment":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media?parent=1068"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/categories?post=1068"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/tags?post=1068"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}