{"id":645,"date":"2010-09-22T12:54:05","date_gmt":"2010-09-22T17:54:05","guid":{"rendered":"http:\/\/www.migrate2cloud.com\/blog\/?p=645"},"modified":"2016-03-21T02:51:13","modified_gmt":"2016-03-21T07:51:13","slug":"microsoft-sql-server-2008-encryption-part-l","status":"publish","type":"post","link":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/","title":{"rendered":"Microsoft SQL Server 2008 Encryption: Part l"},"content":{"rendered":"<p>Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2. We are deploying an application which has to deployed in all the AWS availability zones and our problems like syncing between zones are still at large as fine tune MS-SQL for the cloud.<\/p>\n<p><strong>Data security and privacy<\/strong><\/p>\n<p>The applications which storing sensitive information like customer information, Financial information, personal health information(PHI) etc, will have to meet certain data privacy and security acts. The Health Information Portability and Accountability Act (HIPAA) of 1996 protects health information. To make applications HIPAA compliance we can use some of new security features in SQL server 2008. MSSQL Server 2008 introduce new with security feature enhancements for powerful encryption and better key management capabilities<\/p>\n<p><strong>Data security in cloud<\/strong><\/p>\n<p>The data in cloud is in a shared hardware environment. Therefore data segregation is one of the major security issue. All cloud providers have their own storage management. But the security and privacy of data is again an issue because the customers don\u2019t have much control over this storage area. They don\u2019t know the exact location where data is stored. Customers can overcome these issues by implementing their own security features based own their application.<\/p>\n<p>We had 2 issues to address:<\/p>\n<p>1. Encrypt data in transit<br \/>\n2. Encrypt data at rest<\/p>\n<p>In this one we are starting by implementing encryption of data in transit for MSSQL server. MSSQL Server uses the Secure Socket Layer(SSL) to encrypt data transfer between SQL server and applications. This encryption will ensure secure data transmission over the network. This is much more important when application and database are distributed on many AWS availability zones.<\/p>\n<h4>Implementation of SSL<\/h4>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-653\" src=\"http:\/\/www.migrate2cloud.com\/blog\/wp-content\/uploads\/2010\/09\/SSL-encryption3-e1285177030893.jpg\" alt=\"\" width=\"625\" height=\"600\" \/><\/p>\n<p><strong>1.Creating a self-singned cert using makecert<\/strong><\/p>\n<p>[text]<br \/>\nmakecert -r -pe -n &#8220;CN=SERVER-FQDN&#8221; -b 01\/01\/2010 -e 01\/01\/2015 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localMachine -sky exchange -sp &#8220;SSL Providerl&#8221; -sy 12 c:\\testssl.cer<br \/>\n[\/text]<\/p>\n<p><strong>2.Install this cert<\/strong><\/p>\n<p>Copy c:\\tesssl.cer into your client machine, run c:\\testssl.cer from command window, select &#8220;Install Certificate&#8221;. -&gt; click &#8220;Next&#8221; -&gt; select &#8220;Place all certificates in the following store&#8221; &#8211;&gt; click &#8220;Browser&#8221; -&gt; select &#8220;Trusted Root Certification Authorities&#8221; -&gt; select OK and Finish<\/p>\n<p><strong>3.Open SQL Server Configuration Manager<\/strong><\/p>\n<p>Expand SQL Server Network Configuration, right-click &#8220;Protocols for MSSQLSERVER&#8221; then click &#8220;properties&#8221;. On the &#8220;Certificate&#8221; tab select the certificate just installed . On the &#8220;Flags&#8221; tab, set &#8220;ForceEncryption&#8221; YES.<\/p>\n<p>Now SSL is ready to use on server. You have modify your connection string to use SSL.<\/p>\n<p>For Example<\/p>\n<p>connectionString=&#8221;Data Source=db.server.com;Initial Catalog=mydb;User ID=user1;Password=pas@123;Encrypt=true;TrustServerCertificate=true&#8221;<\/p>\n<p>You are Done!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2. We are deploying an application which has to deployed in all the AWS availability zones and our problems like syncing between [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[3,67],"tags":[71,221,260,144,525,470,69,137,466,464,68,528,526,70,72,529,77,136,527],"class_list":["post-645","post","type-post","status-publish","format-standard","hentry","category-cloud-computing","category-mysql","tag-administration","tag-amazon-web-services","tag-company-technology","tag-company-amazon-com","tag-cryptography","tag-data-encryption","tag-data-security-in-cloud","tag-department-stores-nec","tag-encryption","tag-health-insurance-portability-and-accountability-act","tag-microsoft-sql","tag-perspecsys","tag-secure-communication","tag-sql-server-2008","tag-sql-server-2008-encryption","tag-sql-server-configuration-manager","tag-ssl","tag-technologyinternet","tag-transport-layer-security"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"bobinson\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Migrate to Cloud - we make the clouds rain\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud\" \/>\n\t\t<meta property=\"og:description\" content=\"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-09-22T17:54:05+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-03-21T07:51:13+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#blogposting\",\"name\":\"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud\",\"headline\":\"Microsoft SQL Server 2008 Encryption: Part l\",\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/bobinson\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/wp-content\\\/uploads\\\/2010\\\/09\\\/SSL-encryption3-e1285177030893.jpg\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#articleImage\",\"width\":625,\"height\":600},\"datePublished\":\"2010-09-22T12:54:05-05:00\",\"dateModified\":\"2016-03-21T02:51:13-05:00\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#webpage\"},\"articleSection\":\"Cloud computing, MySQL, Administration, Amazon Web Services, Company Technology, Company: Amazon.com, Cryptography, data encryption, Data security in cloud, Department Stores - NEC, encryption, Health Insurance Portability and Accountability Act, Microsoft SQL, Perspecsys, Secure communication, SQL Server 2008, SQL Server 2008 Encryption, SQL Server Configuration Manager, SSL, Technology\\\/Internet, Transport Layer Security\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"position\":2,\"name\":\"Cloud computing\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#listItem\",\"name\":\"Microsoft SQL Server 2008 Encryption: Part l\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#listItem\",\"position\":3,\"name\":\"Microsoft SQL Server 2008 Encryption: Part l\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/bobinson\\\/#author\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/bobinson\\\/\",\"name\":\"bobinson\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/75ccdce824303bc4f61f39dec0a643a767f9bda27d54a85334ab60120544971f?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"bobinson\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#webpage\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/\",\"name\":\"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud\",\"description\":\"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/microsoft-sql-server-2008-encryption-part-l\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/bobinson\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/bobinson\\\/#author\"},\"datePublished\":\"2010-09-22T12:54:05-05:00\",\"dateModified\":\"2016-03-21T02:51:13-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud","description":"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2","canonical_url":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#blogposting","name":"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud","headline":"Microsoft SQL Server 2008 Encryption: Part l","author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/bobinson\/#author"},"publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.migrate2cloud.com\/blog\/wp-content\/uploads\/2010\/09\/SSL-encryption3-e1285177030893.jpg","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#articleImage","width":625,"height":600},"datePublished":"2010-09-22T12:54:05-05:00","dateModified":"2016-03-21T02:51:13-05:00","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#webpage"},"isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#webpage"},"articleSection":"Cloud computing, MySQL, Administration, Amazon Web Services, Company Technology, Company: Amazon.com, Cryptography, data encryption, Data security in cloud, Department Stores - NEC, encryption, Health Insurance Portability and Accountability Act, Microsoft SQL, Perspecsys, Secure communication, SQL Server 2008, SQL Server 2008 Encryption, SQL Server Configuration Manager, SSL, Technology\/Internet, Transport Layer Security"},{"@type":"BreadcrumbList","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.migrate2cloud.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","position":2,"name":"Cloud computing","item":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#listItem","name":"Microsoft SQL Server 2008 Encryption: Part l"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#listItem","position":3,"name":"Microsoft SQL Server 2008 Encryption: Part l","previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}}]},{"@type":"Organization","@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization","name":"Migrate to Cloud","description":"we make the clouds rain","url":"https:\/\/www.migrate2cloud.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/bobinson\/#author","url":"https:\/\/www.migrate2cloud.com\/blog\/author\/bobinson\/","name":"bobinson","image":{"@type":"ImageObject","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/75ccdce824303bc4f61f39dec0a643a767f9bda27d54a85334ab60120544971f?s=96&d=mm&r=g","width":96,"height":96,"caption":"bobinson"}},{"@type":"WebPage","@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#webpage","url":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/","name":"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud","description":"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/#breadcrumblist"},"author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/bobinson\/#author"},"creator":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/bobinson\/#author"},"datePublished":"2010-09-22T12:54:05-05:00","dateModified":"2016-03-21T02:51:13-05:00"},{"@type":"WebSite","@id":"https:\/\/www.migrate2cloud.com\/blog\/#website","url":"https:\/\/www.migrate2cloud.com\/blog\/","name":"Migrate to Cloud","description":"we make the clouds rain","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Migrate to Cloud - we make the clouds rain","og:type":"article","og:title":"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud","og:description":"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2","og:url":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/","article:published_time":"2010-09-22T17:54:05+00:00","article:modified_time":"2016-03-21T07:51:13+00:00","twitter:card":"summary_large_image","twitter:title":"Microsoft SQL Server 2008 Encryption: Part l - Migrate to Cloud","twitter:description":"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2"},"aioseo_meta_data":{"post_id":"645","title":"","description":"Entrusted with a project where we have to implement data protection and privacy guidelines in accordance with international regulations we found ourselves investigating ways to implement data encryption in MSSQL database in Amazon EC2","keywords":[{"label":"Data security in cloud","value":"Data security in cloud"},{"label":"Microsoft SQL","value":"Microsoft SQL"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2022-12-27 09:16:42","updated":"2026-07-21 15:28:32","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/\" title=\"Cloud computing\">Cloud computing<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMicrosoft SQL Server 2008 Encryption: Part l\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.migrate2cloud.com\/blog"},{"label":"Cloud computing","link":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/"},{"label":"Microsoft SQL Server 2008 Encryption: Part l","link":"https:\/\/www.migrate2cloud.com\/blog\/microsoft-sql-server-2008-encryption-part-l\/"}],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/645","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/comments?post=645"}],"version-history":[{"count":10,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/645\/revisions"}],"predecessor-version":[{"id":2160,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/645\/revisions\/2160"}],"wp:attachment":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/media?parent=645"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/categories?post=645"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/tags?post=645"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}