{"id":3494,"date":"2020-09-09T16:00:46","date_gmt":"2020-09-09T16:00:46","guid":{"rendered":"https:\/\/nenadnoveljic.com\/blog\/?p=3494"},"modified":"2021-03-15T12:18:41","modified_gmt":"2021-03-15T12:18:41","slug":"transaction-start_time-internals","status":"publish","type":"post","link":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/","title":{"rendered":"Transaction start_time Internals"},"content":{"rendered":"<p>Here&#8217;s what I learned while troubleshooting stale <i>v$transaction.start_time<\/i> entries.<\/p>\n<h1>Reading transaction information<\/h1>\n<p>This section describes the mechanism behind <i>select start_time from v$transaction<\/i>.<\/p>\n<h2><i>v$transaction<\/i><\/h2>\n<p><i>start_time<\/i> and <i>start_date<\/i> contain the same information stored in different data types &#8211; <i>varchar2<\/i> and <i>date<\/i>, respectively.<\/p>\n<pre><code>desc v$transaction ;\n Name                                      Null?    Type\n ----------------------------------------- -------- ----------------------------\n...\n START_TIME                                         VARCHAR2(20)\n...\n START_DATE                                         DATE\n...\n\nSTART_TIME           START_DATE\n-------------------- -------------------\n09\/08\/20 11:20:43    08.09.2020 11:20:43<\/code><\/pre>\n<h2><i>x$ktcxb<\/i><\/h2>\n<p><i>v$transaction<\/i> is underpinned by <i>x$ktcxb<\/i>:<\/p>\n<pre><code>select addr,ktcxbxba,ktcxbstm \n  from x$ktcxb WHERE BITAND (ksspaflg, 1) != 0 AND BITAND (ktcxbflg, 2) != 0 ;\n\nADDR             <span style=\"color:red\">KTCXBXBA<\/span>         KTCXBSTM\n---------------- ---------------- --------------------\n<span style=\"color:blue\">00007FFFBD880AF8<\/span> <span style=\"color:red\">0000000096D95C70<\/span> 09\/08\/20 11:20:43<\/code><\/pre>\n<p><i>ktcxbstm<\/i> and <i>to_date(ktcxbstm)<\/i> in <i>x$ktcxb<\/i> are mapped to <i>start_time<\/i> and <i>start_date<\/i>, respectively, in <i>v$transaction<\/i>:<br \/>\n<i>x$ktcxb<\/i> is stored in UGA:<\/p>\n<pre><code>@fcha <span style=\"color:blue\">0x00007FFFBD880AF8<\/span>\n\nLOC KSMCHPTR           KSMCHIDX   KSMCHDUR KSMCHCOM           KSMCHSIZ KSMCHCLS   KSMCHTYP KSMCHPAR\n--- ---------------- ---------- ---------- ---------------- ---------- -------- ---------- ----------------\n<span style=\"color:blue\">UGA<\/span> 00007FFFBD880678                       kxsFrame4kPage         4152 freeabl           0 00<\/code><\/pre>\n<h2><i>ktcxbc<\/i><\/h2>\n<p>Every time we select from <i>x$ktcxb<\/i> the Oracle C function <i>ktcxbc<\/i> populates the information in UGA :<\/p>\n<pre><code>#0  0x00007ffc0c958120 in memcpy () from \/lib\/64\/libc.so.1\n#1  0x000000000a2f77b0 in ktcxbc ()\n#2  0x000000000676348f in qerfxFetch ()\n#3  0x00000000065c58a8 in opifch2 ()<\/code><\/pre>\n<p>In other words, <i>ktcxb<\/i> is the helper function <a href=\"https:\/\/tanelpoder.com\/2014\/01\/10\/oracle-x-tables-part-1-where-do-they-get-their-data-from\/\">[1]<\/a> for <i>x$ktcxb<\/i>.<\/p>\n<p>The function <i>ktcxb<\/i> reads the information from the transaction table, and stores the address of the transaction table entry in <i>x$ktcxb.ktcxbxba<\/i>.<\/p>\n<pre><code>@<a href=\"https:\/\/github.com\/tanelpoder\/tpt-oracle\/blob\/master\/fcha.sql\">fcha<\/a> <span style=\"color:red\">0000000096D95C70<\/span>\n\nLOC KSMCHPTR           KSMCHIDX   KSMCHDUR KSMCHCOM           KSMCHSIZ KSMCHCLS   KSMCHTYP KSMCHPAR\n--- ---------------- ---------- ---------- ---------------- ---------- -------- ---------- ----------------\n<span style=\"color:red\">SGA<\/span> 0000000096D95A90          1          1 <span style=\"color:red\">transaction<\/span>           21328 perm              0 0000000096CD0200<\/code><\/pre>\n<p><i>start_time<\/i> in Epoch format is stored at the location <i><span style=\"color:red\">ktcxbxba<\/span>+0x7c8<\/i> (on 19c) in the transaction table:<\/p>\n<pre><code>(gdb) p\/d *(uint32_t)(<span style=\"color:red\">0x0000000096D95C70<\/span>+0x7c8)\n$2 = 1599556843<\/code><\/pre>\n<p>(1599556843 is Epoch time for September 8, 2020 11:20:43 AM GMT+02:00 DST.)<\/p>\n<h1><i>slcts<\/i><\/h1>\n<p>The helper function <i>ktcxb<\/i> calls <i>slcts<\/i> to convert the Epoch time to the human readable format:<\/p>\n<pre><code>#0  0x000000001a710983 in slcts ()\n#1  0x000000000a2f7353 in ktcxbcProcessInPDB ()\n#2  0x000000000a2f7823 in ktcxbc ()\n#3  0x000000000676348f in qerfxFetch ()\n#4  0x00000000065c58a8 in opifch2 ()<\/code><\/pre>\n<p><i>slcts<\/i> first calls <i>localtime_r<\/i> to convert the Epoch time to the local time. Then it calls <i>sprintf<\/i> to format it to the human readable format.<\/p>\n<p>The Epoch timestamp is passed through the first argument:<\/p>\n<pre><code>Thread 2 hit Breakpoint 2, 0x000000001a710900 in slcts ()\n(gdb) p $rdi\n$3 = 1599556843<\/code><\/pre>\n<p>The returned address points to the formatted date:<\/p>\n<pre><code>(gdb)fin\nRun till exit from #0  0x000000001a710900 in slcts ()\n0x000000000a2f7353 in ktcxbcProcessInPDB ()\n(gdb) x\/s $rax\n0x7fffbd880f34: \"09\/08\/20 11:20:43\"<\/code><\/pre>\n<h1>Populating transaction information<\/h1>\n<p>This section describes how the server process populates the <i>start_time<\/i> when a user session creates a transaction.<\/p>\n<h2><i>ksudbrmseccnt_<\/i><\/h2>\n<p>Interestingly, the server process doesn&#8217;t call the OS timestamp function. It reads instead the global SGA variable <i>ksudbrmseccnt_<\/i> (&#8220;seconds counter&#8221;). This variable holds the current timestamp.<\/p>\n<pre><code>select ksmfsnam, ksmfsadr, ksmfssiz, ksmfstyp from x$ksmfsv where ksmfsadr like '0000000060008398' ;\n\nKSMFSNAM                                                         KSMFSADR           KSMFSSIZ KSMFSTYP\n---------------------------------------------------------------- ---------------- ---------- ----------------------------------------------------------------\nksudbrmseccnt_                                                   0000000060008398          4 ub4<\/code><\/pre>\n<p>The Oracle function <i>ktcAllocXcb<\/i> reads the variable and puts it into the transaction table entry:<\/p>\n<pre><code>#0  0x00000000063caf2d in ktcAllocXcb ()\n#1  0x000000000668e43b in ktaiam ()\n#2  0x000000000623c262 in ktagetg0 ()\n#3  0x000000000623b0d4 in ktagetp_internal ()\n#4  0x000000000668d9cd in ktagdw ()\n#5  0x0000000006544d7e in ktaadm ()\n#6  0x000000000653c2cb in kksfbc ()\n#7  0x000000000603c1d3 in opiexe ()\n#8  0x00000000066926da in kpoal8 ()\n#9  0x000000000602d6c9 in opiodr ()\n#10 0x0000000006037303 in ttcpip ()\n#11 0x0000000006032cfc in opitsk ()\n#12 0x0000000006031818 in opiino ()\n#13 0x000000000602d6c9 in opiodr ()\n#14 0x000000000602cc8f in opidrv ()\n#15 0x000000000602c8c7 in sou2o ()\n#16 0x000000000602c711 in opimai_real ()\n#17 0x000000000602c1eb in ssthrdmain ()\n#18 0x000000000602bf59 in main ()<\/code><\/pre>\n<p><i>ksudbrmseccnt_<\/i> increases every second:<\/p>\n<pre><code>(gdb) p\/d  *(uint32_t)0x60008398\n$3 = 1599573789\n(gdb)\n$4 = 1599573790\n(gdb)\n$6 = 1599573791\n(gdb)\n$7 = 1599573792\n(gdb)\n$8 = 1599573793<\/code><\/pre>\n<h2><i>vktm\/kstmrmtickcntkeeper<\/i><\/h2>\n<p>The background process <i>vktm<\/i> maintains the global SGA variable <i>ksudbrmseccnt_<\/i> by calling the <i>kstmrmtickcntkeeper<\/i> function:<\/p>\n<pre><code>#0  0x00000000074a5478 in kstmrmtickcntkeeper ()\n#1  0x00000000074a4844 in kstmmainvktm ()\n#2  0x000000000720dd21 in ksbrdp ()\n#3  0x0000000006e14599 in opirip ()\n#4  0x000000000602cab0 in opidrv ()\n#5  0x000000000602c8c7 in sou2o ()\n#6  0x000000000602c694 in opimai_real ()\n#7  0x000000000602c1eb in ssthrdmain ()\n#8  0x000000000602bf59 in main ()<\/code><\/pre>\n<p>Consequently, if you see an old <i>v$transaction.start_time<\/i>, examine <i>vktm<\/i> with <i>pstack<\/i> and <i>truss<\/i>. I, for example, have found couple of databases where <i>vktm<\/i> was stuck in the <i>nanosleep<\/i> system call:<\/p>\n<pre><code>pstack 14583\n14583:  ora_vktm_DB1\n 00007fff93c76eba nanosleep (7fffbfffc7d0, 7fffbfffc7e0)\n 00000000072f3e9a sltrusleep () + 6a\n 000000000758b994 kstmrmtickcntkeeper () + 5a4\n 000000000758b1f4 kstmmainvktm () + 194\n 00000000072f5869 ksbrdp () + 9a9\n 0000000006efc489 opirip () + 2b9\n 0000000006118950 opidrv () + 160\n 0000000006118767 sou2o () + 97\n 0000000006118534 opimai_real () + a4\n 000000000611808b ssthrdmain () + 26b\n 0000000006117df9 main () + a9\n 0000000007771e34 ???????? ()\n\ntruss -f -p 14583\n14583:  nanosleep(0x7FFFBFFFC7D0, 0x7FFFBFFFC7E0) (sleeping...)<\/code><\/pre>\n<p>As a result, <i>start_time<\/i> was in the past.<\/p>\n<p>It was an OS issue, but the knowledge about the database internals helped me pinpoint this problem.<\/p>\n<h1>Conclusion<\/h1>\n<p>It seems unusual that a server process of a user session doesn&#8217;t call the OS timestamp function for getting a transaction start time. It rather reads the location in the SGA (<i>ksudbrmseccnt_<\/i> &#8211; &#8220;seconds counter&#8221;) which stores the current timestamp in seconds. The background process <i>vktm<\/i> maintains that counter.<\/p>\n<p>On the one hand, a single CPU instruction is much more efficient than a local timestamp function call. Besides that, <i>vktm<\/i> updates the timestamp just once per second, so it stays on CPU only very briefly.<\/p>\n<p>On the other hand, a stale counter remains unnoticed.<\/p>\n<p>In conclusion, <i>v$transaction.start_time<\/i> is a low-resolution value maintained on a best-effort basis at a very low cost. It primarily exists for monitoring and is probably not used internally by the database.<\/p>\n<h1>References<\/h1>\n<p><a href=\"https:\/\/tanelpoder.com\/2014\/01\/10\/oracle-x-tables-part-1-where-do-they-get-their-data-from\/\">[1]<\/a> Tanel Poder, <i>Oracle X$ tables \u2013 Part 1 \u2013 Where do they get their data from?.<\/i> January 10, 2014.<\/p>\n<h1>Updates<\/h1>\n<h2>Solaris OS Bug &#8211; November 3, 2020<\/h2>\n<p>The root cause is the following new bug: <i>31716314 : poll\/nanosleep waits weeks when passed 0.01 second timer values passed<\/i>.<br \/>\nIt has been a remarkable service by Oracle Solaris Support. After reproducing the problem with a simple C program, it took only a couple of weeks to identify the problem, file a new bug, include in the latest SRU (SRU27).<\/p>\n<h2>Oracle Support Note &#8211; March 15, 2021<\/h2>\n<p>Oracle issued the following support note for this case: <i>A process issuing a poll\/nanosleep with 0.01 second timer value waits weeks (Doc ID 2732367.1)<\/i>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb. <a href=\"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/\" class=\"more-link\">Continue Reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[27,5],"tags":[],"class_list":["post-3494","post","type-post","status-publish","format-standard","hentry","category-gdb","category-oracle"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Transaction start_time Internals - All-round Database Topics<\/title>\n<meta name=\"description\" content=\"Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Transaction start_time Internals - All-round Database Topics\" \/>\n<meta property=\"og:description\" content=\"Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/\" \/>\n<meta property=\"og:site_name\" content=\"All-round Database Topics\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-09T16:00:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-15T12:18:41+00:00\" \/>\n<meta name=\"author\" content=\"Nenad Noveljic\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@NenadNoveljic\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nenad Noveljic\" \/>\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:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/\"},\"author\":{\"name\":\"Nenad Noveljic\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"headline\":\"Transaction start_time Internals\",\"datePublished\":\"2020-09-09T16:00:46+00:00\",\"dateModified\":\"2021-03-15T12:18:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/\"},\"wordCount\":608,\"commentCount\":0,\"articleSection\":[\"gdb\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/\",\"name\":\"Transaction start_time Internals - All-round Database Topics\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\"},\"datePublished\":\"2020-09-09T16:00:46+00:00\",\"dateModified\":\"2021-03-15T12:18:41+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"description\":\"Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/transaction-start_time-internals\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Transaction start_time Internals\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\",\"name\":\"All-round Database Topics\",\"description\":\"Nenad Noveljic\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\",\"name\":\"Nenad Noveljic\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"caption\":\"Nenad Noveljic\"},\"sameAs\":[\"nenad-noveljic-9b746a6\",\"https:\\\/\\\/x.com\\\/NenadNoveljic\"],\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/author\\\/nenad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Transaction start_time Internals - All-round Database Topics","description":"Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb.","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:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/","og_locale":"en_US","og_type":"article","og_title":"Transaction start_time Internals - All-round Database Topics","og_description":"Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb.","og_url":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/","og_site_name":"All-round Database Topics","article_published_time":"2020-09-09T16:00:46+00:00","article_modified_time":"2021-03-15T12:18:41+00:00","author":"Nenad Noveljic","twitter_card":"summary_large_image","twitter_creator":"@NenadNoveljic","twitter_misc":{"Written by":"Nenad Noveljic","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/#article","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/"},"author":{"name":"Nenad Noveljic","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"headline":"Transaction start_time Internals","datePublished":"2020-09-09T16:00:46+00:00","dateModified":"2021-03-15T12:18:41+00:00","mainEntityOfPage":{"@id":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/"},"wordCount":608,"commentCount":0,"articleSection":["gdb","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/","url":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/","name":"Transaction start_time Internals - All-round Database Topics","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#website"},"datePublished":"2020-09-09T16:00:46+00:00","dateModified":"2021-03-15T12:18:41+00:00","author":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"description":"Troubleshooting wrong v$transaction.start_time entries. Undocumented internals on how Oracle populates x$ktcxb.","breadcrumb":{"@id":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nenadnoveljic.com\/blog\/transaction-start_time-internals\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nenadnoveljic.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Transaction start_time Internals"}]},{"@type":"WebSite","@id":"https:\/\/nenadnoveljic.com\/blog\/#website","url":"https:\/\/nenadnoveljic.com\/blog\/","name":"All-round Database Topics","description":"Nenad Noveljic","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nenadnoveljic.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa","name":"Nenad Noveljic","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","caption":"Nenad Noveljic"},"sameAs":["nenad-noveljic-9b746a6","https:\/\/x.com\/NenadNoveljic"],"url":"https:\/\/nenadnoveljic.com\/blog\/author\/nenad\/"}]}},"_links":{"self":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/3494","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/comments?post=3494"}],"version-history":[{"count":1,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/3494\/revisions"}],"predecessor-version":[{"id":3731,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/3494\/revisions\/3731"}],"wp:attachment":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/media?parent=3494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/categories?post=3494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/tags?post=3494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}