{"id":1643,"date":"2025-06-12T05:51:41","date_gmt":"2025-06-12T05:51:41","guid":{"rendered":"https:\/\/craftcookcode.com\/?p=1643"},"modified":"2025-06-12T05:51:42","modified_gmt":"2025-06-12T05:51:42","slug":"qlik-replicate-ms-sql-dates-to-confluent-avro","status":"publish","type":"post","link":"https:\/\/craftcookcode.com\/?p=1643","title":{"rendered":"Qlik Replicate &#8211; MS SQL dates to Confluent Avro"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">I am just writing a brief post about a conversation I was asked to join.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The question paraphrased:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro &#8211; how are they interpreted?  Epoch to utc? Or to the current time zone?<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\"> I didn&#8217;t know the answer so I created the following simple test:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: sql; title: ; notranslate\" title=\"\">\n\nCREATE TABLE dbo.JD_DATES_TEST\n(\n ID INT IDENTITY(1,1) PRIMARY KEY,\n TEST_SMALLDATETIME SMALLDATETIME,\n TEST_DATE date,\n TEST_DATETIME datetime,\n TEST_DATETIME2 datetime2,\n TEST_DATETIMEOFFSET datetimeoffset\n);\n\nGO\n\nINSERT INTO dbo.JD_DATES_TEST VALUES(current_timestamp, current_timestamp, current_timestamp, current_timestamp, current_timestamp);\n\nSELECT * FROM dbo.JD_DATES_TEST;\n\/*\nID          TEST_SMALLDATETIME      TEST_DATE  TEST_DATETIME           TEST_DATETIME2              TEST_DATETIMEOFFSET\n----------- ----------------------- ---------- ----------------------- --------------------------- ----------------------------------\n1           2025-06-12 12:04:00     2025-06-12 2025-06-12 12:04:16.650 2025-06-12 12:04:16.6500000 2025-06-12 12:04:16.6500000 +00:00\n\n(1 row(s) affected)\n\n\n*\/\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">On the other side after passing through Qlik Replicate and then onto Kafka in Avro format; we got:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n{\n  &quot;data&quot;: {\n    &quot;ID&quot;: {\n      &quot;int&quot;: 1\n    },\n    &quot;TEST_SMALLDATETIME&quot;: {\n      &quot;long&quot;: 1749729840000000\n    },\n    &quot;TEST_DATE&quot;: {\n      &quot;int&quot;: 20251\n    },\n    &quot;TEST_DATETIME&quot;: {\n      &quot;long&quot;: 1749729856650000\n    },\n    &quot;TEST_DATETIME2&quot;: {\n      &quot;long&quot;: 1749729856650000\n    },\n    &quot;TEST_DATETIMEOFFSET&quot;: {\n      &quot;string&quot;: &quot;2025-06-12 12:04:16.6500000 +00:00&quot;\n    },\n    &quot;x_y&quot;: {\n      &quot;string&quot;: &quot;1.0.0&quot;\n    }\n  },\n  &quot;beforeData&quot;: null,\n  &quot;headers&quot;: {\n    &quot;operation&quot;: &quot;REFRESH&quot;,\n    &quot;changeSequence&quot;: &quot;&quot;,\n    &quot;timestamp&quot;: &quot;&quot;,\n    &quot;streamPosition&quot;: &quot;&quot;,\n    &quot;transactionId&quot;: &quot;&quot;,\n    &quot;changeMask&quot;: null,\n    &quot;columnMask&quot;: null,\n    &quot;transactionEventCounter&quot;: null,\n    &quot;transactionLastEvent&quot;: null\n  }\n}\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">So 1749729856650000 equals Thursday, June 12, 2025 12:04:16.650 PM &#8211; which is local time.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":1076,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[16,17],"tags":[89,88,36],"class_list":["post-1643","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-qlik-replicate","category-sql","tag-dates","tag-mssql","tag-qlikreplicate"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn&#039;t know the answer so\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"jonny.donker@gmail.com\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/craftcookcode.com\/?p=1643\" \/>\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=\"Craft Cook Code - c^3?\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code\" \/>\n\t\t<meta property=\"og:description\" content=\"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn&#039;t know the answer so\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/craftcookcode.com\/?p=1643\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-06-12T05:51:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-06-12T05:51:42+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn&#039;t know the answer so\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#blogposting\",\"name\":\"Qlik Replicate \\u2013 MS SQL dates to Confluent Avro - Craft Cook Code\",\"headline\":\"Qlik Replicate &#8211; MS SQL dates to Confluent Avro\",\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/Qlik_Logo.svg_small.png\",\"width\":400,\"height\":117},\"datePublished\":\"2025-06-12T05:51:41+00:00\",\"dateModified\":\"2025-06-12T05:51:42+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#webpage\"},\"articleSection\":\"Qlik Replicate, SQL, dates, mssql, qlikreplicate\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/craftcookcode.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"position\":2,\"name\":\"Code\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"name\":\"Qlik Replicate\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"position\":3,\"name\":\"Qlik Replicate\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#listItem\",\"name\":\"Qlik Replicate &#8211; MS SQL dates to Confluent Avro\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#listItem\",\"position\":4,\"name\":\"Qlik Replicate &#8211; MS SQL dates to Confluent Avro\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"name\":\"Qlik Replicate\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#webpage\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643\",\"name\":\"Qlik Replicate \\u2013 MS SQL dates to Confluent Avro - Craft Cook Code\",\"description\":\"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn't know the answer so\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/Qlik_Logo.svg_small.png\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643\\\/#mainImage\",\"width\":400,\"height\":117},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1643#mainImage\"},\"datePublished\":\"2025-06-12T05:51:41+00:00\",\"dateModified\":\"2025-06-12T05:51:42+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/\",\"name\":\"Craft Cook Code\",\"description\":\"c^3?\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code","description":"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn't know the answer so","canonical_url":"https:\/\/craftcookcode.com\/?p=1643","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/craftcookcode.com\/?p=1643#blogposting","name":"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code","headline":"Qlik Replicate &#8211; MS SQL dates to Confluent Avro","author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"publisher":{"@id":"https:\/\/craftcookcode.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2022\/12\/Qlik_Logo.svg_small.png","width":400,"height":117},"datePublished":"2025-06-12T05:51:41+00:00","dateModified":"2025-06-12T05:51:42+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1643#webpage"},"isPartOf":{"@id":"https:\/\/craftcookcode.com\/?p=1643#webpage"},"articleSection":"Qlik Replicate, SQL, dates, mssql, qlikreplicate"},{"@type":"BreadcrumbList","@id":"https:\/\/craftcookcode.com\/?p=1643#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","position":1,"name":"Home","item":"https:\/\/craftcookcode.com","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","position":2,"name":"Code","item":"https:\/\/craftcookcode.com\/?cat=13","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","name":"Qlik Replicate"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","position":3,"name":"Qlik Replicate","item":"https:\/\/craftcookcode.com\/?cat=16","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1643#listItem","name":"Qlik Replicate &#8211; MS SQL dates to Confluent Avro"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1643#listItem","position":4,"name":"Qlik Replicate &#8211; MS SQL dates to Confluent Avro","previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","name":"Qlik Replicate"}}]},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/#person","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=1643#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/?author=1#author","url":"https:\/\/craftcookcode.com\/?author=1","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=1643#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"WebPage","@id":"https:\/\/craftcookcode.com\/?p=1643#webpage","url":"https:\/\/craftcookcode.com\/?p=1643","name":"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code","description":"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn't know the answer so","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/craftcookcode.com\/#website"},"breadcrumb":{"@id":"https:\/\/craftcookcode.com\/?p=1643#breadcrumblist"},"author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"creator":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2022\/12\/Qlik_Logo.svg_small.png","@id":"https:\/\/craftcookcode.com\/?p=1643\/#mainImage","width":400,"height":117},"primaryImageOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1643#mainImage"},"datePublished":"2025-06-12T05:51:41+00:00","dateModified":"2025-06-12T05:51:42+00:00"},{"@type":"WebSite","@id":"https:\/\/craftcookcode.com\/#website","url":"https:\/\/craftcookcode.com\/","name":"Craft Cook Code","description":"c^3?","inLanguage":"en-US","publisher":{"@id":"https:\/\/craftcookcode.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Craft Cook Code - c^3?","og:type":"article","og:title":"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code","og:description":"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn't know the answer so","og:url":"https:\/\/craftcookcode.com\/?p=1643","article:published_time":"2025-06-12T05:51:41+00:00","article:modified_time":"2025-06-12T05:51:42+00:00","twitter:card":"summary_large_image","twitter:title":"Qlik Replicate \u2013 MS SQL dates to Confluent Avro - Craft Cook Code","twitter:description":"I am just writing a brief post about a conversation I was asked to join. The question paraphrased: For dates in an Microsoft SQL Server, when they get passed through Qlik Replicate to Kafka Avro - how are they interpreted? Epoch to utc? Or to the current time zone? I didn't know the answer so"},"aioseo_meta_data":{"post_id":"1643","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"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":"","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":"BlogPosting","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2025-06-12 05:47:20","updated":"2025-06-12 06:12:06","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\" 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:\/\/craftcookcode.com\/?cat=13\" title=\"Code\">Code<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=16\" title=\"Qlik Replicate\">Qlik Replicate<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tQlik Replicate \u2013 MS SQL dates to Confluent Avro\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/craftcookcode.com"},{"label":"Code","link":"https:\/\/craftcookcode.com\/?cat=13"},{"label":"Qlik Replicate","link":"https:\/\/craftcookcode.com\/?cat=16"},{"label":"Qlik Replicate &#8211; MS SQL dates to Confluent Avro","link":"https:\/\/craftcookcode.com\/?p=1643"}],"_links":{"self":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1643","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1643"}],"version-history":[{"count":3,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1643\/revisions"}],"predecessor-version":[{"id":1646,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1643\/revisions\/1646"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/media\/1076"}],"wp:attachment":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1643"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1643"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1643"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}