{"id":4526,"date":"2023-03-29T07:00:00","date_gmt":"2023-03-29T04:00:00","guid":{"rendered":"https:\/\/www.dataplatform.gr\/?p=4526"},"modified":"2023-12-04T00:10:46","modified_gmt":"2023-12-03T21:10:46","slug":"pos-prosthetoyme-mia-vasi-dedomenon-po","status":"publish","type":"post","link":"https:\/\/www.dataplatform.gr\/en\/pos-prosthetoyme-mia-vasi-dedomenon-po\/","title":{"rendered":"How do we add a database that has TDE Encryption enabled to a SQL Server Always On Availability Group?"},"content":{"rendered":"<p>In <a href=\"https:\/\/www.dataplatform.gr\/en\/ti-einai-to-tde-kai-ti-schesi-echei-me-to-gdpr-par\/\" target=\"_blank\" rel=\"noreferrer noopener\">previous <\/a><a href=\"https:\/\/www.dataplatform.gr\/en\/?post=1152\" target=\"_blank\" rel=\"noreferrer noopener\">article<\/a> we have seen that TDE (Transparent Data Encryption) is the encryption of a database at a physical level. That is, it encrypts data files, log files and backups.<\/p>\n\n\n\n<p>When a database in SQL Server has TDE (Transparent Data Encryption) enabled, we will see that if we go through a wizard to add it to an Always On Availability Group, it will not allow us:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"817\" height=\"746\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_02.png\" alt=\"\" class=\"wp-image-4530\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_02.png 817w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_02-300x274.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_02-768x701.png 768w\" sizes=\"auto, (max-width: 817px) 100vw, 817px\" \/><figcaption class=\"wp-element-caption\">01<\/figcaption><\/figure>\n\n\n\n<p>In this article we will see how we can add a TDE-enabled database to an Always On Availability Group.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u03c4\u03bf-\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1\">The example<\/h2>\n\n\n\n<p>In our example we have created a database with the name <em>demo_tde<\/em>.<\/p>\n\n\n\n<p>We have created it <em><strong>master key encryption<\/strong><\/em> and <em><strong>certificate <\/strong><\/em>so we can enable TDE SQL Server <em>Instance<\/em>: <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">USE master;\nGO\nCREATE MASTER KEY ENCRYPTION BY PASSWORD  = 'Passw0rd'\nGO\n\nCREATE CERTIFICATE tdeCert WITH SUBJECT = 'TDE Certificate'\nGO<\/pre>\n\n\n\n<p>We have taken <strong><em>backup <\/em><\/strong>the certificate with creation <em><strong>private key<\/strong><\/em>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">BACKUP CERTIFICATE tdeCert TO FILE = 'C:\\backup\\tde.cer' WITH PRIVATE KEY ( FILE = 'c:\\backup\\tde.pvk' ,  ENCRYPTION BY PASSWORD =  'Passw0rd' ); <\/pre>\n\n\n\n<p>Then we created one <em><strong>encryption key <\/strong><\/em>which uses this certificate and <em><strong>we activated <\/strong><\/em>the encryption at the base:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">use demo_tde\ngo\nCREATE DATABASE ENCRYPTION KEY\nWITH ALGORITHM = AES_256\nENCRYPTION BY SERVER CERTIFICATE tdeCert;\n\nALTER DATABASE demo_tde\nSET ENCRYPTION ON;\n<\/pre>\n\n\n\n<p>If we run the following query we will see that the base <em>demo_tde <\/em>is in status <em><strong>Encrypted<\/strong><\/em>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">SELECT\n[db].name,\n[db].is_encrypted,\n[k].encryption_state,\n[k].percent_complete,\nCASE [k].encryption_state\nWHEN 0 THEN 'Not Encrypted'\nWHEN 1 THEN 'Unencrypted'\nWHEN 2 THEN 'Encryption in progress'\nWHEN 3 THEN 'Encrypted'\nWHEN 4 THEN 'Key change in progress'\nWHEN 5 THEN 'Decryption in progress'\nWHEN 6 THEN 'Protection change in progress '\nELSE 'Not Encrypted'\nEND AS 'Desc'\nFROM\nsys.dm_database_encryption_keys [k]\nRIGHT JOIN\nsys.databases [db] ON [k].database_id = [db].database_id;<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"487\" height=\"222\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_01.png\" alt=\"\" class=\"wp-image-4529\" style=\"width:487px;height:222px\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_01.png 487w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_01-300x137.png 300w\" sizes=\"auto, (max-width: 487px) 100vw, 487px\" \/><figcaption class=\"wp-element-caption\">02<\/figcaption><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u03c4\u03b1-\u03b2\u03ae\u03bc\u03b1\u03c4\u03b1\">The footsteps<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"\u03c3\u03c4\u03bf-primary-node\">On the primary node<\/h4>\n\n\n\n<p>As a first step, it is good to have disabled it <em><strong>Transaction Log backup<\/strong><\/em> as if the database is very large and the process is slow, we will need all the Transaction Log backups performed during this time.<\/p>\n\n\n\n<p>Then we take a full backup of the database:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">BACKUP DATABASE [demo_tde] \nTO DISK = N'C:\\backup\\demo_tde_full_co.bak' WITH STATS = 10;\nGO<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"\u03c3\u03c4\u03bf-secondary-node\">On the secondary node<\/h4>\n\n\n\n<p>First we transfer from the primary node to the secondary, the backup of the certificate (<em>C:\\backup\\tde.cer<\/em>), the private key (<em>C:\\backup\\tde.pvk<\/em>) and the database backup (<em>C:\\backup\\demo_tde_full_co.bak<\/em>).<\/p>\n\n\n\n<p>We create it<em><strong> master key encryption <\/strong><\/em>and we do<em><strong> restore the certificate<\/strong><\/em> with the backup file, the private key and its password:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">USE master;\nGO\nCREATE MASTER KEY ENCRYPTION BY PASSWORD  = 'Passw0rd'\nGO\n\ncreate certificate tdeCert from file ='C:\\backup\\tde.cer' WITH PRIVATE KEY ( FILE = 'c:\\backup\\tde.pvk' ,  DECRYPTION BY PASSWORD = 'Passw0rd'); \nGO\n<\/pre>\n\n\n\n<p>We restore the database with <code>NORECOVERY<\/code>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">RESTORE DATABASE [demo_tde] \nFROM DISK = N'C:\\backup\\demo_tde_full_co.bak' WITH NORECOVERY, STATS = 10;\nGO<\/pre>\n\n\n\n<p>Once completed, we will see that it is in status <code>Restoring...<\/code>:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"488\" height=\"253\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_03.png\" alt=\"\" class=\"wp-image-4531\" style=\"width:488px;height:253px\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_03.png 488w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_03-300x156.png 300w\" sizes=\"auto, (max-width: 488px) 100vw, 488px\" \/><figcaption class=\"wp-element-caption\">03<\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"\u03c3\u03c4\u03bf-primary-node-1\">On the primary node<\/h4>\n\n\n\n<p>Now we go back to the primary node and add the database to the Availability Group with T-SQL:<\/p>\n\n\n\n<p><em>*If we already had another replica of the database on another node, we skip this step<\/em><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">USE master \nGO\nALTER AVAILABILITY GROUP [DP-AG] ADD DATABASE [demo_tde]<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"\u03c3\u03c4\u03bf-secondary-node-1\">On the secondary node<\/h4>\n\n\n\n<p>Then we go back to the secondary node and declare that the database belongs to this Availability Group:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">USE master\nGO \nALTER DATABASE [demo_tde] SET HADR AVAILABILITY GROUP =  [DP-AG];<\/pre>\n\n\n\n<p>In case the following message has appeared, ignore it as it means that the database has already been added to the Availability Group:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>Msg 41145, Level 16, State 1, Line 19\nCannot join database 'demo_tde' to availability group 'DP-AG'.  The database has already joined the availability group.  This is an informational message.  No user action is required.\n<\/code><\/pre>\n\n\n\n<p>Now if we refresh we will see that it is in status <code>Synchronized<\/code> which is also what we want for <strong><em>Synchronous commit<\/em><\/strong>. If we had chosen <em><strong>Asynchronous commit<\/strong><\/em> it should be in status <code>Synchronizing<\/code>:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"508\" height=\"254\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_04.png\" alt=\"\" class=\"wp-image-4528\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_04.png 508w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_04-300x150.png 300w\" sizes=\"auto, (max-width: 508px) 100vw, 508px\" \/><figcaption class=\"wp-element-caption\">04<\/figcaption><\/figure>\n\n\n\n<p>With the following query we can see information about the health status of the database in the Availability Group:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">SELECT ag.name AS [AG_Name], ar.replica_server_name AS [ReplicaServerName], ar.availability_mode_desc AS [AvailabilityMode], adc.[database_name], \n       hars.role_desc as [Role],  drs.synchronization_state_desc as [SynchronizationState], drs.is_commit_participant as [IsCommit], \n       drs.synchronization_health_desc as [SyncHealth],drs.database_state_desc as [DatabaseState],\n       drs.last_commit_time as [Last Commit Update Time]\nFROM sys.dm_hadr_database_replica_states AS drs WITH (NOLOCK)\nINNER JOIN sys.availability_databases_cluster AS adc WITH (NOLOCK)\nON drs.group_id = adc.group_id \nAND drs.group_database_id = adc.group_database_id\nINNER JOIN sys.availability_groups AS ag WITH (NOLOCK)\nON ag.group_id = drs.group_id\nINNER JOIN sys.availability_replicas AS ar WITH (NOLOCK)\nON drs.group_id = ar.group_id \nAND drs.replica_id = ar.replica_id\nINNER JOIN sys.dm_hadr_availability_replica_states hars \nON drs.replica_id = hars.replica_id \nwhere database_name='demo_tde'\nORDER BY ag.name, ar.replica_server_name, adc.[database_name] OPTION (RECOMPILE);<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"980\" height=\"140\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_05.png\" alt=\"\" class=\"wp-image-4536\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_05.png 980w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_05-300x43.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2022\/02\/tdeag_05-768x110.png 768w\" sizes=\"auto, (max-width: 980px) 100vw, 980px\" \/><figcaption class=\"wp-element-caption\">05<\/figcaption><\/figure>","protected":false},"excerpt":{"rendered":"<p>In a previous article we have seen that TDE (Transparent Data Encryption) is the encryption of a database at a physical level. That is, it encrypts data files, log files and backups. When a database in SQL Server has TDE (Transparent Data Encryption) enabled, we will see that if we go through a wizard to add it to Always [\u2026]<\/p>","protected":false},"author":1,"featured_media":702,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11,15],"tags":[156,29,65,23,30,492,6,132],"class_list":["post-4526","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-ms-sqlserver","tag-always-on-availability-group","tag-databases","tag-high-availability","tag-microsoft","tag-rdbms","tag-replication","tag-sqlserver","tag-tde"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group - 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\/pos-prosthetoyme-mia-vasi-dedomenon-po\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group - DataPlatform.gr\" \/>\n<meta property=\"og:description\" content=\"\u03a3\u03b5 \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03af \u03cc\u03c4\u03b9 \u03c4\u03bf TDE (Trasparent Data Encryption) \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf encryption \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03b5 \u03c6\u03c5\u03c3\u03b9\u03ba\u03cc \u03b5\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf. \u0394\u03b7\u03bb\u03b1\u03b4\u03ae \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03ba\u03c1\u03c5\u03c0\u03c4\u03bf\u03b3\u03c1\u03ac\u03c6\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b1 data files, log files \u03ba\u03b1\u03b9 backups. \u038c\u03c4\u03b1\u03bd \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf\u03bd SQL Server \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE (Trasparent Data Encryption), \u03b8\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03cc\u03c4\u03b9 \u03b1\u03bd \u03c0\u03ac\u03bc\u03b5 \u03bc\u03ad\u03c3\u03c9 wizard \u03bd\u03b1 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c3\u03b5 Always [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dataplatform.gr\/en\/pos-prosthetoyme-mia-vasi-dedomenon-po\/\" \/>\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=\"2023-03-29T04:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-03T21:10:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver.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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/\"},\"author\":{\"name\":\"Stratos Matzouranis\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\"},\"headline\":\"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group\",\"datePublished\":\"2023-03-29T04:00:00+00:00\",\"dateModified\":\"2023-12-03T21:10:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/\"},\"wordCount\":133,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver.png\",\"keywords\":[\"Always On Availability Group\",\"Databases\",\"High Availability\",\"Microsoft\",\"RDBMS\",\"Replication\",\"SQL Server\",\"TDE\"],\"articleSection\":[\"Databases\",\"Microsoft SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/\",\"name\":\"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group - DataPlatform.gr\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver.png\",\"datePublished\":\"2023-03-29T04:00:00+00:00\",\"dateModified\":\"2023-12-03T21:10:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_sqlserver.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-prosthetoyme-mia-vasi-dedomenon-po\\\/#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\":\"Microsoft SQL Server\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/ms-sqlserver\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group\"}]},{\"@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":"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group - 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\/pos-prosthetoyme-mia-vasi-dedomenon-po\/","og_locale":"en_US","og_type":"article","og_title":"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group - DataPlatform.gr","og_description":"\u03a3\u03b5 \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03b4\u03b5\u03af \u03cc\u03c4\u03b9 \u03c4\u03bf TDE (Trasparent Data Encryption) \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf encryption \u03bc\u03af\u03b1\u03c2 \u03b2\u03ac\u03c3\u03b7\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03b5 \u03c6\u03c5\u03c3\u03b9\u03ba\u03cc \u03b5\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf. \u0394\u03b7\u03bb\u03b1\u03b4\u03ae \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03ba\u03c1\u03c5\u03c0\u03c4\u03bf\u03b3\u03c1\u03ac\u03c6\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b1 data files, log files \u03ba\u03b1\u03b9 backups. \u038c\u03c4\u03b1\u03bd \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf\u03bd SQL Server \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE (Trasparent Data Encryption), \u03b8\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03cc\u03c4\u03b9 \u03b1\u03bd \u03c0\u03ac\u03bc\u03b5 \u03bc\u03ad\u03c3\u03c9 wizard \u03bd\u03b1 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c3\u03b5 Always [&hellip;]","og_url":"https:\/\/www.dataplatform.gr\/en\/pos-prosthetoyme-mia-vasi-dedomenon-po\/","og_site_name":"DataPlatform.gr","article_publisher":"https:\/\/www.facebook.com\/dataplatform.gr\/","article_published_time":"2023-03-29T04:00:00+00:00","article_modified_time":"2023-12-03T21:10:46+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver.png","type":"image\/png"}],"author":"Stratos Matzouranis","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stratos Matzouranis","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#article","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/"},"author":{"name":"Stratos Matzouranis","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf"},"headline":"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group","datePublished":"2023-03-29T04:00:00+00:00","dateModified":"2023-12-03T21:10:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/"},"wordCount":133,"commentCount":0,"publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver.png","keywords":["Always On Availability Group","Databases","High Availability","Microsoft","RDBMS","Replication","SQL Server","TDE"],"articleSection":["Databases","Microsoft SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/","url":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/","name":"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group - DataPlatform.gr","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#primaryimage"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver.png","datePublished":"2023-03-29T04:00:00+00:00","dateModified":"2023-12-03T21:10:46+00:00","breadcrumb":{"@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#primaryimage","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_sqlserver.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.dataplatform.gr\/pos-prosthetoyme-mia-vasi-dedomenon-po\/#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":"Microsoft SQL Server","item":"https:\/\/www.dataplatform.gr\/category\/databases\/ms-sqlserver\/"},{"@type":"ListItem","position":4,"name":"\u03a0\u03ce\u03c2 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03cc\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf TDE Encryption \u03c3\u03b5 SQL Server Always On Availability Group"}]},{"@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\/4526","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=4526"}],"version-history":[{"count":4,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/4526\/revisions"}],"predecessor-version":[{"id":5635,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/4526\/revisions\/5635"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media\/702"}],"wp:attachment":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media?parent=4526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/categories?post=4526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/tags?post=4526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}