{"id":2929,"date":"2019-08-13T00:22:31","date_gmt":"2019-08-13T07:22:31","guid":{"rendered":"https:\/\/oracletutorial.com\/?page_id=2929"},"modified":"2025-06-01T05:44:24","modified_gmt":"2025-06-01T12:44:24","slug":"oracle-disable-triggers","status":"publish","type":"page","link":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/","title":{"rendered":"Oracle Disable Triggers"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to disable triggers of a table in the Oracle Database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='disable-a-single-trigger'>Disable a single trigger <a href=\"#disable-a-single-trigger\" class=\"anchor\" id=\"disable-a-single-trigger\" title=\"Anchor for Disable a single trigger\">#<\/a><\/h2>\n\n\n\n<p>Sometimes, you may want to disable a <a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-trigger\/\">trigger<\/a> for testing and troubleshooting purposes. To disable a trigger, you use the <code>ALTER TRIGGER DISABLE<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"PostgreSQL SQL dialect and PL\/pgSQL\" data-shcb-language-slug=\"pgsql\"><span><code class=\"hljs language-pgsql\"><span class=\"hljs-keyword\">ALTER<\/span> <span class=\"hljs-keyword\">TRIGGER<\/span> trigger_name <span class=\"hljs-keyword\">DISABLE<\/span>;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PostgreSQL SQL dialect and PL\/pgSQL<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">pgsql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this syntax, you specify the name of the trigger that you want to disable after the <code>ALTER TRIGGER<\/code> keywords.<\/p>\n\n\n\n<p>For example, to disable the trigger <code>customers_audit_trigger<\/code> of the <code>customers<\/code> table, you use the following statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"PostgreSQL SQL dialect and PL\/pgSQL\" data-shcb-language-slug=\"pgsql\"><span><code class=\"hljs language-pgsql\"><span class=\"hljs-keyword\">ALTER<\/span> <span class=\"hljs-keyword\">TRIGGER<\/span> customers_audit_trg <span class=\"hljs-keyword\">DISABLE<\/span>;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PostgreSQL SQL dialect and PL\/pgSQL<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">pgsql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Once a trigger is disabled, its color is gray if in the SQL Developer tool:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"264\" height=\"236\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-example.png\" alt=\"oracle disable trigger example\" class=\"wp-image-2930\"\/><\/figure>\n\n\n\n<p>If don&#8217;t want to the <code>ALTER TRIGGER<\/code> command, you can use SQL Developer tool to disable a trigger using these steps:<\/p>\n\n\n\n<p>First, right-click the trigger name and select <strong>Disable&#8230;<\/strong> menu item.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"353\" height=\"392\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer.png\" alt=\"\" class=\"wp-image-2931\" srcset=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer.png 353w, https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer-270x300.png 270w\" sizes=\"auto, (max-width: 353px) 100vw, 353px\" \/><\/figure>\n\n\n\n<p>Second, click the <strong>Apply<\/strong> button in the dialog to disable the trigger.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"322\" height=\"302\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer-step-2.png\" alt=\"\" class=\"wp-image-2932\" srcset=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer-step-2.png 322w, https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer-step-2-300x281.png 300w\" sizes=\"auto, (max-width: 322px) 100vw, 322px\" \/><\/figure>\n\n\n\n<p>Third, click the OK button in the confirmation dialog to acknowledge that the trigger has been disabled.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"282\" height=\"93\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-sql-developer-step-3.png\" alt=\"\" class=\"wp-image-2933\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id='disable-all-triggers-of-a-table'>Disable all triggers of a table <a href=\"#disable-all-triggers-of-a-table\" class=\"anchor\" id=\"disable-all-triggers-of-a-table\" title=\"Anchor for Disable all triggers of a table\">#<\/a><\/h2>\n\n\n\n<p>To disable all triggers associated with a table, you use the <code>ATLER TABLE ... DISABLE ALL TRIGGERS<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"PostgreSQL SQL dialect and PL\/pgSQL\" data-shcb-language-slug=\"pgsql\"><span><code class=\"hljs language-pgsql\"><span class=\"hljs-keyword\">ALTER<\/span> <span class=\"hljs-keyword\">TABLE<\/span> <span class=\"hljs-built_in\">table_name<\/span> <span class=\"hljs-keyword\">DISABLE<\/span> <span class=\"hljs-keyword\">ALL<\/span> TRIGGERS;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PostgreSQL SQL dialect and PL\/pgSQL<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">pgsql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this syntax, you specify the name of the table to which the triggers that you want to disable belong.<\/p>\n\n\n\n<p>For example, to disable all triggers associated with the <code>customers<\/code> table, you use the following statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"PostgreSQL SQL dialect and PL\/pgSQL\" data-shcb-language-slug=\"pgsql\"><span><code class=\"hljs language-pgsql\"><span class=\"hljs-keyword\">ALTER<\/span> <span class=\"hljs-keyword\">TABLE<\/span> customers <span class=\"hljs-keyword\">DISABLE<\/span> <span class=\"hljs-keyword\">ALL<\/span> TRIGGERS;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PostgreSQL SQL dialect and PL\/pgSQL<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">pgsql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>All the triggers of the table <code>customers<\/code> are disabled now. If you view them in SQL Developer, you will see that all of them are gray.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"270\" height=\"75\" src=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-all-triggers-example.png\" alt=\"oracle disable all triggers example\" class=\"wp-image-2934\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id='create-a-disabled-trigger'>Create a disabled trigger <a href=\"#create-a-disabled-trigger\" class=\"anchor\" id=\"create-a-disabled-trigger\" title=\"Anchor for Create a disabled trigger\">#<\/a><\/h2>\n\n\n\n<p>Sometimes, you may want to create a disabled trigger which is a trigger is the disabled state.<\/p>\n\n\n\n<p>For example, you want to create a trigger during the business hours and do not want to impact the current transactions.<\/p>\n\n\n\n<p>To do it safely, you can create a trigger in the disabled state first. And then you enable it later during the maintenance hours or at the weekend.<\/p>\n\n\n\n<p>To create a trigger in the disabled state, you use the <code><a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-trigger\/\">CREATE TRIGGER<\/a><\/code> statement with the <code>DISABLE<\/code> option:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"PostgreSQL SQL dialect and PL\/pgSQL\" data-shcb-language-slug=\"pgsql\"><span><code class=\"hljs language-pgsql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">OR REPLACE<\/span> <span class=\"hljs-keyword\">TRIGGER<\/span> trigger_name\n    <span class=\"hljs-keyword\">BEFORE<\/span> | <span class=\"hljs-keyword\">AFTER<\/span> event\n    <span class=\"hljs-keyword\">FOR<\/span> <span class=\"hljs-keyword\">EACH<\/span> <span class=\"hljs-keyword\">ROW<\/span>\n    <span class=\"hljs-keyword\">DISABLE<\/span> \n    <span class=\"hljs-keyword\">WHEN<\/span> (condition)\ntrigger_body    \n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PostgreSQL SQL dialect and PL\/pgSQL<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">pgsql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>This example creates a trigger on the table <code>customers<\/code> in the disabled state:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"PostgreSQL SQL dialect and PL\/pgSQL\" data-shcb-language-slug=\"pgsql\"><span><code class=\"hljs language-pgsql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">OR REPLACE<\/span> <span class=\"hljs-keyword\">TRIGGER<\/span> customers_bd_trg\n    <span class=\"hljs-keyword\">BEFORE<\/span> <span class=\"hljs-keyword\">DELETE<\/span>\n    <span class=\"hljs-keyword\">ON<\/span> customers\n    <span class=\"hljs-keyword\">FOR<\/span> <span class=\"hljs-keyword\">EACH<\/span> <span class=\"hljs-keyword\">ROW<\/span>\n    <span class=\"hljs-keyword\">DISABLE<\/span>\n<span class=\"hljs-keyword\">DECLARE<\/span>\n    l_order_count PLS_INTEGER;\n<span class=\"hljs-keyword\">BEGIN<\/span>\n    <span class=\"hljs-comment\">-- check if the customer has a transaction<\/span>\n    <span class=\"hljs-keyword\">SELECT<\/span> COUNT(*) <span class=\"hljs-keyword\">INTO<\/span> l_order_count \n    <span class=\"hljs-keyword\">FROM<\/span> orders\n    <span class=\"hljs-keyword\">WHERE<\/span> customer_id = :<span class=\"hljs-built_in\">OLD<\/span>.customer_id;\n    \n    <span class=\"hljs-comment\">-- raise an exception if the customer has at least one order <\/span>\n    <span class=\"hljs-keyword\">IF<\/span> l_order_count &gt; <span class=\"hljs-number\">0<\/span> <span class=\"hljs-keyword\">THEN<\/span>\n        raise_application_error(<span class=\"hljs-number\">-20010<\/span>,<span class=\"hljs-string\">'Cannot delete customer '<\/span> || :<span class=\"hljs-built_in\">OLD<\/span>.NAME || \n        <span class=\"hljs-string\">' because it already has transactions'<\/span>);\n    <span class=\"hljs-keyword\">END<\/span> <span class=\"hljs-keyword\">IF<\/span>;\n<span class=\"hljs-keyword\">END<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PostgreSQL SQL dialect and PL\/pgSQL<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">pgsql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id='summary'>Summary <a href=\"#summary\" class=\"anchor\" id=\"summary\" title=\"Anchor for Summary\">#<\/a><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use the <code>ALTER TRIGGER trigger_name DISABLE<\/code> to disable a trigger.<\/li>\n\n\n\n<li>Use the <code>ALTER TABLE table_name DISABLE ALL TRIGGERS<\/code> to disable all triggers of a table.<\/li>\n\n\n\n<li>Use the <code>CREATE TRIGGER<\/code> statement with the <code>DISABLE<\/code> option to create a disabled trigger.<\/li>\n<\/ul>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"2929\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/\"\n\t\t\t\tdata-post-title=\"Oracle Disable Triggers\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"2929\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/\"\n\t\t\t\tdata-post-title=\"Oracle Disable Triggers\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1418,"menu_order":37,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2929","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle Disable Triggers<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Disable Triggers\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/\" \/>\n<meta property=\"og:site_name\" content=\"Oracle Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-01T12:44:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-example.png\" \/>\n\t<meta property=\"og:image:width\" content=\"264\" \/>\n\t<meta property=\"og:image:height\" content=\"236\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/\",\"name\":\"Oracle Disable Triggers\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.oracletutorial.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/oracle-disable-trigger-example.png\",\"datePublished\":\"2019-08-13T07:22:31+00:00\",\"dateModified\":\"2025-06-01T12:44:24+00:00\",\"description\":\"In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/oracle-disable-trigger-example.png\",\"contentUrl\":\"https:\\\/\\\/www.oracletutorial.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/oracle-disable-trigger-example.png\",\"width\":264,\"height\":236,\"caption\":\"oracle disable trigger example\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/oracle-disable-triggers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PL\\\/SQL Tutorial\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Oracle Disable Triggers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/\",\"name\":\"Oracle Tutorial\",\"description\":\"Oracle Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.oracletutorial.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Disable Triggers","description":"In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.","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:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Disable Triggers","og_description":"In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.","og_url":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/","og_site_name":"Oracle Tutorial","article_modified_time":"2025-06-01T12:44:24+00:00","og_image":[{"width":264,"height":236,"url":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-example.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/","url":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/","name":"Oracle Disable Triggers","isPartOf":{"@id":"https:\/\/www.oracletutorial.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/#primaryimage"},"image":{"@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-example.png","datePublished":"2019-08-13T07:22:31+00:00","dateModified":"2025-06-01T12:44:24+00:00","description":"In this tutorial, you will learn how to disable triggers of a table in the Oracle Database.","breadcrumb":{"@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/#primaryimage","url":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-example.png","contentUrl":"https:\/\/www.oracletutorial.com\/wp-content\/uploads\/2019\/08\/oracle-disable-trigger-example.png","width":264,"height":236,"caption":"oracle disable trigger example"},{"@type":"BreadcrumbList","@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/oracle-disable-triggers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.oracletutorial.com\/"},{"@type":"ListItem","position":2,"name":"PL\/SQL Tutorial","item":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/"},{"@type":"ListItem","position":3,"name":"Oracle Disable Triggers"}]},{"@type":"WebSite","@id":"https:\/\/www.oracletutorial.com\/#website","url":"https:\/\/www.oracletutorial.com\/","name":"Oracle Tutorial","description":"Oracle Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.oracletutorial.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/2929","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/comments?post=2929"}],"version-history":[{"count":0,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/2929\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/1418"}],"wp:attachment":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/media?parent=2929"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}