{"id":3345,"date":"2019-03-25T17:43:51","date_gmt":"2019-03-25T20:43:51","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/structure-query-language-sql-chapter-8-triggers\/"},"modified":"2020-02-12T15:50:36","modified_gmt":"2020-02-12T18:50:36","slug":"structure-query-language-sql-chapter-8-triggers","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/","title":{"rendered":"Structure Query Language (SQL): Chapter 8 &#8211; Triggers."},"content":{"rendered":"<div align=\"justify\">\n<p>Triggers are a type of special stored procedures that are executed whenever there is an attempt to change the data in a table protected by them.\u00a0 DML triggers (Data Manipulation Language &#8211; INSERT, UPDATE, DELETE) can be used to impose rules, to check data integrity, to query other tables, and to include complex Transact-SQL instructions.<\/p>\n<p>These procedures will be automatically triggered whenever one tries to insert, update, or delete data from a table, and they can never be ignored. Unlike common stored procedures, triggers can&#8217;t be executed directly, and they can&#8217;t send or receive parameters either.<\/p>\n<p>A trigger can contain a ROLLBACK TRANSACTION instruction, even when there is no explicit BEGIN TRANSACTION instruction; in this case, the whole transaction (both the trigger and the instruction triggering it) will be reverted or undone.<\/p>\n<p>Triggers will always be executed after an INSERT, UPDATE, or DELETE command. In this article, this will be illustrated with an example of INSERT trigger.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4996\/1.png\" alt=\"\" width=\"266\" height=\"139\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p><b>INSERT trigger<\/b><\/p>\n<p>An INSERT trigger can send error or success messages, or even execute certain functions according to the created transactions. These actions cane be set up in a trigger via IF conditionals, which makes it possible to check whether the operation was executed successfully. In the example, a table called <b>tbl_test<\/b> will be criated, and customers&#8217; registry will be simulated. Whenever a new user is inserted, a confirmation message will be recorded with information of the operation&#8217;s date\/time and of its success status.<\/p>\n<p>DML triggers instructions can also use two special tables: <b>Deleted <\/b>and <b>Inserted<\/b>. The SQL Server is the responsible for automatically creating and managing these tables, and they can be used to test the effect of changes in data. The <b>Inserted <\/b>table stores copies of lines affected during INSERT and UPDATE instructions. When inserting or updating data, new lines will be added to <b>Inserted <\/b>table.<\/p>\n<p><b>Creating tables: <\/b><\/p>\n<div align=\"left\"><span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">CREATE TABLE<\/span> <span style=\"color: #339966;\">tbl_test<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 (<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #339966;\">user_cpf<\/span> int not null <span style=\"color: #0000ff;\">primary key<\/span>,<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #339966;\">user_name<\/span> <span style=\"color: #0000ff;\">varchar<\/span>(128) not null,<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #339966;\">user_email<\/span> <span style=\"color: #0000ff;\">varchar<\/span>(128) not null<\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 )<\/span><br \/>\n<span style=\"color: #0000ff; font-family: Courier New;\">GO<\/span><span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">CREATE TABLE<\/span> <span style=\"color: #339966;\">Status_tbl<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 (<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #339966;\">Field1 <\/span><span style=\"color: #0000ff;\">varchar<\/span>(128) not null,<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #339966;\">Date_Time<\/span> <span style=\"color: #0000ff;\">datetime<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 )<\/span><br \/>\n<span style=\"color: #0000ff; font-family: Courier New;\">GO<\/span><\/div>\n<p><b>Creating triggers:<\/b><\/p>\n<div align=\"left\"><span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">CREATE TRIGGER<\/span> <span style=\"color: #339966;\">onInsertValue <\/span><span style=\"color: #0000ff;\">ON <\/span><span style=\"color: #339966;\">tbl_test<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">FOR INSERT AS<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">IF <\/span>(<span style=\"color: #0000ff;\">SELECT <\/span>COUNT(*) <span style=\"color: #0000ff;\">FROM <\/span><span style=\"color: #339966;\">INSERTED<\/span>) = 1<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">INSERT INTO<\/span> <span style=\"color: #339966;\">Status_tbl<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 (<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #339966;\">Field1,<\/span><\/span><span style=\"color: #339966;\"><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Date_Time<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 )<\/span><br \/>\n<span style=\"font-family: Courier New;\"><span style=\"color: #0000ff;\">VALUES<\/span><\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 (<span style=\"color: #ff0000;\">&#8216;Record inserted successfully&#8217;<\/span>, <span style=\"color: #ff00ff;\">CURRENT_TIMESTAMP<\/span>)<\/span><br \/>\n<span style=\"color: #0000ff; font-family: Courier New;\">GO<\/span><\/div>\n<p>To every record successfully inserted, the SGBD will write in an auxiliary table called Status_tbl. From this auxiliary table, you can handle records in E3, confirming whether the values have really been inserted in the main table.<\/p>\n<p><b>Inserting values in a table from SQL Management Studio:<\/b><\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4996\/2.png\" alt=\"\" width=\"268\" height=\"259\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>To check whether there was an INSERT command in the database, you can create a query in E3 that returns the last inserted record in <b>Status_tbl<\/b> table. The query&#8217;s syntax is the following:<\/p>\n<div align=\"left\"><b><span style=\"font-family: Courier New;\">SELECT Top 1 Status_tbl.Field1,Status_tbl.Date_Time <\/span><\/b><br \/>\n<b><span style=\"font-family: Courier New;\">FROM Status_tbl<\/span><\/b><br \/>\n<b><span style=\"font-family: Courier New;\">ORDER BY Status_tbl.Date_TimeDESC<\/span><\/b><\/div>\n<p>Every time data has been successfully written in the table (via Historic&#8217;s <i>WriteRecord <\/i>method or <i>Insert Into<\/i> command), <b>Status_tbl<\/b> table&#8217;s fields will return with a message and last INSERT&#8217;s time\/date, according to what was set up in the trigger:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4996\/3.png\" alt=\"\" width=\"392\" height=\"60\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>The database used in this article is Microsoft SQL Server 2012.<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<h3>Related Articles<\/h3>\n<hr \/>\n<ul>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-1-manipulating-information-in-the-db\/\">Structure Query Language (SQL): Chapter 1 &#8211; Manipulating information in the DB.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-2-sql-server-databases-files-and-logs\/\">Structure Query Language (SQL): Chapter 2 &#8211; SQL Server Database&#8217;s Files and Logs.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-3-data-discard-and-db-limits\/\">Structure Query Language (SQL): Chapter 3 &#8211; Data Discard and DB Limits.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-4-backup\/\">Structure Query Language (SQL): Chapter 4 &#8211; Backup.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-5-best-practices-for-setting-up-historics-and-queries\/\">Structure Query Language (SQL): Chapter 5 &#8211; Best practices for setting up Historics and Queries.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-6-sql-commands\/\">Structure Query Language (SQL): Chapter 6 &#8211; SQL Commands.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-7-views\/\">Structure Query Language (SQL): Chapter 7 &#8211; Views.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\">Structure Query Language (SQL): Chapter 8 &#8211; Triggers.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-9-stored-procedures\/\">Structure Query Language (SQL): Chapter 9 &#8211; Stored Procedures.<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Triggers are a type of special stored procedures that are executed whenever there is an attempt to change the data in a table protected by them.\u00a0 DML triggers (Data Manipulation&hellip;<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[735],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Structure Query Language (SQL): Chapter 8 - Structure Query Language (SQL): Chapter 8 - Triggers.[:] - Elipse Knowledgebase<\/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:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Structure Query Language (SQL): Chapter 8 - Triggers.\" \/>\n<meta property=\"og:description\" content=\"Triggers are a type of special stored procedures that are executed whenever there is an attempt to change the data in a table protected by them.\u00a0 DML triggers (Data Manipulation&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-25T20:43:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-02-12T18:50:36+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4996\/1.png\" \/>\n<meta name=\"author\" content=\"D\u00e9lio Damin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"D\u00e9lio Damin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\"},\"author\":{\"name\":\"D\u00e9lio Damin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\"},\"headline\":\"Structure Query Language (SQL): Chapter 8 &#8211; Triggers.\",\"datePublished\":\"2019-03-25T20:43:51+00:00\",\"dateModified\":\"2020-02-12T18:50:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\"},\"wordCount\":1309,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"DataBases\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\",\"name\":\"[:pt]Structure Query Language (SQL): Chapter 8 - Triggers.[:en]Structure Query Language (SQL): Chapter 8 - Triggers.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:43:51+00:00\",\"dateModified\":\"2020-02-12T18:50:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Structure Query Language (SQL): Chapter 8 &#8211; Triggers.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\",\"name\":\"D\u00e9lio Damin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"caption\":\"D\u00e9lio Damin\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/delio\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Structure Query Language (SQL): Chapter 8 - Structure Query Language (SQL): Chapter 8 - Triggers.[:] - Elipse Knowledgebase","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:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Structure Query Language (SQL): Chapter 8 - Triggers.[:en]Structure Query Language (SQL): Chapter 8 - Triggers.[:] - Elipse Knowledgebase","og_description":"Triggers are a type of special stored procedures that are executed whenever there is an attempt to change the data in a table protected by them.\u00a0 DML triggers (Data Manipulation&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:43:51+00:00","article_modified_time":"2020-02-12T18:50:36+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4996\/1.png"}],"author":"D\u00e9lio Damin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"D\u00e9lio Damin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/"},"author":{"name":"D\u00e9lio Damin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778"},"headline":"Structure Query Language (SQL): Chapter 8 &#8211; Triggers.","datePublished":"2019-03-25T20:43:51+00:00","dateModified":"2020-02-12T18:50:36+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/"},"wordCount":1309,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["DataBases"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/","url":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/","name":"[:pt]Structure Query Language (SQL): Chapter 8 - Triggers.[:en]Structure Query Language (SQL): Chapter 8 - Triggers.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:43:51+00:00","dateModified":"2020-02-12T18:50:36+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-chapter-8-triggers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Structure Query Language (SQL): Chapter 8 &#8211; Triggers."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778","name":"D\u00e9lio Damin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","caption":"D\u00e9lio Damin"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/delio\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3345"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=3345"}],"version-history":[{"count":3,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3345\/revisions"}],"predecessor-version":[{"id":10174,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3345\/revisions\/10174"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=3345"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=3345"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=3345"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}