{"id":37832,"date":"2020-09-08T15:57:40","date_gmt":"2020-09-08T22:57:40","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=37832"},"modified":"2021-02-10T18:13:36","modified_gmt":"2021-02-11T01:13:36","slug":"using-the-mysqlbinlog-utility","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/","title":{"rendered":"Using the Mysqlbinlog Utility"},"content":{"rendered":"\n<p>MySQL binary logging is used for replication and also for point-in-time recovery of a MySQL database instance. It records any changes to database contents and may be recorded in a &#8220;statement-based&#8221; or &#8220;row-based&#8221; format. The default location to find the binary logs is \/var\/lib\/mysql, though their location may be defined as desired through the configuration file.<\/p>\n\n\n\n<p>As the name implies, the binary logs are written in binary format and are thus not human-readable; however, the mysqlbinlog utility can be used to view the binary logs&#8217; contents in text format. This output can be viewed as the output following the command or sent to a specific location and file. Depending on the binary log files&#8217; size, you may want to view only a portion of the file, especially if disk space is limited.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Mysqlbinlog Utility Commands<\/h2>\n\n\n\n<p>To view the entire contents of a binary log, binlog.000001 in this example, run the following:<\/p>\n\n\n\n<p>shell&gt; <strong>mysqlbinlog binlog.000001<\/strong><\/p>\n\n\n\n<p>To write the entire contents of binlog.000001 to a file, run the following:<\/p>\n\n\n\n<p>shell&gt; <strong>mysqlbinlog binlog.000001 &gt; \/path\/to\/file\/binlog000001.txt <\/strong><\/p>\n\n\n\n<p>Note: If GTIDs are enabled, run the command as follows:<\/p>\n\n\n\n<p>shell&gt; <strong>mysqlbinlog &#8211;skip-gtids binlog.000001 &gt; \/path\/to\/file\/binlog000001.txt <\/strong><\/p>\n\n\n\n<p>Again, ensure there&#8217;s enough disk space for a large binlog file before running either of the previous commands.<\/p>\n\n\n\n<p>To view a portion of the binary log, you can do so based on many different options: events from one specific database, events based on the binlog position, events from one specific day or one specific hour of one day, etc.<\/p>\n\n\n\n<p>To view binlog entries starting at a specific time \u2014 such as 5:00am on July 17, 2020 \u2014 run the following:<\/p>\n\n\n\n<p>shell&gt; <strong>mysqlbinlog &#8211;start-datetime=&#8221;2020-07-17 05:00:00&#8243; binlog.000001 <\/strong><\/p>\n\n\n\n<p>The output from the above commands will show header information, which can be ignored using the &#8220;-s&#8221; or &#8220;&#8211;short-form&#8221; option. This will display only the SQL queries and filter out each entry&#8217;s header information for easier viewing and smaller file sizes.<\/p>\n\n\n\n<p>When using mysqlbinlog to playback events to the database, for example using them for point-in-time recovery coupled with a most recent backup, the utility is used similarly. For example, to play the events from a given binary log file, binlog.000004, run the following:<\/p>\n\n\n\n<p>shell&gt; <strong>mysqlbinlog binlog.000004 | mysq -u userhere -p <\/strong><\/p>\n\n\n\n<p>Note: If more than one binary log file is needed for the restore, run all binary log files as one command to avoid any data loss due to temporary tables being dropped between file processing:<\/p>\n\n\n\n<p>shell&gt; <strong>mysqlbinlog binlog.000004 binlog.000005 binlog.000006  | mysq -u userhere -p <\/strong><\/p>\n\n\n\n<p>Note that piping binary logs into the database for a restore procedure will also have all events written to the current binary log. Binary logging must be disabled during the restore of the binary logs to avoid this. This can be accomplished by using the \u201c-D\u201d or \u201c&#8211;disable-log-bin\u201d options.<\/p>\n\n\n\n<p>Note that this blog covers some of the more common options used with the mysqlbinlog utility; however, many more exist to fine-tune your needs with viewing or replaying the binary logs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Mysqlbinlog Utility Summary<\/h2>\n\n\n\n<p>Viewing the contents of the MySQL binary logs is done by using the mysqlbinlog utility, which is available with any standard installation of MySQL. The binary logs contain a record of all changes made to the MySQL database and are used in replication and also for point-in-time recovery. Viewing the contents of the binary logs in text format is often useful for troubleshooting replication, auditing purposes, or general reviews of changes made to the database contents. The mysqlbinlog utility is also used for piping the binary logs into MySQL for point-in-time recovery.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySQL binary logging is used for replication and also for point-in-time recovery of a MySQL database instance. It records any changes to database contents and may be recorded in a &#8220;statement-based&#8221; or &#8220;row-based&#8221; format. The default location to find the binary logs is \/var\/lib\/mysql, though their location may be defined as desired through the configuration [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":37835,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,39],"tags":[4118],"class_list":["post-37832","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-mysql","tag-mysqlbinlog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Using the Mysqlbinlog Utility in MySQL<\/title>\n<meta name=\"description\" content=\"An easy to use utility exists to view the contents of MySQL binary logs. This is called mysqlbinlog and is available with any installation of MySQL.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using the Mysqlbinlog Utility\" \/>\n<meta property=\"og:description\" content=\"An easy to use utility exists to view the contents of MySQL binary logs. This is called mysqlbinlog and is available with any installation of MySQL.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-08T22:57:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:13:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/Using-the-Mysqlbinlog-Utility.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XTIVIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"Using the Mysqlbinlog Utility\",\"datePublished\":\"2020-09-08T22:57:40+00:00\",\"dateModified\":\"2021-02-11T01:13:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\"},\"wordCount\":602,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg\",\"keywords\":[\"mysqlbinlog\"],\"articleSection\":[\"Blog\",\"MySQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\",\"name\":\"Using the Mysqlbinlog Utility in MySQL\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg\",\"datePublished\":\"2020-09-08T22:57:40+00:00\",\"dateModified\":\"2021-02-11T01:13:36+00:00\",\"description\":\"An easy to use utility exists to view the contents of MySQL binary logs. This is called mysqlbinlog and is available with any installation of MySQL.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg\",\"width\":557,\"height\":291,\"caption\":\"Using the Mysqlbinlog Utility\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using the Mysqlbinlog Utility\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Using the Mysqlbinlog Utility in MySQL","description":"An easy to use utility exists to view the contents of MySQL binary logs. This is called mysqlbinlog and is available with any installation of MySQL.","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:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/","og_locale":"en_US","og_type":"article","og_title":"Using the Mysqlbinlog Utility","og_description":"An easy to use utility exists to view the contents of MySQL binary logs. This is called mysqlbinlog and is available with any installation of MySQL.","og_url":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2020-09-08T22:57:40+00:00","article_modified_time":"2021-02-11T01:13:36+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/Using-the-Mysqlbinlog-Utility.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"Using the Mysqlbinlog Utility","datePublished":"2020-09-08T22:57:40+00:00","dateModified":"2021-02-11T01:13:36+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/"},"wordCount":602,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg","keywords":["mysqlbinlog"],"articleSection":["Blog","MySQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/","url":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/","name":"Using the Mysqlbinlog Utility in MySQL","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg","datePublished":"2020-09-08T22:57:40+00:00","dateModified":"2021-02-11T01:13:36+00:00","description":"An easy to use utility exists to view the contents of MySQL binary logs. This is called mysqlbinlog and is available with any installation of MySQL.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-the-Mysqlbinlog-Utility.jpg","width":557,"height":291,"caption":"Using the Mysqlbinlog Utility"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/using-the-mysqlbinlog-utility\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Using the Mysqlbinlog Utility"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37832","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=37832"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37832\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/37835"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=37832"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=37832"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=37832"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}