{"id":1910,"date":"2019-05-01T12:58:14","date_gmt":"2019-05-01T05:58:14","guid":{"rendered":"http:\/\/www.sqlservertutorial.net\/?page_id=1910"},"modified":"2020-07-11T03:34:48","modified_gmt":"2020-07-10T20:34:48","slug":"sql-server-throw","status":"publish","type":"page","link":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/","title":{"rendered":"SQL Server THROW"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the SQL Server <code>THROW<\/code> statement to raise an exception.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-throw-statement-overview'>SQL Server THROW statement overview <a href=\"#sql-server-throw-statement-overview\" class=\"anchor\" id=\"sql-server-throw-statement-overview\" title=\"Anchor for SQL Server &lt;code&gt;THROW&lt;\/code&gt; statement overview\">#<\/a><\/h2>\n\n\n\n<p>The <code>THROW<\/code> statement raises an exception and transfers execution to a <code>CATCH<\/code> block of a <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-try-catch\/\">TRY CATCH<\/a><\/code> construct.<\/p>\n\n\n\n<p>The following illustrates the syntax of the <code>THROW<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">THROW &#91; error_number ,  \n        message ,  \n        state ];\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this syntax:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='error_number'>error_number <a href=\"#error_number\" class=\"anchor\" id=\"error_number\" title=\"Anchor for error_number\">#<\/a><\/h3>\n\n\n\n<p>The <code>error_number<\/code> is an integer that represents the exception. The <code>error_number<\/code> must be greater than <code>50,000<\/code> and less than or equal to <code>2,147,483,647<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='message'>message <a href=\"#message\" class=\"anchor\" id=\"message\" title=\"Anchor for message\">#<\/a><\/h3>\n\n\n\n<p>The <code>message<\/code> is a string of type <code>NVARCHAR(2048)<\/code> that describes the exception.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='state'>state <a href=\"#state\" class=\"anchor\" id=\"state\" title=\"Anchor for state\">#<\/a><\/h3>\n\n\n\n<p>The <code>state<\/code> is a <code>TINYINT<\/code> with the value between 0 and 255. The <code>state<\/code> indicates the state associated with the message.<\/p>\n\n\n\n<p>If you don&#8217;t specify any parameter for the <code>THROW<\/code> statement, you must place the <code>THROW<\/code> statement inside a <code>CATCH<\/code> block:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">BEGIN<\/span> TRY\n    <span class=\"hljs-comment\">-- statements that may cause errors<\/span>\n<span class=\"hljs-keyword\">END<\/span> TRY\n<span class=\"hljs-keyword\">BEGIN<\/span> CATCH\n    <span class=\"hljs-comment\">-- statement to handle errors <\/span>\n    THROW;   \n<span class=\"hljs-keyword\">END<\/span> CATCH\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this case, the <code>THROW<\/code> statement raises the error that was caught by the <code>CATCH<\/code> block.<\/p>\n\n\n\n<p>Note that the statement before the <code>THROW<\/code> statement must be terminated by a semicolon (;)<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='throw-vs-raiserror'>&nbsp;THROW vs. RAISERROR <a href=\"#throw-vs-raiserror\" class=\"anchor\" id=\"throw-vs-raiserror\" title=\"Anchor for &nbsp;&lt;code&gt;THROW &lt;\/code&gt;vs. &lt;code&gt;RAISERROR&lt;\/code&gt;\">#<\/a><\/h2>\n\n\n\n<p>The following table illustrates the difference between the <code>THROW<\/code> statement and <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-raiserror\/\">RAISERROR<\/a><\/code> statement:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>RAISERROR<\/th><th>THROW<\/th><\/tr><\/thead><tbody><tr><td>The <code>message_id<\/code> that you pass to <code>RAISERROR<\/code> must be defined in <code>sys.messages<\/code> view.<\/td><td>The <em>error_number<\/em> parameter does not have to be defined in the <code>sys.messages<\/code> view.<\/td><\/tr><tr><td>The <i>message <\/i>parameter can contain <strong>printf<\/strong> formatting styles such as <code>%s<\/code> and <code>%d<\/code>.<\/td><td>The <em>message <\/em>parameter does not accept <strong>printf<\/strong> style formatting. Use <code>FORMATMESSAGE()<\/code> function to substitute parameters.<\/td><\/tr><tr><td>The <em>severity<\/em> parameter indicates the severity of the exception.<\/td><td>The severity of the exception is always set to 16.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id='sql-server-throw-statement-examples'>SQL Server THROW statement examples <a href=\"#sql-server-throw-statement-examples\" class=\"anchor\" id=\"sql-server-throw-statement-examples\" title=\"Anchor for SQL Server &lt;code&gt;THROW&lt;\/code&gt; statement examples\">#<\/a><\/h2>\n\n\n\n<p>Let&#8217;s take some examples of using the <code>THROW<\/code> statement to get a better understanding.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='a-using-throw-statement-to-raise-an-exception'>A) Using THROW statement to raise an exception <a href=\"#a-using-throw-statement-to-raise-an-exception\" class=\"anchor\" id=\"a-using-throw-statement-to-raise-an-exception\" title=\"Anchor for A) Using &lt;code&gt;THROW&lt;\/code&gt; statement to raise an exception\">#<\/a><\/h3>\n\n\n\n<p>The following example uses the <code>THROW<\/code> statement to raise an exception:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">THROW 50005, N'An error occurred', 1;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">Msg 50005, Level 16, State 1, Line 1\nAn error occurred\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='b-using-throw-statement-to-rethrow-an-exception'>B) Using THROW statement to rethrow an exception <a href=\"#b-using-throw-statement-to-rethrow-an-exception\" class=\"anchor\" id=\"b-using-throw-statement-to-rethrow-an-exception\" title=\"Anchor for B) Using &lt;code&gt;THROW&lt;\/code&gt; statement to rethrow an exception\">#<\/a><\/h3>\n\n\n\n<p>First, <a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-basics\/sql-server-create-table\/\">create a new table<\/a> <code>t1<\/code> for the demonstration:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">CREATE<\/span> <span class=\"hljs-keyword\">TABLE<\/span> t1(\n    <span class=\"hljs-keyword\">id<\/span> <span class=\"hljs-built_in\">int<\/span> primary <span class=\"hljs-keyword\">key<\/span>\n);\nGO\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Then, use the <code>THROW<\/code> statement without arguments in the <code>CATCH<\/code> block to rethrow the caught error:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">BEGIN<\/span> TRY\n    <span class=\"hljs-keyword\">INSERT<\/span> <span class=\"hljs-keyword\">INTO<\/span> t1(<span class=\"hljs-keyword\">id<\/span>) <span class=\"hljs-keyword\">VALUES<\/span>(<span class=\"hljs-number\">1<\/span>);\n    <span class=\"hljs-comment\">--  cause error<\/span>\n    <span class=\"hljs-keyword\">INSERT<\/span> <span class=\"hljs-keyword\">INTO<\/span> t1(<span class=\"hljs-keyword\">id<\/span>) <span class=\"hljs-keyword\">VALUES<\/span>(<span class=\"hljs-number\">1<\/span>);\n<span class=\"hljs-keyword\">END<\/span> TRY\n<span class=\"hljs-keyword\">BEGIN<\/span> CATCH\n    PRINT(<span class=\"hljs-string\">'Raise the caught error again'<\/span>);\n    THROW;\n<span class=\"hljs-keyword\">END<\/span> CATCH\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript\">(<span class=\"hljs-number\">1<\/span> row affected)\n\n(<span class=\"hljs-number\">0<\/span> rows affected)\nRaise the caught error again\nMsg <span class=\"hljs-number\">2627<\/span>, Level <span class=\"hljs-number\">14<\/span>, State <span class=\"hljs-number\">1<\/span>, Line <span class=\"hljs-number\">10<\/span>\nViolation <span class=\"hljs-keyword\">of<\/span> PRIMARY KEY constraint <span class=\"hljs-string\">'PK__t1__3213E83F906A55AA'<\/span>. Cannot insert duplicate key <span class=\"hljs-keyword\">in<\/span> object <span class=\"hljs-string\">'dbo.t1'<\/span>. The duplicate key value is (<span class=\"hljs-number\">1<\/span>).<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, the first <code>INSERT<\/code> statement succeeded. However, the second one failed due to the primary key constraint. Therefore, the error was caught by the <code>CATCH<\/code> block was raised again by the <code>THROW<\/code> statement.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='c-using-throw-statement-to-rethrow-an-exception'>C) Using THROW statement to rethrow an exception <a href=\"#c-using-throw-statement-to-rethrow-an-exception\" class=\"anchor\" id=\"c-using-throw-statement-to-rethrow-an-exception\" title=\"Anchor for C) Using &lt;code&gt;THROW&lt;\/code&gt; statement to rethrow an exception\">#<\/a><\/h3>\n\n\n\n<p>Unlike the <code><a href=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-raiserror\/\">RAISERROR<\/a><\/code> statement, the <code>THROW<\/code> statement does not allow you to substitute parameters in the message text. Therefore, to mimic this function, you use the <code>FORMATMESSAGE()<\/code> function.<\/p>\n\n\n\n<p>The following statement adds a custom message to the <code>sys.messages<\/code> catalog view:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">EXEC sys.sp_addmessage \n    @msgnum = 50010, \n    @severity = 16, \n    @msgtext =\n    N'The order number %s cannot be deleted because it does not exist.', \n    @lang = 'us_english';   \nGO\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>This statement uses the <code>message_id<\/code> 50010 and replaces the <code>%s<\/code> placeholder by an order id &#8216;1001&#8217;:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">DECLARE<\/span> @MessageText <span class=\"hljs-keyword\">NVARCHAR<\/span>(<span class=\"hljs-number\">2048<\/span>);\n<span class=\"hljs-keyword\">SET<\/span> @MessageText =  FORMATMESSAGE(<span class=\"hljs-number\">50010<\/span>, N<span class=\"hljs-string\">'1001'<\/span>);   \n\nTHROW 50010, @MessageText, 1; \n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here is the output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">Msg 50010, Level 16, State 1, Line 8\nThe order number 1001 cannot be deleted because it does not exist.\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this tutorial, you have learned how to use the SQL Server <code>THROW<\/code> statement to raise an exception.<\/p>\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=\"1910\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/\"\n\t\t\t\tdata-post-title=\"SQL Server THROW\"\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=\"1910\"\n\t\t\t\tdata-post-url=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/\"\n\t\t\t\tdata-post-title=\"SQL Server THROW\"\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>This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":777,"menu_order":12,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1910","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>SQL Server THROW Statement Explained By Practical Examples<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.\" \/>\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.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server THROW Statement Explained By Practical Examples\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL Server Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-10T20:34:48+00:00\" \/>\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.sqlservertutorial.net\\\/sql-server-stored-procedures\\\/sql-server-throw\\\/\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-stored-procedures\\\/sql-server-throw\\\/\",\"name\":\"SQL Server THROW Statement Explained By Practical Examples\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\"},\"datePublished\":\"2019-05-01T05:58:14+00:00\",\"dateModified\":\"2020-07-10T20:34:48+00:00\",\"description\":\"This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-stored-procedures\\\/sql-server-throw\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-stored-procedures\\\/sql-server-throw\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-stored-procedures\\\/sql-server-throw\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Stored Procedures\",\"item\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/sql-server-stored-procedures\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL Server THROW\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/#website\",\"url\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/\",\"name\":\"SQL Server Tutorial\",\"description\":\"The Practical SQL Server Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sqlservertutorial.net\\\/?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":"SQL Server THROW Statement Explained By Practical Examples","description":"This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.","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.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server THROW Statement Explained By Practical Examples","og_description":"This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.","og_url":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/","og_site_name":"SQL Server Tutorial","article_modified_time":"2020-07-10T20:34:48+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/","url":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/","name":"SQL Server THROW Statement Explained By Practical Examples","isPartOf":{"@id":"https:\/\/www.sqlservertutorial.net\/#website"},"datePublished":"2019-05-01T05:58:14+00:00","dateModified":"2020-07-10T20:34:48+00:00","description":"This tutorial shows you how to use the SQL Server THROW statement to raise an error and transfer the execution to the CATCH block of a TRY CATCH construct.","breadcrumb":{"@id":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/sql-server-throw\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqlservertutorial.net\/"},{"@type":"ListItem","position":2,"name":"SQL Server Stored Procedures","item":"https:\/\/www.sqlservertutorial.net\/sql-server-stored-procedures\/"},{"@type":"ListItem","position":3,"name":"SQL Server THROW"}]},{"@type":"WebSite","@id":"https:\/\/www.sqlservertutorial.net\/#website","url":"https:\/\/www.sqlservertutorial.net\/","name":"SQL Server Tutorial","description":"The Practical SQL Server Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqlservertutorial.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1910","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/comments?post=1910"}],"version-history":[{"count":1,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1910\/revisions"}],"predecessor-version":[{"id":2626,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/1910\/revisions\/2626"}],"up":[{"embeddable":true,"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/pages\/777"}],"wp:attachment":[{"href":"https:\/\/www.sqlservertutorial.net\/wp-json\/wp\/v2\/media?parent=1910"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}