{"id":1710,"date":"2026-01-20T03:49:43","date_gmt":"2026-01-20T03:49:43","guid":{"rendered":"https:\/\/craftcookcode.com\/?p=1710"},"modified":"2026-02-04T19:48:04","modified_gmt":"2026-02-04T19:48:04","slug":"qlik-replicate-and-were-back-to-ebcdic-problems-again","status":"publish","type":"post","link":"https:\/\/craftcookcode.com\/?p=1710","title":{"rendered":"Qlik Replicate: And we&#8217;re back to EBCDIC problems again"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">EBCDIC &#8211; my perpetual nightmare<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before I have <a href=\"https:\/\/craftcookcode.com\/?p=1585\" target=\"_blank\" rel=\"noopener\" title=\"\">written about EBCDIC<\/a>; and the tribulations I have come across <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Let me take you on a journey.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">It starts with MS-SQL.<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">We have Qlik Replicate replicating data from a DB2\/zOS system into a MS-SQL system.&nbsp; I was investigating why there were inserts missing from the target table and exploring the dbo.attrep_apply_exceptions table I notice a bunch of INSERTS from another table in the exception table:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: sql; title: ; notranslate\" title=\"\">\n\/*\nCREATE TABLE dbo.destination\n(\n\tadd_dte numeric(5, 0) NOT NULL,\n\tchg_dte numeric(5, 0) NOT NULL,\n\tchg_tme varchar(6) NOT NULL,\n\targmt varbinary(10) NOT NULL,\n\tCONSTRAINT pk_destination PRIMARY KEY CLUSTERED\n\t(\n\t\targmt\n\t) WITH (DATA_COMPRESSION = ROW) ON &#x5B;PRIMARY]\n) ON &#x5B;PRIMARY]\n*\/\n\nINSERT INTO &#x5B;dbo].&#x5B;destination] ( &#x5B;add_dte],&#x5B;chg_dte],&#x5B;chg_tme],&#x5B;argmt])  VALUES (46021,46021,&#039;151721&#039;, 0x35333538C3A302070000);\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">I thought it would be a good place to start by substituting the failed insert into a temp table and using the temp table to investigate downstream data flows.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: sql; title: ; notranslate\" title=\"\">\nDROP TABLE IF EXISTS ##temp_destination;\n\nSELECT *\nINTO ##temp_destination\nFROM &#x5B;dbo].&#x5B;destination]\nWHERE 1 = 0;\n\nINSERT INTO ##temp_destination ( &#x5B;add_dte],&#x5B;chg_dte],&#x5B;chg_tme],&#x5B;argmt]) VALUES (46021,46021,&#039;151721&#039;, 0x35333538C3A302070000);\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">But as I was substituting the temp table into objects downstream &#8211; I was just getting logical errors.  Comparing the temp table against other data that already existed dbo.destination; it looked <em>not right<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Working Upstream<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">I thought it would be a good place to start by substituting the failed insert into a temp table and using the temp table to investigate downstream data flows.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Since we just merged a system into our DB2\/zOS system; my initial thought it was a corrupted record coming from a merge process. I contacted the upstream system owners and asked for help.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">They came back and said the record was fine and the issue must be in the QR system converting the data wrong. This did not make sense &#8211; if there was a issue in the QR system; it would have been picked up in testing. Also, there would be lots of exceptions in dbo.attrep_apply_exceptions. I had confidence that QR was handling it right.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Not trusting what the DB2\/zOS team had told me; I created a temp Qlik task to dump out that table into a test database.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Using the other values in the record; I could look the record up in the table and compare the two.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For the field argmt it came back as:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">0xF5F3F5F846022F00000F<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This looked nothing like what was in the exception table.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">EBCDICy epiphany <\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Of course &#8211; it took a while; but it finally struck what was going on.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The field argmt had sections encoded in EBCDIC.  This was getting brought across as bytes to MS-SQL.  There was a downstream trigger that was failing in the MS-SQL database.  But when it was getting written out into the exception table; it was getting written as ASCII (or possibly Windows-Latin) encoding.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"882\" height=\"730\" src=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_ebcdic_conv.png\" alt=\"\" class=\"wp-image-1714\" srcset=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_ebcdic_conv.png 882w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_ebcdic_conv-300x248.png 300w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_ebcdic_conv-768x636.png 768w\" sizes=\"(max-width: 882px) 100vw, 882px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">(Only showing start of bytes as this is what we use downstream)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With me just copying the insert statement and using it as is; I was treating ASCII bytes as EBCDIC; causing all sorts of logical errors downstream.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where to from here?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">I&#8217;m going to raise this abnormality with Qlik.  I am not sure if it is a &#8220;bug&#8221; or a &#8220;feature&#8221;; but good to get clarification on that point.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I also will need to educate our users on how to interpret the values in  dbo.attrep_apply_exceptions so not to stumble into mistakes that I did.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As for fixing the data itself &#8211; since we have the full dump of data from the table and the data is slow moving; I can substitute the values from the data dump into the problem INSERT statement.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This should allow it to run just fine.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>EBCDIC &#8211; my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":1715,"comment_status":"closed","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":[102,36],"class_list":["post-1710","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-qlik-replicate","category-sql","tag-ebcidic","tag-qlikreplicate"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts\" \/>\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=1710\" \/>\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: And we\u2019re back to EBCDIC problems again - Craft Cook Code\" \/>\n\t\t<meta property=\"og:description\" content=\"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/craftcookcode.com\/?p=1710\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-01-20T03:49:43+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-02-04T19:48:04+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Qlik Replicate: And we\u2019re back to EBCDIC problems again - Craft Cook Code\" \/>\n\t\t<meta name=\"twitter:description\" content=\"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts\" \/>\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=1710#blogposting\",\"name\":\"Qlik Replicate: And we\\u2019re back to EBCDIC problems again - Craft Cook Code\",\"headline\":\"Qlik Replicate: And we&#8217;re back to EBCDIC problems again\",\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/code_ebcdic_conv_01.png\",\"width\":1536,\"height\":1024},\"datePublished\":\"2026-01-20T03:49:43+00:00\",\"dateModified\":\"2026-02-04T19:48:04+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710#webpage\"},\"articleSection\":\"Qlik Replicate, SQL, ebcidic, qlikreplicate\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710#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=1710#listItem\",\"name\":\"Qlik Replicate: And we&#8217;re back to EBCDIC problems again\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710#listItem\",\"position\":4,\"name\":\"Qlik Replicate: And we&#8217;re back to EBCDIC problems again\",\"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=1710#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=1710#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=1710#webpage\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710\",\"name\":\"Qlik Replicate: And we\\u2019re back to EBCDIC problems again - Craft Cook Code\",\"description\":\"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \\u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710#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\\\/2026\\\/01\\\/code_ebcdic_conv_01.png\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710\\\/#mainImage\",\"width\":1536,\"height\":1024},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1710#mainImage\"},\"datePublished\":\"2026-01-20T03:49:43+00:00\",\"dateModified\":\"2026-02-04T19:48:04+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: And we\u2019re back to EBCDIC problems again - Craft Cook Code","description":"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts","canonical_url":"https:\/\/craftcookcode.com\/?p=1710","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/craftcookcode.com\/?p=1710#blogposting","name":"Qlik Replicate: And we\u2019re back to EBCDIC problems again - Craft Cook Code","headline":"Qlik Replicate: And we&#8217;re back to EBCDIC problems again","author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"publisher":{"@id":"https:\/\/craftcookcode.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_ebcdic_conv_01.png","width":1536,"height":1024},"datePublished":"2026-01-20T03:49:43+00:00","dateModified":"2026-02-04T19:48:04+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1710#webpage"},"isPartOf":{"@id":"https:\/\/craftcookcode.com\/?p=1710#webpage"},"articleSection":"Qlik Replicate, SQL, ebcidic, qlikreplicate"},{"@type":"BreadcrumbList","@id":"https:\/\/craftcookcode.com\/?p=1710#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=1710#listItem","name":"Qlik Replicate: And we&#8217;re back to EBCDIC problems again"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1710#listItem","position":4,"name":"Qlik Replicate: And we&#8217;re back to EBCDIC problems again","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=1710#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=1710#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=1710#webpage","url":"https:\/\/craftcookcode.com\/?p=1710","name":"Qlik Replicate: And we\u2019re back to EBCDIC problems again - Craft Cook Code","description":"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/craftcookcode.com\/#website"},"breadcrumb":{"@id":"https:\/\/craftcookcode.com\/?p=1710#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\/2026\/01\/code_ebcdic_conv_01.png","@id":"https:\/\/craftcookcode.com\/?p=1710\/#mainImage","width":1536,"height":1024},"primaryImageOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1710#mainImage"},"datePublished":"2026-01-20T03:49:43+00:00","dateModified":"2026-02-04T19:48:04+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: And we\u2019re back to EBCDIC problems again - Craft Cook Code","og:description":"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts","og:url":"https:\/\/craftcookcode.com\/?p=1710","article:published_time":"2026-01-20T03:49:43+00:00","article:modified_time":"2026-02-04T19:48:04+00:00","twitter:card":"summary_large_image","twitter:title":"Qlik Replicate: And we\u2019re back to EBCDIC problems again - Craft Cook Code","twitter:description":"EBCDIC - my perpetual nightmare Before I have written about EBCDIC; and the tribulations I have come across With the post festive system haze still on \u2013 I spent a full day trying to work out another encoding problem that came up in our exception table. Let me take you on a journey. It starts"},"aioseo_meta_data":{"post_id":"1710","title":"#post_title #separator_sa #site_title","description":"#post_excerpt","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":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-01-13 04:54:00","updated":"2026-02-04 20:03:41","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: And we\u2019re back to EBCDIC problems again\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: And we&#8217;re back to EBCDIC problems again","link":"https:\/\/craftcookcode.com\/?p=1710"}],"_links":{"self":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1710","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=1710"}],"version-history":[{"count":4,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1710\/revisions"}],"predecessor-version":[{"id":1716,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1710\/revisions\/1716"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/media\/1715"}],"wp:attachment":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}