{"id":524,"date":"2017-11-14T23:53:44","date_gmt":"2017-11-15T02:53:44","guid":{"rendered":"https:\/\/maurobernal.com.ar\/blog\/?p=524"},"modified":"2017-11-15T00:12:28","modified_gmt":"2017-11-15T03:12:28","slug":"obtener-ultimo-dia-del-mes-sql-server","status":"publish","type":"post","link":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/","title":{"rendered":"Obtener el ultimo d\u00eda del mes con SQL Server"},"content":{"rendered":"<h2>Como obtener el \u00faltimo d\u00eda del mes con TSQL en SQL Server<\/h2>\n<p>Anteriormente hab\u00edamos visto como pod\u00edamos obtener:<\/p>\n<p><strong>Primer y \u00faltimo d\u00eda de <\/strong>Mes Anterior, Actual y Siguiente.<\/p>\n<p>Si te interesa ( y trabajas con una versi\u00f3n anterior a MS SQL Server 2012), les dejo el tutorial anterior:<\/p>\n<p><a href=\"https:\/\/maurobernal.com.ar\/blog\/blog\/t-sql\/primer-y-ultimo-dia-del-mes-con-sql-server-y-otros\/\">https:\/\/maurobernal.com.ar\/blog\/blog\/t-sql\/primer-y-ultimo-dia-del-mes-con-sql-server-y-otros\/<\/a><\/p>\n<p>Pero en esta oportunidad veremos otra variante para obtener <strong>el \u00faltimo d\u00eda del mes: actual, mes anterior y mes siguiente.<\/strong><\/p>\n<h2>Usando la funti\u00f3n EOMONTH()<\/h2>\n<p>A partir de Microsoft SQL Server 2012 se agreg\u00f3 la funci\u00f3n <strong>EOMONTH()<\/strong><\/p>\n<p><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/t-sql\/functions\/eomonth-transact-sql\">https:\/\/docs.microsoft.com\/en-us\/sql\/t-sql\/functions\/eomonth-transact-sql<\/a><\/p>\n<p>La misma permite obtener el \u00faltimo d\u00eda del mes<\/p>\n<h2>Veamos un ejemplo:<\/h2>\n<pre title=\"Uso de EOMONTH \" class=\"lang:tsql decode:true \">--GetDate() -&gt; 14 Nov 2017\r\n\r\n--\u00daltimo d\u00eda del mes Actual\r\nselect EOMONTH(getdate()) as UltDiaMesActual\r\n\r\n--\u00daltimo d\u00eda del mes Anterior\r\nselect EOMONTH(getdate(),-1) as UltDiaMesAnterior\r\n\r\n--\u00daltimo d\u00eda del mes Pr\u00f3ximo\r\nselect EOMONTH(getdate(),1) as UltDiaMesProximo<\/pre>\n<p>Esto nos dar\u00e1 como resultado:<\/p>\n<h2><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-525\" src=\"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png?resize=144%2C200&#038;ssl=1\" alt=\"usando_eomonth_ejemplo\" width=\"144\" height=\"200\" \/>Con un poco de ingenio podemos obtener un poco m\u00e1s<\/h2>\n<p>A partir del c\u00f3digo anterior, con un poco de ingenio, y con ayuda de la funci\u00f3n <strong>DateAdd() <\/strong><\/p>\n<p><a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/t-sql\/functions\/dateadd-transact-sql\">https:\/\/docs.microsoft.com\/en-us\/sql\/t-sql\/functions\/dateadd-transact-sql<\/a><\/p>\n<p>Si le agregamos un d\u00eda podemos obtener el primer d\u00eda del mes anterior, mes actual y mes pr\u00f3ximo<\/p>\n<pre title=\"usando EOMONTH() para el primer dia del mes anterior, actual y proximo\" class=\"lang:tsql decode:true\">--GetDate() -&gt; 14 Nov 2017\r\n\r\n--Primer d\u00eda del Mes Anterior\r\nselect dateadd(d,1,EOMONTH(getdate(),-2)) as PrimerDiaMesAnterior\r\n\r\n--Primer d\u00eda del Mes Actual\r\nselect dateadd(d,1,EOMONTH(getdate(),-1)) as PrimerDiaMesActual\r\n\r\n--Primer Dia del Mes Siguiente\r\nselect dateadd(d,1,EOMONTH(getdate())) as PrimerDiaMesSiguiente\r\n<\/pre>\n<p>El resultado ser\u00eda el siguiente:<\/p>\n<p><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-530\" src=\"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo2.png?resize=175%2C194&#038;ssl=1\" alt=\"eomoth para primer dia del mes\" width=\"175\" height=\"194\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>No se olviden de comentar si les sirvi\u00f3, !!! Y cualquier cosa que necesiten hacer es posible con un poco de paciencia&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Como obtener el \u00faltimo d\u00eda del mes con TSQL en SQL Server Anteriormente hab\u00edamos visto como pod\u00edamos obtener: Primer y \u00faltimo d\u00eda de Mes Anterior, Actual y Siguiente. Si te&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[27,4,3],"tags":[28,136,8,29],"class_list":["post-524","post","type-post","status-publish","format-standard","hentry","category-fecha","category-mssql","category-t-sql","tag-fecha-2","tag-ms-sql","tag-mssql-2","tag-tsql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Obtener el \u00faltimo d\u00eda del mes actual, anterior y proximo en SQL Server<\/title>\n<meta name=\"description\" content=\"Como obtener el \u00faltimo d\u00eda del mes con TSQL a traves de la funci\u00f3n EOMONTH en MS SQL Server, y como usarla para obtener el primer d\u00eda del mes.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Obtener el \u00faltimo d\u00eda del mes actual, anterior y proximo en SQL Server\" \/>\n<meta property=\"og:description\" content=\"Como obtener el \u00faltimo d\u00eda del mes con TSQL a traves de la funci\u00f3n EOMONTH en MS SQL Server, y como usarla para obtener el primer d\u00eda del mes.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"devops Mauro Bernal\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-15T02:53:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-11-15T03:12:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png\" \/>\n<meta name=\"author\" content=\"Mauro Bernal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@_maurobernal\" \/>\n<meta name=\"twitter:site\" content=\"@_maurobernal\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mauro Bernal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/\"},\"author\":{\"name\":\"Mauro Bernal\",\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/#\\\/schema\\\/person\\\/09c4dbdfb59b20e015c703fd19713283\"},\"headline\":\"Obtener el ultimo d\u00eda del mes con SQL Server\",\"datePublished\":\"2017-11-15T02:53:44+00:00\",\"dateModified\":\"2017-11-15T03:12:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/\"},\"wordCount\":222,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/#\\\/schema\\\/person\\\/09c4dbdfb59b20e015c703fd19713283\"},\"image\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/eomonth_ejemplo.png\",\"keywords\":[\"fecha\",\"ms sql\",\"mssql\",\"tsql\"],\"articleSection\":[\"Fecha\",\"MSSQL\",\"T-SQL\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/\",\"url\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/\",\"name\":\"Obtener el \u00faltimo d\u00eda del mes actual, anterior y proximo en SQL Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/eomonth_ejemplo.png\",\"datePublished\":\"2017-11-15T02:53:44+00:00\",\"dateModified\":\"2017-11-15T03:12:28+00:00\",\"description\":\"Como obtener el \u00faltimo d\u00eda del mes con TSQL a traves de la funci\u00f3n EOMONTH en MS SQL Server, y como usarla para obtener el primer d\u00eda del mes.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/eomonth_ejemplo.png?fit=144%2C200&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/eomonth_ejemplo.png?fit=144%2C200&ssl=1\",\"width\":144,\"height\":200,\"caption\":\"usando_eomonth_ejemplo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/obtener-ultimo-dia-del-mes-sql-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Obtener el ultimo d\u00eda del mes con SQL Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/\",\"name\":\"devops Mauro Bernal\",\"description\":\"Cuando tu trabajo es hacer que las cosas funcionen bien...\",\"publisher\":{\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/#\\\/schema\\\/person\\\/09c4dbdfb59b20e015c703fd19713283\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/maurobernal.com.ar\\\/blog\\\/#\\\/schema\\\/person\\\/09c4dbdfb59b20e015c703fd19713283\",\"name\":\"Mauro Bernal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/logo-maurobernal.png?fit=1740%2C1740&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/logo-maurobernal.png?fit=1740%2C1740&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/logo-maurobernal.png?fit=1740%2C1740&ssl=1\",\"width\":1740,\"height\":1740,\"caption\":\"Mauro Bernal\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/maurobernal.com.ar\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/logo-maurobernal.png?fit=1740%2C1740&ssl=1\"},\"description\":\"Desarrollo de Sistemas en .Net, IT Callcenters, DBA de SQL Server, Mikrotik, Pentest y T\u00e9cnico consultor de Sistemas Bejerman\",\"sameAs\":[\"https:\\\/\\\/maurobernal.com.ar\",\"https:\\\/\\\/x.com\\\/_maurobernal\",\"https:\\\/\\\/youtube.com\\\/maurobernal\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Obtener el \u00faltimo d\u00eda del mes actual, anterior y proximo en SQL Server","description":"Como obtener el \u00faltimo d\u00eda del mes con TSQL a traves de la funci\u00f3n EOMONTH en MS SQL Server, y como usarla para obtener el primer d\u00eda del mes.","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:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/","og_locale":"es_ES","og_type":"article","og_title":"Obtener el \u00faltimo d\u00eda del mes actual, anterior y proximo en SQL Server","og_description":"Como obtener el \u00faltimo d\u00eda del mes con TSQL a traves de la funci\u00f3n EOMONTH en MS SQL Server, y como usarla para obtener el primer d\u00eda del mes.","og_url":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/","og_site_name":"devops Mauro Bernal","article_published_time":"2017-11-15T02:53:44+00:00","article_modified_time":"2017-11-15T03:12:28+00:00","og_image":[{"url":"https:\/\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png","type":"","width":"","height":""}],"author":"Mauro Bernal","twitter_card":"summary_large_image","twitter_creator":"@_maurobernal","twitter_site":"@_maurobernal","twitter_misc":{"Escrito por":"Mauro Bernal","Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#article","isPartOf":{"@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/"},"author":{"name":"Mauro Bernal","@id":"https:\/\/maurobernal.com.ar\/blog\/#\/schema\/person\/09c4dbdfb59b20e015c703fd19713283"},"headline":"Obtener el ultimo d\u00eda del mes con SQL Server","datePublished":"2017-11-15T02:53:44+00:00","dateModified":"2017-11-15T03:12:28+00:00","mainEntityOfPage":{"@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/"},"wordCount":222,"commentCount":1,"publisher":{"@id":"https:\/\/maurobernal.com.ar\/blog\/#\/schema\/person\/09c4dbdfb59b20e015c703fd19713283"},"image":{"@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png","keywords":["fecha","ms sql","mssql","tsql"],"articleSection":["Fecha","MSSQL","T-SQL"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/","url":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/","name":"Obtener el \u00faltimo d\u00eda del mes actual, anterior y proximo en SQL Server","isPartOf":{"@id":"https:\/\/maurobernal.com.ar\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png","datePublished":"2017-11-15T02:53:44+00:00","dateModified":"2017-11-15T03:12:28+00:00","description":"Como obtener el \u00faltimo d\u00eda del mes con TSQL a traves de la funci\u00f3n EOMONTH en MS SQL Server, y como usarla para obtener el primer d\u00eda del mes.","breadcrumb":{"@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#primaryimage","url":"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png?fit=144%2C200&ssl=1","contentUrl":"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2017\/11\/eomonth_ejemplo.png?fit=144%2C200&ssl=1","width":144,"height":200,"caption":"usando_eomonth_ejemplo"},{"@type":"BreadcrumbList","@id":"https:\/\/maurobernal.com.ar\/blog\/obtener-ultimo-dia-del-mes-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/maurobernal.com.ar\/blog\/"},{"@type":"ListItem","position":2,"name":"Obtener el ultimo d\u00eda del mes con SQL Server"}]},{"@type":"WebSite","@id":"https:\/\/maurobernal.com.ar\/blog\/#website","url":"https:\/\/maurobernal.com.ar\/blog\/","name":"devops Mauro Bernal","description":"Cuando tu trabajo es hacer que las cosas funcionen bien...","publisher":{"@id":"https:\/\/maurobernal.com.ar\/blog\/#\/schema\/person\/09c4dbdfb59b20e015c703fd19713283"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/maurobernal.com.ar\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":["Person","Organization"],"@id":"https:\/\/maurobernal.com.ar\/blog\/#\/schema\/person\/09c4dbdfb59b20e015c703fd19713283","name":"Mauro Bernal","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2023\/07\/logo-maurobernal.png?fit=1740%2C1740&ssl=1","url":"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2023\/07\/logo-maurobernal.png?fit=1740%2C1740&ssl=1","contentUrl":"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2023\/07\/logo-maurobernal.png?fit=1740%2C1740&ssl=1","width":1740,"height":1740,"caption":"Mauro Bernal"},"logo":{"@id":"https:\/\/i0.wp.com\/maurobernal.com.ar\/blog\/wp-content\/uploads\/2023\/07\/logo-maurobernal.png?fit=1740%2C1740&ssl=1"},"description":"Desarrollo de Sistemas en .Net, IT Callcenters, DBA de SQL Server, Mikrotik, Pentest y T\u00e9cnico consultor de Sistemas Bejerman","sameAs":["https:\/\/maurobernal.com.ar","https:\/\/x.com\/_maurobernal","https:\/\/youtube.com\/maurobernal"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/posts\/524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/comments?post=524"}],"version-history":[{"count":5,"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/posts\/524\/revisions"}],"predecessor-version":[{"id":533,"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/posts\/524\/revisions\/533"}],"wp:attachment":[{"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/media?parent=524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/categories?post=524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/maurobernal.com.ar\/blog\/wp-json\/wp\/v2\/tags?post=524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}