{"id":7378,"date":"2019-04-01T14:49:41","date_gmt":"2019-04-01T13:49:41","guid":{"rendered":"http:\/\/blog.capdata.fr\/?p=7378"},"modified":"2022-11-21T17:07:33","modified_gmt":"2022-11-21T16:07:33","slug":"sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem","status":"publish","type":"post","link":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/","title":{"rendered":"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ?"},"content":{"rendered":"<a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-twitter nolightbox\" data-provider=\"twitter\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Twitter\" href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F7378&#038;text=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"twitter\" title=\"Share on Twitter\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/twitter.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-linkedin nolightbox\" data-provider=\"linkedin\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Linkedin\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F7378&#038;title=SQL%20Server%20Managed%20Instance%20dans%20Azure%20et%20le%20SQL%20Agent%20%3A%20pareil%20que%20du%20On-Prem%20%3F\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"linkedin\" title=\"Share on Linkedin\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/linkedin.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-mail nolightbox\" data-provider=\"mail\" rel=\"nofollow\" title=\"Share by email\" href=\"mailto:?subject=SQL%20Server%20Managed%20Instance%20dans%20Azure%20et%20le%20SQL%20Agent%20%3A%20pareil%20que%20du%20On-Prem%20%3F&#038;body=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20:%20https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F7378\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"mail\" title=\"Share by email\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/mail.png\" \/><\/a><p>Contrairement \u00e0 l&#8217;offre PaaS SQL Server initiale de Azure, qui ne dispose pas de l&#8217;Agent SQL Server, la nouvelle offre SQL Managed Instance promet de r\u00e9soudre ce probl\u00e8me.<\/p>\n<p>A nous les joies des jobs de maintenance des index et des stats &#8220;fait maison&#8221; , des proc\u00e9dures d&#8217;int\u00e9gration des donn\u00e9es m\u00e9tier , etc&#8230;<\/p>\n<p>Souvent, quand je r\u00e9alise des tests n\u00e9cessitant de simuler une petite activit\u00e9 sur une base de test, par exemple pour faire bouger un peu mon log transactionnel, j&#8217;utilise la technique suivante :<\/p>\n<p>1 &#8211; Je cr\u00e9\u00e9 une table avec 2 colonnes : un ID de type integer, avec identity, et une colonne avec un timestamp.<\/p>\n<pre class=\"brush: sql; title: ; notranslate\" title=\"\"> CREATE TABLE [dbo].[t1](\r\n\r\n[id] [int] IDENTITY(1,1) NOT NULL,\r\n\r\n[ma_date] [datetime] NOT NULL ) <\/pre>\n<p>2 &#8211; Je cr\u00e9\u00e9 un job qui va r\u00e9guli\u00e8rement ajouter une ligne avec la date du moment<\/p>\n<pre class=\"brush: sql; title: ; notranslate\" title=\"\">insert into t1 values (getdate()); <\/pre>\n<p>&nbsp;<\/p>\n<p>Pour sa planification, j&#8217;utilise habituellement un intervalle assez cours, de l&#8217;ordre de quelques secondes.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-7379\" src=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2019\/04\/job-schedule.png\" alt=\"\" width=\"662\" height=\"582\" srcset=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2019\/04\/job-schedule.png 662w, https:\/\/blog.capdata.fr\/wp-content\/uploads\/2019\/04\/job-schedule-300x264.png 300w\" sizes=\"auto, (max-width: 662px) 100vw, 662px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Cela permet ainsi de valider les temps de bascule sur des solutions de PCA\/PRA, des r\u00e9plications etc&#8230;<\/p>\n<p>Sauf que dans le cadre d&#8217;une Managed Instance, on va myst\u00e9rieusement se retrouver avec l&#8217;erreur ci-dessous :<\/p>\n<p><em>Msg 41914, Level 16, State 5, Procedure msdb.dbo.sp_update_schedule, Line 48 [Batch Start Line 4]<\/em><\/p>\n<p><em>SQL Server Agent feature Schedule job ONIDLE is not supported in SQL Database Managed Instance. Review the documentation for supported options.<\/em><\/p>\n<p>&nbsp;<\/p>\n<p>Eh oui ! L&#8217;utilisation d&#8217;une planification r\u00e9currente dans l&#8217;Agent SQL Server (en dessous de la journ\u00e9e, en fait) se traduit comme un job avec la propri\u00e9t\u00e9 &#8220;on idle CPU&#8221; : c&#8217;est \u00e0 dire qui ne s&#8217;ex\u00e9cute que si la capacit\u00e9 CPU n&#8217;est pas satur\u00e9e.<\/p>\n<p><strong>On ne peut donc pas planifier un job SQL avec une fr\u00e9quence inf\u00e9rieure \u00e0 la journ\u00e9e !<\/strong><\/p>\n<p>On se consolera en faisant une planification quotidienne (qui marche, heureusement), et une boucle while \/ waitfor delay de 5 secondes :<\/p>\n<pre class=\"brush: sql; title: ; notranslate\" title=\"\">\r\n\r\nwhile convert(time, getdate()) &lt; '23:59:55'\r\n\r\nBEGIN\r\n\r\nINSERT INTO t1 VALUES (getdate())\r\n\r\nwaitfor delay '00:00:05'\r\n\r\nEND <\/pre>\n<p>&nbsp;<\/p>\n<p>En tout cas, penser que SQL Server Managed Instance est strictement identique \u00e0 une instance SQL On-Premise est une erreur. Plus d&#8217;info : <a href=\"https:\/\/docs.microsoft.com\/fr-fr\/azure\/sql-database\/sql-database-managed-instance-transact-sql-information\">https:\/\/docs.microsoft.com\/fr-fr\/azure\/sql-database\/sql-database-managed-instance-transact-sql-information <\/a><\/p>\n<p>&nbsp;<\/p>\n<a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-twitter nolightbox\" data-provider=\"twitter\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Twitter\" href=\"https:\/\/twitter.com\/intent\/tweet?url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F7378&#038;text=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"twitter\" title=\"Share on Twitter\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/twitter.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-linkedin nolightbox\" data-provider=\"linkedin\" target=\"_blank\" rel=\"nofollow\" title=\"Share on Linkedin\" href=\"https:\/\/www.linkedin.com\/shareArticle?mini=true&#038;url=https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F7378&#038;title=SQL%20Server%20Managed%20Instance%20dans%20Azure%20et%20le%20SQL%20Agent%20%3A%20pareil%20que%20du%20On-Prem%20%3F\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px;margin-right:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"linkedin\" title=\"Share on Linkedin\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/linkedin.png\" \/><\/a><a class=\"synved-social-button synved-social-button-share synved-social-size-24 synved-social-resolution-single synved-social-provider-mail nolightbox\" data-provider=\"mail\" rel=\"nofollow\" title=\"Share by email\" href=\"mailto:?subject=SQL%20Server%20Managed%20Instance%20dans%20Azure%20et%20le%20SQL%20Agent%20%3A%20pareil%20que%20du%20On-Prem%20%3F&#038;body=Article%20sur%20le%20blog%20de%20la%20Capdata%20Tech%20Team%20%3A%20:%20https%3A%2F%2Fblog.capdata.fr%2Findex.php%2Fwp-json%2Fwp%2Fv2%2Fposts%2F7378\" style=\"font-size: 0px;width:24px;height:24px;margin:0;margin-bottom:5px\"><img loading=\"lazy\" decoding=\"async\" alt=\"mail\" title=\"Share by email\" class=\"synved-share-image synved-social-image synved-social-image-share\" width=\"24\" height=\"24\" style=\"display: inline;width:24px;height:24px;margin: 0;padding: 0;border: none;box-shadow: none\" src=\"https:\/\/blog.capdata.fr\/wp-content\/plugins\/social-media-feather\/synved-social\/image\/social\/regular\/48x48\/mail.png\" \/><\/a>","protected":false},"excerpt":{"rendered":"<p>Contrairement \u00e0 l&#8217;offre PaaS SQL Server initiale de Azure, qui ne dispose pas de l&#8217;Agent SQL Server, la nouvelle offre SQL Managed Instance promet de r\u00e9soudre ce probl\u00e8me. A nous les joies des jobs de maintenance des index et des&hellip; <a href=\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\" class=\"more-link\">Continuer la lecture <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":7802,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[282,5],"tags":[],"class_list":["post-7378","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-azure","category-sqlserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ? - Capdata TECH BLOG<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ? - Capdata TECH BLOG\" \/>\n<meta property=\"og:description\" content=\"Contrairement \u00e0 l&#8217;offre PaaS SQL Server initiale de Azure, qui ne dispose pas de l&#8217;Agent SQL Server, la nouvelle offre SQL Managed Instance promet de r\u00e9soudre ce probl\u00e8me. A nous les joies des jobs de maintenance des index et des&hellip; Continuer la lecture &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\" \/>\n<meta property=\"og:site_name\" content=\"Capdata TECH BLOG\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-01T13:49:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-21T16:07:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2019\/04\/job-schedule-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"662\" \/>\n\t<meta property=\"og:image:height\" content=\"582\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Capdata team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"Capdata team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\"},\"author\":{\"name\":\"Capdata team\",\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/person\/bfd9395c8ba4fa125792a543377035e9\"},\"headline\":\"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ?\",\"datePublished\":\"2019-04-01T13:49:41+00:00\",\"dateModified\":\"2022-11-21T16:07:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\"},\"wordCount\":384,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/blog.capdata.fr\/#organization\"},\"articleSection\":[\"Azure\",\"SQL Server\"],\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\",\"url\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\",\"name\":\"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ? - Capdata TECH BLOG\",\"isPartOf\":{\"@id\":\"https:\/\/blog.capdata.fr\/#website\"},\"datePublished\":\"2019-04-01T13:49:41+00:00\",\"dateModified\":\"2022-11-21T16:07:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/blog.capdata.fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.capdata.fr\/#website\",\"url\":\"https:\/\/blog.capdata.fr\/\",\"name\":\"Capdata TECH BLOG\",\"description\":\"Le blog technique sur les bases de donn\u00e9es de CAP DATA Consulting\",\"publisher\":{\"@id\":\"https:\/\/blog.capdata.fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.capdata.fr\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blog.capdata.fr\/#organization\",\"name\":\"Capdata TECH BLOG\",\"url\":\"https:\/\/blog.capdata.fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp\",\"contentUrl\":\"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp\",\"width\":800,\"height\":254,\"caption\":\"Capdata TECH BLOG\"},\"image\":{\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/cap-data-consulting\/mycompany\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.capdata.fr\/#\/schema\/person\/bfd9395c8ba4fa125792a543377035e9\",\"name\":\"Capdata team\",\"sameAs\":[\"https:\/\/www.capdata.fr\"],\"url\":\"https:\/\/blog.capdata.fr\/index.php\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ? - Capdata TECH BLOG","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:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/","og_locale":"fr_FR","og_type":"article","og_title":"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ? - Capdata TECH BLOG","og_description":"Contrairement \u00e0 l&#8217;offre PaaS SQL Server initiale de Azure, qui ne dispose pas de l&#8217;Agent SQL Server, la nouvelle offre SQL Managed Instance promet de r\u00e9soudre ce probl\u00e8me. A nous les joies des jobs de maintenance des index et des&hellip; Continuer la lecture &rarr;","og_url":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/","og_site_name":"Capdata TECH BLOG","article_published_time":"2019-04-01T13:49:41+00:00","article_modified_time":"2022-11-21T16:07:33+00:00","og_image":[{"width":662,"height":582,"url":"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2019\/04\/job-schedule-1.png","type":"image\/png"}],"author":"Capdata team","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"Capdata team","Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#article","isPartOf":{"@id":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/"},"author":{"name":"Capdata team","@id":"https:\/\/blog.capdata.fr\/#\/schema\/person\/bfd9395c8ba4fa125792a543377035e9"},"headline":"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ?","datePublished":"2019-04-01T13:49:41+00:00","dateModified":"2022-11-21T16:07:33+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/"},"wordCount":384,"commentCount":2,"publisher":{"@id":"https:\/\/blog.capdata.fr\/#organization"},"articleSection":["Azure","SQL Server"],"inLanguage":"fr-FR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/","url":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/","name":"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ? - Capdata TECH BLOG","isPartOf":{"@id":"https:\/\/blog.capdata.fr\/#website"},"datePublished":"2019-04-01T13:49:41+00:00","dateModified":"2022-11-21T16:07:33+00:00","breadcrumb":{"@id":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.capdata.fr\/index.php\/sql-server-managed-instance-dans-azure-et-le-sql-agent-pareil-que-du-on-prem\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/blog.capdata.fr\/"},{"@type":"ListItem","position":2,"name":"SQL Server Managed Instance dans Azure et le SQL Agent : pareil que du On-Prem ?"}]},{"@type":"WebSite","@id":"https:\/\/blog.capdata.fr\/#website","url":"https:\/\/blog.capdata.fr\/","name":"Capdata TECH BLOG","description":"Le blog technique sur les bases de donn\u00e9es de CAP DATA Consulting","publisher":{"@id":"https:\/\/blog.capdata.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.capdata.fr\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/blog.capdata.fr\/#organization","name":"Capdata TECH BLOG","url":"https:\/\/blog.capdata.fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/","url":"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp","contentUrl":"https:\/\/blog.capdata.fr\/wp-content\/uploads\/2023\/01\/logo_capdata.webp","width":800,"height":254,"caption":"Capdata TECH BLOG"},"image":{"@id":"https:\/\/blog.capdata.fr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/cap-data-consulting\/mycompany\/"]},{"@type":"Person","@id":"https:\/\/blog.capdata.fr\/#\/schema\/person\/bfd9395c8ba4fa125792a543377035e9","name":"Capdata team","sameAs":["https:\/\/www.capdata.fr"],"url":"https:\/\/blog.capdata.fr\/index.php\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts\/7378","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/comments?post=7378"}],"version-history":[{"count":4,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts\/7378\/revisions"}],"predecessor-version":[{"id":9533,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/posts\/7378\/revisions\/9533"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/media\/7802"}],"wp:attachment":[{"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/media?parent=7378"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/categories?post=7378"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.capdata.fr\/index.php\/wp-json\/wp\/v2\/tags?post=7378"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}