1<!DOCTYPE html> 2<html lang="en"> 3<head> 4<meta charset="UTF-8"> 5<title>sampleFile - OpenGrok cross reference for /sampleFile</title></head><body> 6<script type="text/javascript">/* <![CDATA[ */ 7function get_sym_list(){return [["Variable","xv",[["@SQLDataFolder",50],["@retry",192],["SET",53]]]];} /* ]]> */</script><a class="l" name="1" href="#1">1</a><span class="c">/*====================================================================================== 8<a class="l" name="2" href="#2">2</a>Microsoft SQL Server Sample Code 9<a class="l" name="3" href="#3">3</a> 10<a class="l" name="4" href="#4">4</a>Copyright (c) Microsoft Corporation 11<a class="l" name="5" href="#5">5</a> 12<a class="l" name="6" href="#6">6</a>All rights reserved. 13<a class="l" name="7" href="#7">7</a> 14<a class="l" name="8" href="#8">8</a>MIT License. 15<a class="l" name="9" href="#9">9</a> 16<a class="hl" name="10" href="#10">10</a>Permission is hereby granted, free of charge, to any person obtaining a copy 17<a class="l" name="11" href="#11">11</a>of this software and associated documentation files (the "Software"), to 18<a class="l" name="12" href="#12">12</a>deal in the Software without restriction, including without limitation the 19<a class="l" name="13" href="#13">13</a>rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 20<a class="l" name="14" href="#14">14</a>sell copies of the Software, and to permit persons to whom the Software is 21<a class="l" name="15" href="#15">15</a>furnished to do so, subject to the following conditions: 22<a class="l" name="16" href="#16">16</a> 23<a class="l" name="17" href="#17">17</a>The above copyright notice and this permission notice shall be included in 24<a class="l" name="18" href="#18">18</a>all copies or substantial portions of the Software. 25<a class="l" name="19" href="#19">19</a> 26<a class="hl" name="20" href="#20">20</a>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 27<a class="l" name="21" href="#21">21</a>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 28<a class="l" name="22" href="#22">22</a>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 29<a class="l" name="23" href="#23">23</a>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 30<a class="l" name="24" href="#24">24</a>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 31<a class="l" name="25" href="#25">25</a>FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 32<a class="l" name="26" href="#26">26</a>IN THE SOFTWARE. 33<a class="l" name="27" href="#27">27</a> 34<a class="l" name="28" href="#28">28</a>Script: aspstate_sql2016_with_retry.sql 35<a class="l" name="29" href="#29">29</a> 36<a class="hl" name="30" href="#30">30</a>Description: 37<a class="l" name="31" href="#31">31</a>This script is based on the InstallSqlState.sql script but works with SQL 2016 In-Memory OLTP by replacing the following objects 38<a class="l" name="32" href="#32">32</a>to in-memory and natively compiled stored procedures. 39<a class="l" name="33" href="#33">33</a> 40<a class="l" name="34" href="#34">34</a>** Tables: 41<a class="l" name="35" href="#35">35</a> Converted the following table to In-Memory table: 42<a class="l" name="36" href="#36">36</a> - [dbo].[ASPStateTempSessions] (SessionId: NONCLUSTERED HASH PK (Bucket Count=33554432)) 43<a class="l" name="37" href="#37">37</a> 44<a class="l" name="38" href="#38">38</a>** Stored Procedures: 45<a class="l" name="39" href="#39">39</a> Converted the following SPs to Native Compiled SPs: 46<a class="hl" name="40" href="#40">40</a> - dbo.TempGetStateItemExclusive3 47<a class="l" name="41" href="#41">41</a> - dbo.TempInsertStateItemShort 48<a class="l" name="42" href="#42">42</a> - dbo.TempUpdateStateItemLong 49<a class="l" name="43" href="#43">43</a> - dbo.TempUpdateStateItemLongNullShort 50<a class="l" name="44" href="#44">44</a> - dbo.TempUpdateStateItemShort 51<a class="l" name="45" href="#45">45</a>======================================================================================*/</span> 52<a class="l" name="46" href="#46">46</a> 53<a class="l" name="47" href="#47">47</a><a href="/source/s?defs=USE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">USE</a> [<a href="/source/s?defs=master" class="intelliWindow-symbol" data-definition-place="undefined-in-file">master</a>] 54<a class="l" name="48" href="#48">48</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 55<a class="l" name="49" href="#49">49</a> 56<a class="hl" name="50" href="#50">50</a><b>DECLARE</b> @<a href="/source/s?defs=SQLDataFolder" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SQLDataFolder</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<b>max</b>) = <b>cast</b>(<a href="/source/s?defs=SERVERPROPERTY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SERVERPROPERTY</a>(<span class="s">'InstanceDefaultDataPath'</span>) <b>as</b> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<b>max</b>)) 57<a class="l" name="51" href="#51">51</a><b>DECLARE</b> @<b>SQL</b> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<b>max</b>) = N<span class="s">''</span>; 58<a class="l" name="52" href="#52">52</a> 59<a class="l" name="53" href="#53">53</a><b>SET</b> @<b>SQL</b> = N<span class="s">' 60<a class="l" name="54" href="#54">54</a>CREATE DATABASE [ASPState] 61<a class="l" name="55" href="#55">55</a> CONTAINMENT = NONE 62<a class="l" name="56" href="#56">56</a> ON PRIMARY 63<a class="l" name="57" href="#57">57</a> (NAME = N''ASPState'', FILENAME = N'''</span> + @<a href="/source/s?defs=SQLDataFolder" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SQLDataFolder</a> + <span class="s">'ASPState.mdf'' , SIZE = 8192KB , MAXSIZE = UNLIMITED, FILEGROWTH = 65536KB ), 64<a class="l" name="58" href="#58">58</a> FILEGROUP [ASPState_mod] CONTAINS MEMORY_OPTIMIZED_DATA DEFAULT 65<a class="l" name="59" href="#59">59</a> (NAME = N''ASPState_mod'', FILENAME = N'''</span> + @<a href="/source/s?defs=SQLDataFolder" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SQLDataFolder</a> + <span class="s">'ASPState_mod'' , MAXSIZE = UNLIMITED) 66<a class="hl" name="60" href="#60">60</a> LOG ON 67<a class="l" name="61" href="#61">61</a> (NAME = N''ASPState_log'', FILENAME = N'''</span> + @<a href="/source/s?defs=SQLDataFolder" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SQLDataFolder</a> + <span class="s">'ASPState_log.ldf'' , SIZE = 8192KB , MAXSIZE = 2048GB , FILEGROWTH = 65536KB ); 68<a class="l" name="62" href="#62">62</a> 69<a class="l" name="63" href="#63">63</a>ALTER DATABASE [ASPState] SET COMPATIBILITY_LEVEL = 130; ALTER DATABASE [ASPState] SET MEMORY_OPTIMIZED_ELEVATE_TO_SNAPSHOT=ON;'</span> 70<a class="l" name="64" href="#64">64</a> 71<a class="l" name="65" href="#65">65</a><b>EXECUTE</b> (@<b>SQL</b>) 72<a class="l" name="66" href="#66">66</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 73<a class="l" name="67" href="#67">67</a> 74<a class="l" name="68" href="#68">68</a><a href="/source/s?defs=USE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">USE</a> [<a href="/source/s?defs=AspState" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AspState</a>] 75<a class="l" name="69" href="#69">69</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 76<a class="hl" name="70" href="#70">70</a> 77<a class="l" name="71" href="#71">71</a><b>CREATE</b> <a href="/source/s?defs=ROLE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ROLE</a> [<a href="/source/s?defs=ASPStateExecute" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateExecute</a>]; 78<a class="l" name="72" href="#72">72</a><b>CREATE</b> <a href="/source/s?defs=ROLE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ROLE</a> [<a href="/source/s?defs=ASPStateResetRole" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateResetRole</a>]; 79<a class="l" name="73" href="#73">73</a><b>CREATE</b> <a href="/source/s?defs=ROLE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ROLE</a> [<a href="/source/s?defs=ASPStateRole" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateRole</a>]; 80<a class="l" name="74" href="#74">74</a> 81<a class="l" name="75" href="#75">75</a><b>CREATE</b> <a href="/source/s?defs=TYPE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TYPE</a> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=tAppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tAppName</a>] <b>FROM</b> [<b>varchar</b>](<span class="n">280</span>) <b>NOT</b> <b>NULL</b>; 82<a class="l" name="76" href="#76">76</a><b>CREATE</b> <a href="/source/s?defs=TYPE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TYPE</a> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=tSessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionId</a>] <b>FROM</b> [<a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>](<span class="n">88</span>) <b>NOT</b> <b>NULL</b>; 83<a class="l" name="77" href="#77">77</a><b>CREATE</b> <a href="/source/s?defs=TYPE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TYPE</a> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=tSessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionItemLong</a>] <b>FROM</b> [<a href="/source/s?defs=image" class="intelliWindow-symbol" data-definition-place="undefined-in-file">image</a>] <b>NULL</b>; 84<a class="l" name="78" href="#78">78</a><b>CREATE</b> <a href="/source/s?defs=TYPE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TYPE</a> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=tSessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionItemShort</a>] <b>FROM</b> [<b>varbinary</b>](<span class="n">7000</span>) <b>NULL</b>; 85<a class="l" name="79" href="#79">79</a><b>CREATE</b> <a href="/source/s?defs=TYPE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TYPE</a> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=tTextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tTextPtr</a>] <b>FROM</b> [<b>varbinary</b>](<b>max</b>) <b>NULL</b>; 86<a class="hl" name="80" href="#80">80</a> 87<a class="l" name="81" href="#81">81</a> 88<a class="l" name="82" href="#82">82</a><b>CREATE</b> <b>TABLE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a>] 89<a class="l" name="83" href="#83">83</a>( 90<a class="l" name="84" href="#84">84</a> [<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>] [<a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>](<span class="n">88</span>) <b>COLLATE</b> <a href="/source/s?defs=Latin1_General_100_BIN2" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Latin1_General_100_BIN2</a> <b>NOT</b> <b>NULL</b>, 91<a class="l" name="85" href="#85">85</a> [<a href="/source/s?defs=Created" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Created</a>] [<a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a>] <b>NOT</b> <b>NULL</b> <b>DEFAULT</b> (<a href="/source/s?defs=getutcdate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">getutcdate</a>()), 92<a class="l" name="86" href="#86">86</a> [<a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a>] [<a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a>] <b>NOT</b> <b>NULL</b>, 93<a class="l" name="87" href="#87">87</a> [<a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>] [<a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a>] <b>NOT</b> <b>NULL</b>, 94<a class="l" name="88" href="#88">88</a> [<a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a>] [<a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a>] <b>NOT</b> <b>NULL</b>, 95<a class="l" name="89" href="#89">89</a> [<a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>] [<b>int</b>] <b>NOT</b> <b>NULL</b>, 96<a class="hl" name="90" href="#90">90</a> [<a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>] [<b>int</b>] <b>NOT</b> <b>NULL</b>, 97<a class="l" name="91" href="#91">91</a> [<a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>] [<a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a>] <b>NOT</b> <b>NULL</b>, 98<a class="l" name="92" href="#92">92</a> [<a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a>] [<b>varbinary</b>](<span class="n">7000</span>) <b>NULL</b>, 99<a class="l" name="93" href="#93">93</a> [<a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>] [<b>varbinary</b>](<b>max</b>) <b>NULL</b>, 100<a class="l" name="94" href="#94">94</a> [<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>] [<b>int</b>] <b>NOT</b> <b>NULL</b> <b>DEFAULT</b> ((<span class="n">0</span>)), 101<a class="l" name="95" href="#95">95</a> 102<a class="l" name="96" href="#96">96</a><a href="/source/s?defs=INDEX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">INDEX</a> [<a href="/source/s?defs=Index_Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Index_Expires</a>] <a href="/source/s?defs=NONCLUSTERED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NONCLUSTERED</a> 103<a class="l" name="97" href="#97">97</a>( 104<a class="l" name="98" href="#98">98</a> [<a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a>] <a href="/source/s?defs=ASC" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASC</a> 105<a class="l" name="99" href="#99">99</a>), 106<a class="hl" name="100" href="#100">100</a><b>PRIMARY</b> <a href="/source/s?defs=KEY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">KEY</a> <a href="/source/s?defs=NONCLUSTERED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NONCLUSTERED</a> <a href="/source/s?defs=HASH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">HASH</a> 107<a class="l" name="101" href="#101">101</a>( 108<a class="l" name="102" href="#102">102</a> [<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>] 109<a class="l" name="103" href="#103">103</a>)<b>WITH</b> ( <a href="/source/s?defs=BUCKET_COUNT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">BUCKET_COUNT</a> = <span class="n">33554432</span>) 110<a class="l" name="104" href="#104">104</a>)<b>WITH</b> ( <a href="/source/s?defs=MEMORY_OPTIMIZED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">MEMORY_OPTIMIZED</a> = <b>ON</b> , <a href="/source/s?defs=DURABILITY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DURABILITY</a> = <a href="/source/s?defs=SCHEMA_ONLY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMA_ONLY</a> ) 111<a class="l" name="105" href="#105">105</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 112<a class="l" name="106" href="#106">106</a> 113<a class="l" name="107" href="#107">107</a><b>CREATE</b> <b>TABLE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a>]( 114<a class="l" name="108" href="#108">108</a> [<a href="/source/s?defs=AppId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppId</a>] [<b>int</b>] <b>NOT</b> <b>NULL</b>, 115<a class="l" name="109" href="#109">109</a> [<a href="/source/s?defs=AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppName</a>] [<b>char</b>](<span class="n">280</span>) <b>NOT</b> <b>NULL</b>, 116<a class="hl" name="110" href="#110">110</a><b>PRIMARY</b> <a href="/source/s?defs=KEY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">KEY</a> <a href="/source/s?defs=CLUSTERED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CLUSTERED</a> 117<a class="l" name="111" href="#111">111</a>( 118<a class="l" name="112" href="#112">112</a> [<a href="/source/s?defs=AppId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppId</a>] <a href="/source/s?defs=ASC" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASC</a> 119<a class="l" name="113" href="#113">113</a>)<b>WITH</b> (<a href="/source/s?defs=PAD_INDEX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PAD_INDEX</a> = <a href="/source/s?defs=OFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OFF</a>, <a href="/source/s?defs=STATISTICS_NORECOMPUTE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">STATISTICS_NORECOMPUTE</a> = <a href="/source/s?defs=OFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OFF</a>, <a href="/source/s?defs=IGNORE_DUP_KEY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IGNORE_DUP_KEY</a> = <a href="/source/s?defs=OFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OFF</a>, <a href="/source/s?defs=ALLOW_ROW_LOCKS" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ALLOW_ROW_LOCKS</a> = <b>ON</b>, <a href="/source/s?defs=ALLOW_PAGE_LOCKS" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ALLOW_PAGE_LOCKS</a> = <b>ON</b>) <b>ON</b> [<b>PRIMARY</b>] 120<a class="l" name="114" href="#114">114</a>) <b>ON</b> [<b>PRIMARY</b>] 121<a class="l" name="115" href="#115">115</a> 122<a class="l" name="116" href="#116">116</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 123<a class="l" name="117" href="#117">117</a> 124<a class="l" name="118" href="#118">118</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItemExclusive3_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItemExclusive3_HK</a>] 125<a class="l" name="119" href="#119">119</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 126<a class="hl" name="120" href="#120">120</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>) <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 127<a class="l" name="121" href="#121">121</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 128<a class="l" name="122" href="#122">122</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 129<a class="l" name="123" href="#123">123</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 130<a class="l" name="124" href="#124">124</a> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 131<a class="l" name="125" href="#125">125</a><b>WITH</b> <a href="/source/s?defs=NATIVE_COMPILATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NATIVE_COMPILATION</a>, <a href="/source/s?defs=SCHEMABINDING" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMABINDING</a>, <b>EXECUTE</b> <b>AS</b> <a href="/source/s?defs=OWNER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OWNER</a> 132<a class="l" name="126" href="#126">126</a><b>AS</b> <b>BEGIN</b> <b>ATOMIC</b> <b>WITH</b> ( <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a> <a href="/source/s?defs=ISOLATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ISOLATION</a> <a href="/source/s?defs=LEVEL" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LEVEL</a> = <a href="/source/s?defs=SNAPSHOT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SNAPSHOT</a>, <b>LANGUAGE</b> = N<span class="s">'us_english'</span>) 133<a class="l" name="127" href="#127">127</a> 134<a class="l" name="128" href="#128">128</a> <b>DECLARE</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> <b>AS</b> <b>varbinary</b>(<b>max</b>) 135<a class="l" name="129" href="#129">129</a> <b>DECLARE</b> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>AS</b> <b>int</b> 136<a class="hl" name="130" href="#130">130</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 137<a class="l" name="131" href="#131">131</a> <b>DECLARE</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 138<a class="l" name="132" href="#132">132</a> 139<a class="l" name="133" href="#133">133</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 140<a class="l" name="134" href="#134">134</a> <b>SET</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> = <a href="/source/s?defs=GETDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETDATE</a>() 141<a class="l" name="135" href="#135">135</a> 142<a class="l" name="136" href="#136">136</a> <b>DECLARE</b> @<a href="/source/s?defs=LockedCheck" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockedCheck</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> 143<a class="l" name="137" href="#137">137</a> <b>DECLARE</b> @<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> <b>int</b> 144<a class="l" name="138" href="#138">138</a> 145<a class="l" name="139" href="#139">139</a> <b>SELECT</b> @<a href="/source/s?defs=LockedCheck" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockedCheck</a>=<a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, @<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>=<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> <b>FROM</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> <b>WHERE</b> <a href="/source/s?defs=SessionID" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionID</a>=@<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 146<a class="hl" name="140" href="#140">140</a> 147<a class="l" name="141" href="#141">141</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>&<span class="n">1</span> <> <span class="n">0</span> 148<a class="l" name="142" href="#142">142</a> <b>BEGIN</b> 149<a class="l" name="143" href="#143">143</a> <b>SET</b> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a>=<span class="n">1</span> 150<a class="l" name="144" href="#144">144</a> <b>UPDATE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> <b>SET</b> <a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>=<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>& ~<span class="n">1</span> <b>WHERE</b> <a href="/source/s?defs=SessionID" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionID</a>=@<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 151<a class="l" name="145" href="#145">145</a> <b>END</b> 152<a class="l" name="146" href="#146">146</a> <b>ELSE</b> 153<a class="l" name="147" href="#147">147</a> <b>SET</b> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a>=<span class="n">0</span> 154<a class="l" name="148" href="#148">148</a> 155<a class="l" name="149" href="#149">149</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=LockedCheck" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockedCheck</a>=<span class="n">1</span> 156<a class="hl" name="150" href="#150">150</a> <b>BEGIN</b> 157<a class="l" name="151" href="#151">151</a> <b>UPDATE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 158<a class="l" name="152" href="#152">152</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 159<a class="l" name="153" href="#153">153</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> = <a href="/source/s?defs=DATEDIFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEDIFF</a>(<b>second</b>, <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 160<a class="l" name="154" href="#154">154</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>, 161<a class="l" name="155" href="#155">155</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <b>NULL</b>, 162<a class="l" name="156" href="#156">156</a> <span class="c">--@textptr = NULL,</span> 163<a class="l" name="157" href="#157">157</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <b>NULL</b>, 164<a class="l" name="158" href="#158">158</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <span class="n">1</span> 165<a class="l" name="159" href="#159">159</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 166<a class="hl" name="160" href="#160">160</a> <b>END</b> 167<a class="l" name="161" href="#161">161</a> <b>ELSE</b> 168<a class="l" name="162" href="#162">162</a> <b>BEGIN</b> 169<a class="l" name="163" href="#163">163</a> <b>UPDATE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 170<a class="l" name="164" href="#164">164</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 171<a class="l" name="165" href="#165">165</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a> = @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>, 172<a class="l" name="166" href="#166">166</a> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a> = @<a href="/source/s?defs=nowlocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowlocal</a>, 173<a class="l" name="167" href="#167">167</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> = <span class="n">0</span>, 174<a class="l" name="168" href="#168">168</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> + <span class="n">1</span>, 175<a class="l" name="169" href="#169">169</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a>, 176<a class="hl" name="170" href="#170">170</a> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> = <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>, 177<a class="l" name="171" href="#171">171</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <span class="n">1</span>, 178<a class="l" name="172" href="#172">172</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <span class="n">0</span>, 179<a class="l" name="173" href="#173">173</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">1</span> 180<a class="l" name="174" href="#174">174</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 181<a class="l" name="175" href="#175">175</a> 182<a class="l" name="176" href="#176">176</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=TextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TextPtr</a> <b>IS</b> <b>NOT</b> <b>NULL</b> 183<a class="l" name="177" href="#177">177</a> <b>SELECT</b> @<a href="/source/s?defs=TextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TextPtr</a> 184<a class="l" name="178" href="#178">178</a> 185<a class="l" name="179" href="#179">179</a> <b>END</b> 186<a class="hl" name="180" href="#180">180</a><b>END</b> 187<a class="l" name="181" href="#181">181</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 188<a class="l" name="182" href="#182">182</a> 189<a class="l" name="183" href="#183">183</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItemExclusive3" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItemExclusive3</a>] 190<a class="l" name="184" href="#184">184</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 191<a class="l" name="185" href="#185">185</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>) <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 192<a class="l" name="186" href="#186">186</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 193<a class="l" name="187" href="#187">187</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 194<a class="l" name="188" href="#188">188</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 195<a class="l" name="189" href="#189">189</a> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 196<a class="hl" name="190" href="#190">190</a><b>AS</b> 197<a class="l" name="191" href="#191">191</a><b>BEGIN</b> 198<a class="l" name="192" href="#192">192</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 199<a class="l" name="193" href="#193">193</a> 200<a class="l" name="194" href="#194">194</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 201<a class="l" name="195" href="#195">195</a> <b>BEGIN</b> 202<a class="l" name="196" href="#196">196</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 203<a class="l" name="197" href="#197">197</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 204<a class="l" name="198" href="#198">198</a> <b>EXEC</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=TempGetStateItemExclusive3_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItemExclusive3_HK</a> 205<a class="l" name="199" href="#199">199</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, 206<a class="hl" name="200" href="#200">200</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 207<a class="l" name="201" href="#201">201</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 208<a class="l" name="202" href="#202">202</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> = @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 209<a class="l" name="203" href="#203">203</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 210<a class="l" name="204" href="#204">204</a> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a> = @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 211<a class="l" name="205" href="#205">205</a> 212<a class="l" name="206" href="#206">206</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 213<a class="l" name="207" href="#207">207</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 214<a class="l" name="208" href="#208">208</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 215<a class="l" name="209" href="#209">209</a> 216<a class="hl" name="210" href="#210">210</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 217<a class="l" name="211" href="#211">211</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 218<a class="l" name="212" href="#212">212</a> 219<a class="l" name="213" href="#213">213</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 220<a class="l" name="214" href="#214">214</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 221<a class="l" name="215" href="#215">215</a> ) 222<a class="l" name="216" href="#216">216</a> <b>BEGIN</b> 223<a class="l" name="217" href="#217">217</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 224<a class="l" name="218" href="#218">218</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 225<a class="l" name="219" href="#219">219</a> 226<a class="hl" name="220" href="#220">220</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 227<a class="l" name="221" href="#221">221</a> <b>END</b> 228<a class="l" name="222" href="#222">222</a> <b>ELSE</b> 229<a class="l" name="223" href="#223">223</a> <b>BEGIN</b> 230<a class="l" name="224" href="#224">224</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 231<a class="l" name="225" href="#225">225</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 232<a class="l" name="226" href="#226">226</a> <b>END</b> 233<a class="l" name="227" href="#227">227</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 234<a class="l" name="228" href="#228">228</a> 235<a class="l" name="229" href="#229">229</a> <b>END</b> <span class="c">-- //While loop</span> 236<a class="hl" name="230" href="#230">230</a><b>END</b>; 237<a class="l" name="231" href="#231">231</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 238<a class="l" name="232" href="#232">232</a> 239<a class="l" name="233" href="#233">233</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempInsertStateItemShort_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempInsertStateItemShort_HK</a>] 240<a class="l" name="234" href="#234">234</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 241<a class="l" name="235" href="#235">235</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>), 242<a class="l" name="236" href="#236">236</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b> 243<a class="l" name="237" href="#237">237</a><b>WITH</b> <a href="/source/s?defs=NATIVE_COMPILATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NATIVE_COMPILATION</a>, <a href="/source/s?defs=SCHEMABINDING" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMABINDING</a>, <b>EXECUTE</b> <b>AS</b> <a href="/source/s?defs=OWNER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OWNER</a> 244<a class="l" name="238" href="#238">238</a><b>AS</b> <b>BEGIN</b> <b>ATOMIC</b> <b>WITH</b> ( <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a> <a href="/source/s?defs=ISOLATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ISOLATION</a> <a href="/source/s?defs=LEVEL" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LEVEL</a> = <a href="/source/s?defs=SNAPSHOT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SNAPSHOT</a>, <b>LANGUAGE</b> = N<span class="s">'us_english'</span>) 245<a class="l" name="239" href="#239">239</a> 246<a class="hl" name="240" href="#240">240</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 247<a class="l" name="241" href="#241">241</a> <b>DECLARE</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 248<a class="l" name="242" href="#242">242</a> 249<a class="l" name="243" href="#243">243</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 250<a class="l" name="244" href="#244">244</a> <b>SET</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> = <a href="/source/s?defs=GETDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETDATE</a>() 251<a class="l" name="245" href="#245">245</a> 252<a class="l" name="246" href="#246">246</a> <b>INSERT</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 253<a class="l" name="247" href="#247">247</a> (<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>, 254<a class="l" name="248" href="#248">248</a> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a>, 255<a class="l" name="249" href="#249">249</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, 256<a class="hl" name="250" href="#250">250</a> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a>, 257<a class="l" name="251" href="#251">251</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 258<a class="l" name="252" href="#252">252</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, 259<a class="l" name="253" href="#253">253</a> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a>, 260<a class="l" name="254" href="#254">254</a> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>, 261<a class="l" name="255" href="#255">255</a> <a href="/source/s?defs=Created" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Created</a>, 262<a class="l" name="256" href="#256">256</a> <a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>, 263<a class="l" name="257" href="#257">257</a> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>) 264<a class="l" name="258" href="#258">258</a> <b>VALUES</b> 265<a class="l" name="259" href="#259">259</a> (@<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, 266<a class="hl" name="260" href="#260">260</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a>, 267<a class="l" name="261" href="#261">261</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 268<a class="l" name="262" href="#262">262</a> <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 269<a class="l" name="263" href="#263">263</a> <span class="n">0</span>, 270<a class="l" name="264" href="#264">264</a> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>, 271<a class="l" name="265" href="#265">265</a> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a>, 272<a class="l" name="266" href="#266">266</a> <span class="n">1</span>, 273<a class="l" name="267" href="#267">267</a> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>, 274<a class="l" name="268" href="#268">268</a> <span class="n">0</span>, 275<a class="l" name="269" href="#269">269</a> <b>NULL</b>) 276<a class="hl" name="270" href="#270">270</a> 277<a class="l" name="271" href="#271">271</a> <b>RETURN</b> <span class="n">0</span> 278<a class="l" name="272" href="#272">272</a><b>END</b> 279<a class="l" name="273" href="#273">273</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 280<a class="l" name="274" href="#274">274</a> 281<a class="l" name="275" href="#275">275</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempInsertStateItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempInsertStateItemShort</a>] 282<a class="l" name="276" href="#276">276</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 283<a class="l" name="277" href="#277">277</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>), 284<a class="l" name="278" href="#278">278</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b> 285<a class="l" name="279" href="#279">279</a><b>AS</b> 286<a class="hl" name="280" href="#280">280</a><b>BEGIN</b> 287<a class="l" name="281" href="#281">281</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 288<a class="l" name="282" href="#282">282</a> 289<a class="l" name="283" href="#283">283</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 290<a class="l" name="284" href="#284">284</a> <b>BEGIN</b> 291<a class="l" name="285" href="#285">285</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 292<a class="l" name="286" href="#286">286</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 293<a class="l" name="287" href="#287">287</a> <b>EXEC</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=TempInsertStateItemShort_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempInsertStateItemShort_HK</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> 294<a class="l" name="288" href="#288">288</a> 295<a class="l" name="289" href="#289">289</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 296<a class="hl" name="290" href="#290">290</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 297<a class="l" name="291" href="#291">291</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 298<a class="l" name="292" href="#292">292</a> 299<a class="l" name="293" href="#293">293</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 300<a class="l" name="294" href="#294">294</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 301<a class="l" name="295" href="#295">295</a> 302<a class="l" name="296" href="#296">296</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 303<a class="l" name="297" href="#297">297</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 304<a class="l" name="298" href="#298">298</a> ) 305<a class="l" name="299" href="#299">299</a> <b>BEGIN</b> 306<a class="hl" name="300" href="#300">300</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 307<a class="l" name="301" href="#301">301</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 308<a class="l" name="302" href="#302">302</a> 309<a class="l" name="303" href="#303">303</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 310<a class="l" name="304" href="#304">304</a> <b>END</b> 311<a class="l" name="305" href="#305">305</a> <b>ELSE</b> 312<a class="l" name="306" href="#306">306</a> <b>BEGIN</b> 313<a class="l" name="307" href="#307">307</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 314<a class="l" name="308" href="#308">308</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 315<a class="l" name="309" href="#309">309</a> <b>END</b> 316<a class="hl" name="310" href="#310">310</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 317<a class="l" name="311" href="#311">311</a> 318<a class="l" name="312" href="#312">312</a> <b>END</b> <span class="c">-- //While loop</span> 319<a class="l" name="313" href="#313">313</a><b>END</b>; 320<a class="l" name="314" href="#314">314</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 321<a class="l" name="315" href="#315">315</a> 322<a class="l" name="316" href="#316">316</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemLong_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemLong_HK</a>] 323<a class="l" name="317" href="#317">317</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 324<a class="l" name="318" href="#318">318</a> @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a> <b>varbinary</b>(<b>max</b>), 325<a class="l" name="319" href="#319">319</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 326<a class="hl" name="320" href="#320">320</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 327<a class="l" name="321" href="#321">321</a><b>WITH</b> <a href="/source/s?defs=NATIVE_COMPILATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NATIVE_COMPILATION</a>, <a href="/source/s?defs=SCHEMABINDING" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMABINDING</a>, <b>EXECUTE</b> <b>AS</b> <a href="/source/s?defs=OWNER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OWNER</a> 328<a class="l" name="322" href="#322">322</a><b>AS</b> <b>BEGIN</b> <b>ATOMIC</b> <b>WITH</b> ( <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a> <a href="/source/s?defs=ISOLATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ISOLATION</a> <a href="/source/s?defs=LEVEL" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LEVEL</a> = <a href="/source/s?defs=SNAPSHOT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SNAPSHOT</a>, <b>LANGUAGE</b> = N<span class="s">'us_english'</span>) 329<a class="l" name="323" href="#323">323</a> 330<a class="l" name="324" href="#324">324</a> <b>UPDATE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 331<a class="l" name="325" href="#325">325</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>()), 332<a class="l" name="326" href="#326">326</a> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> = @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a>, 333<a class="l" name="327" href="#327">327</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a> = @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 334<a class="l" name="328" href="#328">328</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">0</span> 335<a class="l" name="329" href="#329">329</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <b>AND</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 336<a class="hl" name="330" href="#330">330</a> 337<a class="l" name="331" href="#331">331</a> <b>RETURN</b> <span class="n">0</span> 338<a class="l" name="332" href="#332">332</a><b>END</b> 339<a class="l" name="333" href="#333">333</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 340<a class="l" name="334" href="#334">334</a> 341<a class="l" name="335" href="#335">335</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemLong</a>] 342<a class="l" name="336" href="#336">336</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 343<a class="l" name="337" href="#337">337</a> @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a> <b>varbinary</b>(<b>max</b>), 344<a class="l" name="338" href="#338">338</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 345<a class="l" name="339" href="#339">339</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 346<a class="hl" name="340" href="#340">340</a><b>AS</b> 347<a class="l" name="341" href="#341">341</a><b>BEGIN</b> 348<a class="l" name="342" href="#342">342</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 349<a class="l" name="343" href="#343">343</a> 350<a class="l" name="344" href="#344">344</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 351<a class="l" name="345" href="#345">345</a> <b>BEGIN</b> 352<a class="l" name="346" href="#346">346</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 353<a class="l" name="347" href="#347">347</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 354<a class="l" name="348" href="#348">348</a> <b>EXEC</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=TempUpdateStateItemLong_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemLong_HK</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 355<a class="l" name="349" href="#349">349</a> 356<a class="hl" name="350" href="#350">350</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 357<a class="l" name="351" href="#351">351</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 358<a class="l" name="352" href="#352">352</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 359<a class="l" name="353" href="#353">353</a> 360<a class="l" name="354" href="#354">354</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 361<a class="l" name="355" href="#355">355</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 362<a class="l" name="356" href="#356">356</a> 363<a class="l" name="357" href="#357">357</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 364<a class="l" name="358" href="#358">358</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 365<a class="l" name="359" href="#359">359</a> ) 366<a class="hl" name="360" href="#360">360</a> <b>BEGIN</b> 367<a class="l" name="361" href="#361">361</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 368<a class="l" name="362" href="#362">362</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 369<a class="l" name="363" href="#363">363</a> 370<a class="l" name="364" href="#364">364</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 371<a class="l" name="365" href="#365">365</a> <b>END</b> 372<a class="l" name="366" href="#366">366</a> <b>ELSE</b> 373<a class="l" name="367" href="#367">367</a> <b>BEGIN</b> 374<a class="l" name="368" href="#368">368</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 375<a class="l" name="369" href="#369">369</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 376<a class="hl" name="370" href="#370">370</a> <b>END</b> 377<a class="l" name="371" href="#371">371</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 378<a class="l" name="372" href="#372">372</a> 379<a class="l" name="373" href="#373">373</a> <b>END</b> <span class="c">-- //While loop</span> 380<a class="l" name="374" href="#374">374</a><b>END</b>; 381<a class="l" name="375" href="#375">375</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 382<a class="l" name="376" href="#376">376</a> 383<a class="l" name="377" href="#377">377</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemLongNullShort_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemLongNullShort_HK</a>] 384<a class="l" name="378" href="#378">378</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 385<a class="l" name="379" href="#379">379</a> @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a> <b>varbinary</b>(<b>max</b>), 386<a class="hl" name="380" href="#380">380</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 387<a class="l" name="381" href="#381">381</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 388<a class="l" name="382" href="#382">382</a><b>WITH</b> <a href="/source/s?defs=NATIVE_COMPILATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NATIVE_COMPILATION</a>, <a href="/source/s?defs=SCHEMABINDING" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMABINDING</a>, <b>EXECUTE</b> <b>AS</b> <a href="/source/s?defs=OWNER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OWNER</a> 389<a class="l" name="383" href="#383">383</a><b>AS</b> <b>BEGIN</b> <b>ATOMIC</b> <b>WITH</b> ( <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a> <a href="/source/s?defs=ISOLATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ISOLATION</a> <a href="/source/s?defs=LEVEL" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LEVEL</a> = <a href="/source/s?defs=SNAPSHOT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SNAPSHOT</a>, <b>LANGUAGE</b> = N<span class="s">'us_english'</span>) 390<a class="l" name="384" href="#384">384</a> 391<a class="l" name="385" href="#385">385</a> <b>UPDATE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 392<a class="l" name="386" href="#386">386</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>()), 393<a class="l" name="387" href="#387">387</a> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> = @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a>, 394<a class="l" name="388" href="#388">388</a> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> = <b>NULL</b>, 395<a class="l" name="389" href="#389">389</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a> = @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 396<a class="hl" name="390" href="#390">390</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">0</span> 397<a class="l" name="391" href="#391">391</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <b>AND</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 398<a class="l" name="392" href="#392">392</a> 399<a class="l" name="393" href="#393">393</a> <b>RETURN</b> <span class="n">0</span> 400<a class="l" name="394" href="#394">394</a><b>END</b> 401<a class="l" name="395" href="#395">395</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 402<a class="l" name="396" href="#396">396</a> 403<a class="l" name="397" href="#397">397</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemLongNullShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemLongNullShort</a>] 404<a class="l" name="398" href="#398">398</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 405<a class="l" name="399" href="#399">399</a> @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a> <b>varbinary</b>(<b>max</b>), 406<a class="hl" name="400" href="#400">400</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 407<a class="l" name="401" href="#401">401</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 408<a class="l" name="402" href="#402">402</a><b>AS</b> 409<a class="l" name="403" href="#403">403</a><b>BEGIN</b> 410<a class="l" name="404" href="#404">404</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 411<a class="l" name="405" href="#405">405</a> 412<a class="l" name="406" href="#406">406</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 413<a class="l" name="407" href="#407">407</a> <b>BEGIN</b> 414<a class="l" name="408" href="#408">408</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 415<a class="l" name="409" href="#409">409</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 416<a class="hl" name="410" href="#410">410</a> <b>EXEC</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=TempUpdateStateItemLongNullShort_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemLongNullShort_HK</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 417<a class="l" name="411" href="#411">411</a> 418<a class="l" name="412" href="#412">412</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 419<a class="l" name="413" href="#413">413</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 420<a class="l" name="414" href="#414">414</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 421<a class="l" name="415" href="#415">415</a> 422<a class="l" name="416" href="#416">416</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 423<a class="l" name="417" href="#417">417</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 424<a class="l" name="418" href="#418">418</a> 425<a class="l" name="419" href="#419">419</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 426<a class="hl" name="420" href="#420">420</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 427<a class="l" name="421" href="#421">421</a> ) 428<a class="l" name="422" href="#422">422</a> <b>BEGIN</b> 429<a class="l" name="423" href="#423">423</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 430<a class="l" name="424" href="#424">424</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 431<a class="l" name="425" href="#425">425</a> 432<a class="l" name="426" href="#426">426</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 433<a class="l" name="427" href="#427">427</a> <b>END</b> 434<a class="l" name="428" href="#428">428</a> <b>ELSE</b> 435<a class="l" name="429" href="#429">429</a> <b>BEGIN</b> 436<a class="hl" name="430" href="#430">430</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 437<a class="l" name="431" href="#431">431</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 438<a class="l" name="432" href="#432">432</a> <b>END</b> 439<a class="l" name="433" href="#433">433</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 440<a class="l" name="434" href="#434">434</a> 441<a class="l" name="435" href="#435">435</a> <b>END</b> <span class="c">-- //While loop</span> 442<a class="l" name="436" href="#436">436</a><b>END</b>; 443<a class="l" name="437" href="#437">437</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 444<a class="l" name="438" href="#438">438</a> 445<a class="l" name="439" href="#439">439</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemShort_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemShort_HK</a>] 446<a class="hl" name="440" href="#440">440</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 447<a class="l" name="441" href="#441">441</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>), 448<a class="l" name="442" href="#442">442</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 449<a class="l" name="443" href="#443">443</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 450<a class="l" name="444" href="#444">444</a><b>WITH</b> <a href="/source/s?defs=NATIVE_COMPILATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NATIVE_COMPILATION</a>, <a href="/source/s?defs=SCHEMABINDING" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMABINDING</a>, <b>EXECUTE</b> <b>AS</b> <a href="/source/s?defs=OWNER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OWNER</a> 451<a class="l" name="445" href="#445">445</a><b>AS</b> <b>BEGIN</b> <b>ATOMIC</b> <b>WITH</b> ( <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a> <a href="/source/s?defs=ISOLATION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ISOLATION</a> <a href="/source/s?defs=LEVEL" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LEVEL</a> = <a href="/source/s?defs=SNAPSHOT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SNAPSHOT</a>, <b>LANGUAGE</b> = N<span class="s">'us_english'</span> ) 452<a class="l" name="446" href="#446">446</a> 453<a class="l" name="447" href="#447">447</a> <b>UPDATE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 454<a class="l" name="448" href="#448">448</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>()), 455<a class="l" name="449" href="#449">449</a> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> = @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a>, 456<a class="hl" name="450" href="#450">450</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a> = @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 457<a class="l" name="451" href="#451">451</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">0</span> 458<a class="l" name="452" href="#452">452</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <b>AND</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 459<a class="l" name="453" href="#453">453</a> 460<a class="l" name="454" href="#454">454</a> <b>RETURN</b> <span class="n">0</span> 461<a class="l" name="455" href="#455">455</a><b>END</b> 462<a class="l" name="456" href="#456">456</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 463<a class="l" name="457" href="#457">457</a> 464<a class="l" name="458" href="#458">458</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemShort</a>] 465<a class="l" name="459" href="#459">459</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 466<a class="hl" name="460" href="#460">460</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<b>max</b>), 467<a class="l" name="461" href="#461">461</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 468<a class="l" name="462" href="#462">462</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 469<a class="l" name="463" href="#463">463</a><b>AS</b> 470<a class="l" name="464" href="#464">464</a><b>BEGIN</b> 471<a class="l" name="465" href="#465">465</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 472<a class="l" name="466" href="#466">466</a> 473<a class="l" name="467" href="#467">467</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 474<a class="l" name="468" href="#468">468</a> <b>BEGIN</b> 475<a class="l" name="469" href="#469">469</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 476<a class="hl" name="470" href="#470">470</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 477<a class="l" name="471" href="#471">471</a> <b>EXEC</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=TempUpdateStateItemShort_HK" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemShort_HK</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 478<a class="l" name="472" href="#472">472</a> 479<a class="l" name="473" href="#473">473</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 480<a class="l" name="474" href="#474">474</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 481<a class="l" name="475" href="#475">475</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 482<a class="l" name="476" href="#476">476</a> 483<a class="l" name="477" href="#477">477</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 484<a class="l" name="478" href="#478">478</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 485<a class="l" name="479" href="#479">479</a> 486<a class="hl" name="480" href="#480">480</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 487<a class="l" name="481" href="#481">481</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 488<a class="l" name="482" href="#482">482</a> ) 489<a class="l" name="483" href="#483">483</a> <b>BEGIN</b> 490<a class="l" name="484" href="#484">484</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 491<a class="l" name="485" href="#485">485</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 492<a class="l" name="486" href="#486">486</a> 493<a class="l" name="487" href="#487">487</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 494<a class="l" name="488" href="#488">488</a> <b>END</b> 495<a class="l" name="489" href="#489">489</a> <b>ELSE</b> 496<a class="hl" name="490" href="#490">490</a> <b>BEGIN</b> 497<a class="l" name="491" href="#491">491</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 498<a class="l" name="492" href="#492">492</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 499<a class="l" name="493" href="#493">493</a> <b>END</b> 500<a class="l" name="494" href="#494">494</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 501<a class="l" name="495" href="#495">495</a> 502<a class="l" name="496" href="#496">496</a> <b>END</b> <span class="c">-- //While loop</span> 503<a class="l" name="497" href="#497">497</a><b>END</b>; 504<a class="l" name="498" href="#498">498</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 505<a class="l" name="499" href="#499">499</a> 506<a class="hl" name="500" href="#500">500</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=CreateTempTables" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CreateTempTables</a>] 507<a class="l" name="501" href="#501">501</a><b>AS</b> 508<a class="l" name="502" href="#502">502</a> <b>CREATE</b> <b>TABLE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> ( 509<a class="l" name="503" href="#503">503</a> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>) <b>COLLATE</b> <a href="/source/s?defs=Latin1_General_100_BIN2" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Latin1_General_100_BIN2</a> <b>NOT</b> <b>NULL</b>, 510<a class="l" name="504" href="#504">504</a> <a href="/source/s?defs=Created" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Created</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> <b>NOT</b> <b>NULL</b> <b>DEFAULT</b> <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>(), 511<a class="l" name="505" href="#505">505</a> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> <b>NOT</b> <b>NULL</b>, 512<a class="l" name="506" href="#506">506</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> <b>NOT</b> <b>NULL</b>, 513<a class="l" name="507" href="#507">507</a> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> <b>NOT</b> <b>NULL</b>, 514<a class="l" name="508" href="#508">508</a> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> <b>int</b> <b>NOT</b> <b>NULL</b>, 515<a class="l" name="509" href="#509">509</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a> <b>int</b> <b>NOT</b> <b>NULL</b>, 516<a class="hl" name="510" href="#510">510</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <b>NOT</b> <b>NULL</b>, 517<a class="l" name="511" href="#511">511</a> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> <b>VARBINARY</b>(<span class="n">7000</span>) <b>NULL</b>, 518<a class="l" name="512" href="#512">512</a> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> <b>VARBINARY</b>(<b>max</b>) <b>NULL</b>, 519<a class="l" name="513" href="#513">513</a> <a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> <b>int</b> <b>NOT</b> <b>NULL</b> <b>DEFAULT</b> <span class="n">0</span>, 520<a class="l" name="514" href="#514">514</a> 521<a class="l" name="515" href="#515">515</a> <b>PRIMARY</b> <a href="/source/s?defs=KEY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">KEY</a> <a href="/source/s?defs=NONCLUSTERED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NONCLUSTERED</a> <a href="/source/s?defs=HASH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">HASH</a> 522<a class="l" name="516" href="#516">516</a> ( 523<a class="l" name="517" href="#517">517</a> [<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>] 524<a class="l" name="518" href="#518">518</a> )<b>WITH</b> ( <a href="/source/s?defs=BUCKET_COUNT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">BUCKET_COUNT</a> = <span class="n">33554432</span>), 525<a class="l" name="519" href="#519">519</a> <a href="/source/s?defs=INDEX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">INDEX</a> <a href="/source/s?defs=Index_Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Index_Expires</a> (<a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a>) 526<a class="hl" name="520" href="#520">520</a> 527<a class="l" name="521" href="#521">521</a> )<b>WITH</b> ( <a href="/source/s?defs=MEMORY_OPTIMIZED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">MEMORY_OPTIMIZED</a> = <b>ON</b> , <a href="/source/s?defs=DURABILITY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DURABILITY</a> = <a href="/source/s?defs=SCHEMA_ONLY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SCHEMA_ONLY</a> ) 528<a class="l" name="522" href="#522">522</a> 529<a class="l" name="523" href="#523">523</a> <b>CREATE</b> <b>TABLE</b> <a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>.<a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a> ( 530<a class="l" name="524" href="#524">524</a> <a href="/source/s?defs=AppId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppId</a> <b>int</b> <b>NOT</b> <b>NULL</b> <b>PRIMARY</b> <a href="/source/s?defs=KEY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">KEY</a>, 531<a class="l" name="525" href="#525">525</a> <a href="/source/s?defs=AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppName</a> <b>char</b>(<span class="n">280</span>) <b>NOT</b> <b>NULL</b>, 532<a class="l" name="526" href="#526">526</a> ) 533<a class="l" name="527" href="#527">527</a> <b>CREATE</b> <a href="/source/s?defs=NONCLUSTERED" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NONCLUSTERED</a> <a href="/source/s?defs=INDEX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">INDEX</a> <a href="/source/s?defs=Index_AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Index_AppName</a> <b>ON</b> <a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a>(<a href="/source/s?defs=AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppName</a>) 534<a class="l" name="528" href="#528">528</a> 535<a class="l" name="529" href="#529">529</a><b>RETURN</b> <span class="n">0</span> 536<a class="hl" name="530" href="#530">530</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 537<a class="l" name="531" href="#531">531</a> 538<a class="l" name="532" href="#532">532</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=DeleteExpiredSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DeleteExpiredSessions</a>] 539<a class="l" name="533" href="#533">533</a><b>AS</b> 540<a class="l" name="534" href="#534">534</a> <b>SET</b> <a href="/source/s?defs=NOCOUNT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NOCOUNT</a> <b>ON</b> 541<a class="l" name="535" href="#535">535</a> <b>SET</b> <a href="/source/s?defs=DEADLOCK_PRIORITY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DEADLOCK_PRIORITY</a> <a href="/source/s?defs=LOW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LOW</a> 542<a class="l" name="536" href="#536">536</a> 543<a class="l" name="537" href="#537">537</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 544<a class="l" name="538" href="#538">538</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 545<a class="l" name="539" href="#539">539</a> 546<a class="hl" name="540" href="#540">540</a> <b>CREATE</b> <b>TABLE</b> #<a href="/source/s?defs=tblExpiredSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tblExpiredSessions</a> 547<a class="l" name="541" href="#541">541</a> ( 548<a class="l" name="542" href="#542">542</a> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>) <b>NOT</b> <b>NULL</b> <b>PRIMARY</b> <a href="/source/s?defs=KEY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">KEY</a> 549<a class="l" name="543" href="#543">543</a> ) 550<a class="l" name="544" href="#544">544</a> 551<a class="l" name="545" href="#545">545</a> <b>INSERT</b> #<a href="/source/s?defs=tblExpiredSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tblExpiredSessions</a> (<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>) 552<a class="l" name="546" href="#546">546</a> <b>SELECT</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> 553<a class="l" name="547" href="#547">547</a> <b>FROM</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> <b>WITH</b> (<a href="/source/s?defs=SNAPSHOT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SNAPSHOT</a>) 554<a class="l" name="548" href="#548">548</a> <b>WHERE</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> < @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> 555<a class="l" name="549" href="#549">549</a> 556<a class="hl" name="550" href="#550">550</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @@<a href="/source/s?defs=ROWCOUNT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ROWCOUNT</a> <> <span class="n">0</span> 557<a class="l" name="551" href="#551">551</a> <b>BEGIN</b> 558<a class="l" name="552" href="#552">552</a> <b>DECLARE</b> <a class="d" name="ExpiredSessionCursor"/><a href="/source/s?refs=ExpiredSessionCursor" class="d intelliWindow-symbol" data-definition-place="def">ExpiredSessionCursor</a> <b>CURSOR</b> <b>LOCAL</b> <a href="/source/s?defs=FORWARD_ONLY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">FORWARD_ONLY</a> <a href="/source/s?defs=READ_ONLY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">READ_ONLY</a> 559<a class="l" name="553" href="#553">553</a> <b>FOR</b> <b>SELECT</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> <b>FROM</b> #<a href="/source/s?defs=tblExpiredSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tblExpiredSessions</a> 560<a class="l" name="554" href="#554">554</a> 561<a class="l" name="555" href="#555">555</a> <b>DECLARE</b> @<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>) 562<a class="l" name="556" href="#556">556</a> 563<a class="l" name="557" href="#557">557</a> <b>OPEN</b> <a class="d intelliWindow-symbol" href="#ExpiredSessionCursor" data-definition-place="defined-in-file">ExpiredSessionCursor</a> 564<a class="l" name="558" href="#558">558</a> 565<a class="l" name="559" href="#559">559</a> <b>FETCH</b> <a href="/source/s?defs=NEXT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NEXT</a> <b>FROM</b> <a class="d intelliWindow-symbol" href="#ExpiredSessionCursor" data-definition-place="defined-in-file">ExpiredSessionCursor</a> <b>INTO</b> @<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> 566<a class="hl" name="560" href="#560">560</a> 567<a class="l" name="561" href="#561">561</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> @@<a href="/source/s?defs=FETCH_STATUS" class="intelliWindow-symbol" data-definition-place="undefined-in-file">FETCH_STATUS</a> = <span class="n">0</span> 568<a class="l" name="562" href="#562">562</a> <b>BEGIN</b> 569<a class="l" name="563" href="#563">563</a> <b>DELETE</b> <b>FROM</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> <b>AND</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> < @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> 570<a class="l" name="564" href="#564">564</a> <b>FETCH</b> <a href="/source/s?defs=NEXT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">NEXT</a> <b>FROM</b> <a class="d intelliWindow-symbol" href="#ExpiredSessionCursor" data-definition-place="defined-in-file">ExpiredSessionCursor</a> <b>INTO</b> @<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> 571<a class="l" name="565" href="#565">565</a> <b>END</b> 572<a class="l" name="566" href="#566">566</a> 573<a class="l" name="567" href="#567">567</a> <b>CLOSE</b> <a class="d intelliWindow-symbol" href="#ExpiredSessionCursor" data-definition-place="defined-in-file">ExpiredSessionCursor</a> 574<a class="l" name="568" href="#568">568</a> 575<a class="l" name="569" href="#569">569</a> <b>DEALLOCATE</b> <a class="d intelliWindow-symbol" href="#ExpiredSessionCursor" data-definition-place="defined-in-file">ExpiredSessionCursor</a> 576<a class="hl" name="570" href="#570">570</a> 577<a class="l" name="571" href="#571">571</a> <b>END</b> 578<a class="l" name="572" href="#572">572</a> 579<a class="l" name="573" href="#573">573</a> <b>DROP</b> <b>TABLE</b> #<a href="/source/s?defs=tblExpiredSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tblExpiredSessions</a> 580<a class="l" name="574" href="#574">574</a> 581<a class="l" name="575" href="#575">575</a><b>RETURN</b> <span class="n">0</span> 582<a class="l" name="576" href="#576">576</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 583<a class="l" name="577" href="#577">577</a> 584<a class="l" name="578" href="#578">578</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=GetHashCode" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GetHashCode</a>] 585<a class="l" name="579" href="#579">579</a> @<a href="/source/s?defs=input" class="intelliWindow-symbol" data-definition-place="undefined-in-file">input</a> <a href="/source/s?defs=tAppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tAppName</a>, 586<a class="hl" name="580" href="#580">580</a> @<a href="/source/s?defs=hash" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hash</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 587<a class="l" name="581" href="#581">581</a><b>AS</b> 588<a class="l" name="582" href="#582">582</a> <span class="c">/* 589<a class="l" name="583" href="#583">583</a> This sproc is based on this C# hash function: 590<a class="l" name="584" href="#584">584</a> 591<a class="l" name="585" href="#585">585</a> int GetHashCode(string s) 592<a class="l" name="586" href="#586">586</a> { 593<a class="l" name="587" href="#587">587</a> int hash = 5381; 594<a class="l" name="588" href="#588">588</a> int len = s.Length; 595<a class="l" name="589" href="#589">589</a> 596<a class="hl" name="590" href="#590">590</a> for (int i = 0; i < len; i++) { 597<a class="l" name="591" href="#591">591</a> int c = Convert.ToInt32(s[i]); 598<a class="l" name="592" href="#592">592</a> hash = ((hash << 5) + hash) ^ c; 599<a class="l" name="593" href="#593">593</a> } 600<a class="l" name="594" href="#594">594</a> 601<a class="l" name="595" href="#595">595</a> return hash; 602<a class="l" name="596" href="#596">596</a> } 603<a class="l" name="597" href="#597">597</a> 604<a class="l" name="598" href="#598">598</a> However, SQL 7 doesn't provide a 32-bit integer 605<a class="l" name="599" href="#599">599</a> type that allows rollover of bits, we have to 606<a class="hl" name="600" href="#600">600</a> divide our 32bit integer into the upper and lower 607<a class="l" name="601" href="#601">601</a> 16 bits to do our calculation. 608<a class="l" name="602" href="#602">602</a> */</span> 609<a class="l" name="603" href="#603">603</a> 610<a class="l" name="604" href="#604">604</a> <b>DECLARE</b> @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> <b>int</b> 611<a class="l" name="605" href="#605">605</a> <b>DECLARE</b> @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> <b>int</b> 612<a class="l" name="606" href="#606">606</a> <b>DECLARE</b> @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> <b>int</b> 613<a class="l" name="607" href="#607">607</a> <b>DECLARE</b> @<a href="/source/s?defs=lo_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_t</a> <b>int</b> 614<a class="l" name="608" href="#608">608</a> <b>DECLARE</b> @<a href="/source/s?defs=len" class="intelliWindow-symbol" data-definition-place="undefined-in-file">len</a> <b>int</b> 615<a class="l" name="609" href="#609">609</a> <b>DECLARE</b> @<a href="/source/s?defs=i" class="intelliWindow-symbol" data-definition-place="undefined-in-file">i</a> <b>int</b> 616<a class="hl" name="610" href="#610">610</a> <b>DECLARE</b> @<a href="/source/s?defs=c" class="intelliWindow-symbol" data-definition-place="undefined-in-file">c</a> <b>int</b> 617<a class="l" name="611" href="#611">611</a> <b>DECLARE</b> @<a href="/source/s?defs=carry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">carry</a> <b>int</b> 618<a class="l" name="612" href="#612">612</a> 619<a class="l" name="613" href="#613">613</a> <b>SET</b> @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> = <span class="n">0</span> 620<a class="l" name="614" href="#614">614</a> <b>SET</b> @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> = <span class="n">5381</span> 621<a class="l" name="615" href="#615">615</a> 622<a class="l" name="616" href="#616">616</a> <b>SET</b> @<a href="/source/s?defs=len" class="intelliWindow-symbol" data-definition-place="undefined-in-file">len</a> = <a href="/source/s?defs=DATALENGTH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATALENGTH</a>(@<a href="/source/s?defs=input" class="intelliWindow-symbol" data-definition-place="undefined-in-file">input</a>) 623<a class="l" name="617" href="#617">617</a> <b>SET</b> @<a href="/source/s?defs=i" class="intelliWindow-symbol" data-definition-place="undefined-in-file">i</a> = <span class="n">1</span> 624<a class="l" name="618" href="#618">618</a> 625<a class="l" name="619" href="#619">619</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=i" class="intelliWindow-symbol" data-definition-place="undefined-in-file">i</a> <= @<a href="/source/s?defs=len" class="intelliWindow-symbol" data-definition-place="undefined-in-file">len</a>) 626<a class="hl" name="620" href="#620">620</a> <b>BEGIN</b> 627<a class="l" name="621" href="#621">621</a> <b>SET</b> @<a href="/source/s?defs=c" class="intelliWindow-symbol" data-definition-place="undefined-in-file">c</a> = <a href="/source/s?defs=ASCII" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASCII</a>(<b>SUBSTRING</b>(@<a href="/source/s?defs=input" class="intelliWindow-symbol" data-definition-place="undefined-in-file">input</a>, @<a href="/source/s?defs=i" class="intelliWindow-symbol" data-definition-place="undefined-in-file">i</a>, <span class="n">1</span>)) 628<a class="l" name="622" href="#622">622</a> 629<a class="l" name="623" href="#623">623</a> <span class="c">/* Formula: 630<a class="l" name="624" href="#624">624</a> hash = ((hash << 5) + hash) ^ c */</span> 631<a class="l" name="625" href="#625">625</a> 632<a class="l" name="626" href="#626">626</a> <span class="c">/* hash << 5 */</span> 633<a class="l" name="627" href="#627">627</a> <b>SET</b> @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> = @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> * <span class="n">32</span> <span class="c">/* high 16bits << 5 */</span> 634<a class="l" name="628" href="#628">628</a> <b>SET</b> @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> = @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> & <span class="n">0xFFFF</span> <span class="c">/* zero out overflow */</span> 635<a class="l" name="629" href="#629">629</a> 636<a class="hl" name="630" href="#630">630</a> <b>SET</b> @<a href="/source/s?defs=lo_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_t</a> = @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> * <span class="n">32</span> <span class="c">/* low 16bits << 5 */</span> 637<a class="l" name="631" href="#631">631</a> 638<a class="l" name="632" href="#632">632</a> <b>SET</b> @<a href="/source/s?defs=carry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">carry</a> = @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> & <span class="n">0x1F0000</span> <span class="c">/* move low 16bits carryover to hi 16bits */</span> 639<a class="l" name="633" href="#633">633</a> <b>SET</b> @<a href="/source/s?defs=carry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">carry</a> = @<a href="/source/s?defs=carry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">carry</a> / <span class="n">0x10000</span> <span class="c">/* >> 16 */</span> 640<a class="l" name="634" href="#634">634</a> <b>SET</b> @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> = @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> + @<a href="/source/s?defs=carry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">carry</a> 641<a class="l" name="635" href="#635">635</a> <b>SET</b> @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> = @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> & <span class="n">0xFFFF</span> <span class="c">/* zero out overflow */</span> 642<a class="l" name="636" href="#636">636</a> 643<a class="l" name="637" href="#637">637</a> <span class="c">/* + hash */</span> 644<a class="l" name="638" href="#638">638</a> <b>SET</b> @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> = @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> + @<a href="/source/s?defs=lo_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_t</a> 645<a class="l" name="639" href="#639">639</a> <b>SET</b> @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> = @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> + @<a href="/source/s?defs=hi_t" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_t</a> + (@<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> / <span class="n">0x10000</span>) 646<a class="hl" name="640" href="#640">640</a> <span class="c">/* delay clearing the overflow */</span> 647<a class="l" name="641" href="#641">641</a> 648<a class="l" name="642" href="#642">642</a> <span class="c">/* ^c */</span> 649<a class="l" name="643" href="#643">643</a> <b>SET</b> @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> = @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> ^ @<a href="/source/s?defs=c" class="intelliWindow-symbol" data-definition-place="undefined-in-file">c</a> 650<a class="l" name="644" href="#644">644</a> 651<a class="l" name="645" href="#645">645</a> <span class="c">/* Now clear the overflow bits */</span> 652<a class="l" name="646" href="#646">646</a> <b>SET</b> @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> = @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> & <span class="n">0xFFFF</span> 653<a class="l" name="647" href="#647">647</a> <b>SET</b> @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> = @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> & <span class="n">0xFFFF</span> 654<a class="l" name="648" href="#648">648</a> 655<a class="l" name="649" href="#649">649</a> <b>SET</b> @<a href="/source/s?defs=i" class="intelliWindow-symbol" data-definition-place="undefined-in-file">i</a> = @<a href="/source/s?defs=i" class="intelliWindow-symbol" data-definition-place="undefined-in-file">i</a> + <span class="n">1</span> 656<a class="hl" name="650" href="#650">650</a> <b>END</b> 657<a class="l" name="651" href="#651">651</a> 658<a class="l" name="652" href="#652">652</a> <span class="c">/* Do a sign extension of the hi-16bit if needed */</span> 659<a class="l" name="653" href="#653">653</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> & <span class="n">0x8000</span> <> <span class="n">0</span>) 660<a class="l" name="654" href="#654">654</a> <b>SET</b> @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> = <span class="n">0xFFFF0000</span> | @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> 661<a class="l" name="655" href="#655">655</a> 662<a class="l" name="656" href="#656">656</a> <span class="c">/* Merge hi and lo 16bit back together */</span> 663<a class="l" name="657" href="#657">657</a> <b>SET</b> @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> = @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> * <span class="n">0x10000</span> <span class="c">/* << 16 */</span> 664<a class="l" name="658" href="#658">658</a> <b>SET</b> @<a href="/source/s?defs=hash" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hash</a> = @<a href="/source/s?defs=hi_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hi_16bit</a> | @<a href="/source/s?defs=lo_16bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lo_16bit</a> 665<a class="l" name="659" href="#659">659</a> 666<a class="hl" name="660" href="#660">660</a> <b>RETURN</b> <span class="n">0</span> 667<a class="l" name="661" href="#661">661</a> 668<a class="l" name="662" href="#662">662</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 669<a class="l" name="663" href="#663">663</a> 670<a class="l" name="664" href="#664">664</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=GetMajorVersion" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GetMajorVersion</a>] 671<a class="l" name="665" href="#665">665</a> @@<a href="/source/s?defs=ver" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ver</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 672<a class="l" name="666" href="#666">666</a><b>AS</b> 673<a class="l" name="667" href="#667">667</a><b>BEGIN</b> 674<a class="l" name="668" href="#668">668</a> <b>DECLARE</b> @<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a> <b>nchar</b>(<span class="n">100</span>) 675<a class="l" name="669" href="#669">669</a> <b>DECLARE</b> @<a href="/source/s?defs=dot" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dot</a> <b>int</b> 676<a class="hl" name="670" href="#670">670</a> <b>DECLARE</b> @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a> <b>int</b> 677<a class="l" name="671" href="#671">671</a> <b>DECLARE</b> @<a href="/source/s?defs=SqlToExec" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SqlToExec</a> <b>nchar</b>(<span class="n">4000</span>) 678<a class="l" name="672" href="#672">672</a> 679<a class="l" name="673" href="#673">673</a> <b>SELECT</b> @@<a href="/source/s?defs=ver" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ver</a> = <span class="n">7</span> 680<a class="l" name="674" href="#674">674</a> <b>SELECT</b> @<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a> = @@<a href="/source/s?defs=Version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Version</a> 681<a class="l" name="675" href="#675">675</a> <b>SELECT</b> @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a> = <a href="/source/s?defs=CHARINDEX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CHARINDEX</a>(N<span class="s">' - '</span>, @<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a>) 682<a class="l" name="676" href="#676">676</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (<b>NOT</b>(@<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a> <b>IS</b> <b>NULL</b>) <b>AND</b> @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a> > <span class="n">0</span>) 683<a class="l" name="677" href="#677">677</a> <b>BEGIN</b> 684<a class="l" name="678" href="#678">678</a> <b>SELECT</b> @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a> = @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a> + <span class="n">3</span> 685<a class="l" name="679" href="#679">679</a> <b>SELECT</b> @<a href="/source/s?defs=dot" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dot</a> = <a href="/source/s?defs=CHARINDEX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CHARINDEX</a>(N<span class="s">'.'</span>, @<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a>, @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a>) 686<a class="hl" name="680" href="#680">680</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (<b>NOT</b>(@<a href="/source/s?defs=dot" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dot</a> <b>IS</b> <b>NULL</b>) <b>AND</b> @<a href="/source/s?defs=dot" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dot</a> > @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a>) 687<a class="l" name="681" href="#681">681</a> <b>BEGIN</b> 688<a class="l" name="682" href="#682">682</a> <b>SELECT</b> @<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a> = <b>SUBSTRING</b>(@<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a>, @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a>, @<a href="/source/s?defs=dot" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dot</a> - @<a href="/source/s?defs=hyphen" class="intelliWindow-symbol" data-definition-place="undefined-in-file">hyphen</a>) 689<a class="l" name="683" href="#683">683</a> <b>SELECT</b> @@<a href="/source/s?defs=ver" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ver</a> = <b>CONVERT</b>(<b>int</b>, @<a href="/source/s?defs=version" class="intelliWindow-symbol" data-definition-place="undefined-in-file">version</a>) 690<a class="l" name="684" href="#684">684</a> <b>END</b> 691<a class="l" name="685" href="#685">685</a> <b>END</b> 692<a class="l" name="686" href="#686">686</a><b>END</b> 693<a class="l" name="687" href="#687">687</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 694<a class="l" name="688" href="#688">688</a> 695<a class="l" name="689" href="#689">689</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetAppID" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetAppID</a>] 696<a class="hl" name="690" href="#690">690</a> @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a> <b>VARCHAR</b>(<span class="n">280</span>), <span class="c">--@appName tAppName,</span> 697<a class="l" name="691" href="#691">691</a> @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 698<a class="l" name="692" href="#692">692</a><b>AS</b> 699<a class="l" name="693" href="#693">693</a> <b>SET</b> @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a> = <b>LOWER</b>(@<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a>) 700<a class="l" name="694" href="#694">694</a> <b>SET</b> @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> = <b>NULL</b> 701<a class="l" name="695" href="#695">695</a> 702<a class="l" name="696" href="#696">696</a> <b>SELECT</b> @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> = <a href="/source/s?defs=AppId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppId</a> 703<a class="l" name="697" href="#697">697</a> <b>FROM</b> <a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a> 704<a class="l" name="698" href="#698">698</a> <b>WHERE</b> <a href="/source/s?defs=AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppName</a> = @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a> 705<a class="l" name="699" href="#699">699</a> 706<a class="hl" name="700" href="#700">700</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> <b>IS</b> <b>NULL</b> <b>BEGIN</b> 707<a class="l" name="701" href="#701">701</a> <b>BEGIN</b> <a href="/source/s?defs=TRAN" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRAN</a> 708<a class="l" name="702" href="#702">702</a> 709<a class="l" name="703" href="#703">703</a> <b>SELECT</b> @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> = <a href="/source/s?defs=AppId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppId</a> 710<a class="l" name="704" href="#704">704</a> <b>FROM</b> <a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a> <b>WITH</b> (<a href="/source/s?defs=TABLOCKX" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TABLOCKX</a>) 711<a class="l" name="705" href="#705">705</a> <b>WHERE</b> <a href="/source/s?defs=AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppName</a> = @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a> 712<a class="l" name="706" href="#706">706</a> 713<a class="l" name="707" href="#707">707</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> <b>IS</b> <b>NULL</b> 714<a class="l" name="708" href="#708">708</a> <b>BEGIN</b> 715<a class="l" name="709" href="#709">709</a> <b>EXEC</b> <a href="/source/s?defs=GetHashCode" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GetHashCode</a> @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a>, @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 716<a class="hl" name="710" href="#710">710</a> 717<a class="l" name="711" href="#711">711</a> <b>INSERT</b> <a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a> 718<a class="l" name="712" href="#712">712</a> <b>VALUES</b> 719<a class="l" name="713" href="#713">713</a> (@<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a>, @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a>) 720<a class="l" name="714" href="#714">714</a> 721<a class="l" name="715" href="#715">715</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @@<a href="/source/s?defs=ERROR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR</a> = <span class="n">2627</span> 722<a class="l" name="716" href="#716">716</a> <b>BEGIN</b> 723<a class="l" name="717" href="#717">717</a> <b>DECLARE</b> @<a href="/source/s?defs=dupApp" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dupApp</a> <a href="/source/s?defs=tAppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tAppName</a> 724<a class="l" name="718" href="#718">718</a> 725<a class="l" name="719" href="#719">719</a> <b>SELECT</b> @<a href="/source/s?defs=dupApp" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dupApp</a> = <a href="/source/s?defs=RTRIM" class="intelliWindow-symbol" data-definition-place="undefined-in-file">RTRIM</a>(<a href="/source/s?defs=AppName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppName</a>) 726<a class="hl" name="720" href="#720">720</a> <b>FROM</b> <a href="/source/s?defs=ASPStateTempApplications" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempApplications</a> 727<a class="l" name="721" href="#721">721</a> <b>WHERE</b> <a href="/source/s?defs=AppId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">AppId</a> = @<a href="/source/s?defs=appId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appId</a> 728<a class="l" name="722" href="#722">722</a> 729<a class="l" name="723" href="#723">723</a> <a href="/source/s?defs=RAISERROR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">RAISERROR</a>(<span class="s">'SQL session state fatal error: hash-code collision between applications ''%s'' and ''%s''. Please rename the 1st application to resolve the problem.'</span>, 730<a class="l" name="724" href="#724">724</a> <span class="n">18</span>, <span class="n">1</span>, @<a href="/source/s?defs=appName" class="intelliWindow-symbol" data-definition-place="undefined-in-file">appName</a>, @<a href="/source/s?defs=dupApp" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dupApp</a>) 731<a class="l" name="725" href="#725">725</a> <b>END</b> 732<a class="l" name="726" href="#726">726</a> <b>END</b> 733<a class="l" name="727" href="#727">727</a> <b>COMMIT</b> 734<a class="l" name="728" href="#728">728</a> <b>END</b> 735<a class="l" name="729" href="#729">729</a> 736<a class="hl" name="730" href="#730">730</a><b>RETURN</b> <span class="n">0</span> 737<a class="l" name="731" href="#731">731</a> 738<a class="l" name="732" href="#732">732</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 739<a class="l" name="733" href="#733">733</a> 740<a class="l" name="734" href="#734">734</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItem" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItem</a>] 741<a class="l" name="735" href="#735">735</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=tSessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionId</a>, 742<a class="l" name="736" href="#736">736</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <a href="/source/s?defs=tSessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionItemShort</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 743<a class="l" name="737" href="#737">737</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 744<a class="l" name="738" href="#738">738</a> @<a href="/source/s?defs=lockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockDate</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 745<a class="l" name="739" href="#739">739</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 746<a class="hl" name="740" href="#740">740</a><b>AS</b> 747<a class="l" name="741" href="#741">741</a> <b>DECLARE</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> <b>AS</b> <a href="/source/s?defs=tTextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tTextPtr</a> 748<a class="l" name="742" href="#742">742</a> <b>DECLARE</b> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>AS</b> <b>int</b> 749<a class="l" name="743" href="#743">743</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 750<a class="l" name="744" href="#744">744</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 751<a class="l" name="745" href="#745">745</a> 752<a class="l" name="746" href="#746">746</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 753<a class="l" name="747" href="#747">747</a> 754<a class="l" name="748" href="#748">748</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 755<a class="l" name="749" href="#749">749</a> <b>BEGIN</b> 756<a class="hl" name="750" href="#750">750</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 757<a class="l" name="751" href="#751">751</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 758<a class="l" name="752" href="#752">752</a> 759<a class="l" name="753" href="#753">753</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 760<a class="l" name="754" href="#754">754</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 761<a class="l" name="755" href="#755">755</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 762<a class="l" name="756" href="#756">756</a> @<a href="/source/s?defs=lockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockDate</a> = <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a>, 763<a class="l" name="757" href="#757">757</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>, 764<a class="l" name="758" href="#758">758</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 765<a class="l" name="759" href="#759">759</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> 766<a class="hl" name="760" href="#760">760</a> <b>ELSE</b> <b>NULL</b> 767<a class="l" name="761" href="#761">761</a> <b>END</b>, 768<a class="l" name="762" href="#762">762</a> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 769<a class="l" name="763" href="#763">763</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> 770<a class="l" name="764" href="#764">764</a> <b>ELSE</b> <b>NULL</b> 771<a class="l" name="765" href="#765">765</a> <b>END</b>, 772<a class="l" name="766" href="#766">766</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 773<a class="l" name="767" href="#767">767</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=DATALENGTH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATALENGTH</a>(<a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>) 774<a class="l" name="768" href="#768">768</a> <b>ELSE</b> <b>NULL</b> 775<a class="l" name="769" href="#769">769</a> <b>END</b> 776<a class="hl" name="770" href="#770">770</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 777<a class="l" name="771" href="#771">771</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>IS</b> <b>NOT</b> <b>NULL</b> <b>BEGIN</b> 778<a class="l" name="772" href="#772">772</a> <b>SELECT</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> 779<a class="l" name="773" href="#773">773</a> <b>END</b> 780<a class="l" name="774" href="#774">774</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 781<a class="l" name="775" href="#775">775</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 782<a class="l" name="776" href="#776">776</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 783<a class="l" name="777" href="#777">777</a> 784<a class="l" name="778" href="#778">778</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 785<a class="l" name="779" href="#779">779</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 786<a class="hl" name="780" href="#780">780</a> 787<a class="l" name="781" href="#781">781</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 788<a class="l" name="782" href="#782">782</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 789<a class="l" name="783" href="#783">783</a> ) 790<a class="l" name="784" href="#784">784</a> <b>BEGIN</b> 791<a class="l" name="785" href="#785">785</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 792<a class="l" name="786" href="#786">786</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 793<a class="l" name="787" href="#787">787</a> 794<a class="l" name="788" href="#788">788</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 795<a class="l" name="789" href="#789">789</a> <b>END</b> 796<a class="hl" name="790" href="#790">790</a> <b>ELSE</b> 797<a class="l" name="791" href="#791">791</a> <b>BEGIN</b> 798<a class="l" name="792" href="#792">792</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 799<a class="l" name="793" href="#793">793</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 800<a class="l" name="794" href="#794">794</a> <b>END</b> 801<a class="l" name="795" href="#795">795</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 802<a class="l" name="796" href="#796">796</a> 803<a class="l" name="797" href="#797">797</a> <b>END</b> <span class="c">-- //While loop</span> 804<a class="l" name="798" href="#798">798</a> <b>RETURN</b> <span class="n">0</span> 805<a class="l" name="799" href="#799">799</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 806<a class="hl" name="800" href="#800">800</a> 807<a class="l" name="801" href="#801">801</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItem2" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItem2</a>] 808<a class="l" name="802" href="#802">802</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=tSessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionId</a>, 809<a class="l" name="803" href="#803">803</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <a href="/source/s?defs=tSessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionItemShort</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 810<a class="l" name="804" href="#804">804</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 811<a class="l" name="805" href="#805">805</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 812<a class="l" name="806" href="#806">806</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 813<a class="l" name="807" href="#807">807</a><b>AS</b> 814<a class="l" name="808" href="#808">808</a> <b>DECLARE</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> <b>AS</b> <a href="/source/s?defs=tTextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tTextPtr</a> 815<a class="l" name="809" href="#809">809</a> <b>DECLARE</b> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>AS</b> <b>int</b> 816<a class="hl" name="810" href="#810">810</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 817<a class="l" name="811" href="#811">811</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 818<a class="l" name="812" href="#812">812</a> 819<a class="l" name="813" href="#813">813</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 820<a class="l" name="814" href="#814">814</a> 821<a class="l" name="815" href="#815">815</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 822<a class="l" name="816" href="#816">816</a> <b>BEGIN</b> 823<a class="l" name="817" href="#817">817</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 824<a class="l" name="818" href="#818">818</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 825<a class="l" name="819" href="#819">819</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 826<a class="hl" name="820" href="#820">820</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 827<a class="l" name="821" href="#821">821</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 828<a class="l" name="822" href="#822">822</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> = <a href="/source/s?defs=DATEDIFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEDIFF</a>(<b>second</b>, <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 829<a class="l" name="823" href="#823">823</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>, 830<a class="l" name="824" href="#824">824</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 831<a class="l" name="825" href="#825">825</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> 832<a class="l" name="826" href="#826">826</a> <b>ELSE</b> <b>NULL</b> 833<a class="l" name="827" href="#827">827</a> <b>END</b>, 834<a class="l" name="828" href="#828">828</a> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 835<a class="l" name="829" href="#829">829</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> 836<a class="hl" name="830" href="#830">830</a> <b>ELSE</b> <b>NULL</b> 837<a class="l" name="831" href="#831">831</a> <b>END</b>, 838<a class="l" name="832" href="#832">832</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 839<a class="l" name="833" href="#833">833</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=DATALENGTH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATALENGTH</a>(<a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>) 840<a class="l" name="834" href="#834">834</a> <b>ELSE</b> <b>NULL</b> 841<a class="l" name="835" href="#835">835</a> <b>END</b> 842<a class="l" name="836" href="#836">836</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 843<a class="l" name="837" href="#837">837</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>IS</b> <b>NOT</b> <b>NULL</b> <b>BEGIN</b> 844<a class="l" name="838" href="#838">838</a> <b>SELECT</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> 845<a class="l" name="839" href="#839">839</a> <b>END</b> 846<a class="hl" name="840" href="#840">840</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 847<a class="l" name="841" href="#841">841</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 848<a class="l" name="842" href="#842">842</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 849<a class="l" name="843" href="#843">843</a> 850<a class="l" name="844" href="#844">844</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 851<a class="l" name="845" href="#845">845</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 852<a class="l" name="846" href="#846">846</a> 853<a class="l" name="847" href="#847">847</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 854<a class="l" name="848" href="#848">848</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 855<a class="l" name="849" href="#849">849</a> ) 856<a class="hl" name="850" href="#850">850</a> <b>BEGIN</b> 857<a class="l" name="851" href="#851">851</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 858<a class="l" name="852" href="#852">852</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 859<a class="l" name="853" href="#853">853</a> 860<a class="l" name="854" href="#854">854</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 861<a class="l" name="855" href="#855">855</a> <b>END</b> 862<a class="l" name="856" href="#856">856</a> <b>ELSE</b> 863<a class="l" name="857" href="#857">857</a> <b>BEGIN</b> 864<a class="l" name="858" href="#858">858</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 865<a class="l" name="859" href="#859">859</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 866<a class="hl" name="860" href="#860">860</a> <b>END</b> 867<a class="l" name="861" href="#861">861</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 868<a class="l" name="862" href="#862">862</a> 869<a class="l" name="863" href="#863">863</a> <b>END</b> <span class="c">-- //While loop</span> 870<a class="l" name="864" href="#864">864</a> <b>RETURN</b> <span class="n">0</span> 871<a class="l" name="865" href="#865">865</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 872<a class="l" name="866" href="#866">866</a> 873<a class="l" name="867" href="#867">867</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItem3" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItem3</a>] 874<a class="l" name="868" href="#868">868</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 875<a class="l" name="869" href="#869">869</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>) <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 876<a class="hl" name="870" href="#870">870</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 877<a class="l" name="871" href="#871">871</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 878<a class="l" name="872" href="#872">872</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 879<a class="l" name="873" href="#873">873</a> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 880<a class="l" name="874" href="#874">874</a><b>AS</b> 881<a class="l" name="875" href="#875">875</a> <b>DECLARE</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> <b>AS</b> <a href="/source/s?defs=tTextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tTextPtr</a> 882<a class="l" name="876" href="#876">876</a> <b>DECLARE</b> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>AS</b> <b>int</b> 883<a class="l" name="877" href="#877">877</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 884<a class="l" name="878" href="#878">878</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 885<a class="l" name="879" href="#879">879</a> 886<a class="hl" name="880" href="#880">880</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 887<a class="l" name="881" href="#881">881</a> 888<a class="l" name="882" href="#882">882</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 889<a class="l" name="883" href="#883">883</a> <b>BEGIN</b> 890<a class="l" name="884" href="#884">884</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 891<a class="l" name="885" href="#885">885</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 892<a class="l" name="886" href="#886">886</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 893<a class="l" name="887" href="#887">887</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 894<a class="l" name="888" href="#888">888</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 895<a class="l" name="889" href="#889">889</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> = <a href="/source/s?defs=DATEDIFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEDIFF</a>(<b>second</b>, <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 896<a class="hl" name="890" href="#890">890</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>, 897<a class="l" name="891" href="#891">891</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 898<a class="l" name="892" href="#892">892</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> 899<a class="l" name="893" href="#893">893</a> <b>ELSE</b> <b>NULL</b> 900<a class="l" name="894" href="#894">894</a> <b>END</b>, 901<a class="l" name="895" href="#895">895</a> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 902<a class="l" name="896" href="#896">896</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> 903<a class="l" name="897" href="#897">897</a> <b>ELSE</b> <b>NULL</b> 904<a class="l" name="898" href="#898">898</a> <b>END</b>, 905<a class="l" name="899" href="#899">899</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <b>CASE</b> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> 906<a class="hl" name="900" href="#900">900</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=DATALENGTH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATALENGTH</a>(<a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>) 907<a class="l" name="901" href="#901">901</a> <b>ELSE</b> <b>NULL</b> 908<a class="l" name="902" href="#902">902</a> <b>END</b>, 909<a class="l" name="903" href="#903">903</a> 910<a class="l" name="904" href="#904">904</a> <span class="c">/* If the Uninitialized flag (0x1) if it is set, 911<a class="l" name="905" href="#905">905</a> remove it and return InitializeItem (0x1) in actionFlags */</span> 912<a class="l" name="906" href="#906">906</a> <a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> = <b>CASE</b> 913<a class="l" name="907" href="#907">907</a> <b>WHEN</b> (<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> & <span class="n">1</span>) <> <span class="n">0</span> <b>THEN</b> (<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> & ~<span class="n">1</span>) 914<a class="l" name="908" href="#908">908</a> <b>ELSE</b> <a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> 915<a class="l" name="909" href="#909">909</a> <b>END</b>, 916<a class="hl" name="910" href="#910">910</a> @<a href="/source/s?defs=actionFlags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">actionFlags</a> = <b>CASE</b> 917<a class="l" name="911" href="#911">911</a> <b>WHEN</b> (<a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a> & <span class="n">1</span>) <> <span class="n">0</span> <b>THEN</b> <span class="n">1</span> 918<a class="l" name="912" href="#912">912</a> <b>ELSE</b> <span class="n">0</span> 919<a class="l" name="913" href="#913">913</a> <b>END</b> 920<a class="l" name="914" href="#914">914</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 921<a class="l" name="915" href="#915">915</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>IS</b> <b>NOT</b> <b>NULL</b> <b>BEGIN</b> 922<a class="l" name="916" href="#916">916</a> <b>SELECT</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> 923<a class="l" name="917" href="#917">917</a> <b>END</b> 924<a class="l" name="918" href="#918">918</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 925<a class="l" name="919" href="#919">919</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 926<a class="hl" name="920" href="#920">920</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 927<a class="l" name="921" href="#921">921</a> 928<a class="l" name="922" href="#922">922</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 929<a class="l" name="923" href="#923">923</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 930<a class="l" name="924" href="#924">924</a> 931<a class="l" name="925" href="#925">925</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 932<a class="l" name="926" href="#926">926</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 933<a class="l" name="927" href="#927">927</a> ) 934<a class="l" name="928" href="#928">928</a> <b>BEGIN</b> 935<a class="l" name="929" href="#929">929</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 936<a class="hl" name="930" href="#930">930</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 937<a class="l" name="931" href="#931">931</a> 938<a class="l" name="932" href="#932">932</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 939<a class="l" name="933" href="#933">933</a> <b>END</b> 940<a class="l" name="934" href="#934">934</a> <b>ELSE</b> 941<a class="l" name="935" href="#935">935</a> <b>BEGIN</b> 942<a class="l" name="936" href="#936">936</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 943<a class="l" name="937" href="#937">937</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 944<a class="l" name="938" href="#938">938</a> <b>END</b> 945<a class="l" name="939" href="#939">939</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 946<a class="hl" name="940" href="#940">940</a> 947<a class="l" name="941" href="#941">941</a> <b>END</b> <span class="c">-- //While loop</span> 948<a class="l" name="942" href="#942">942</a> <b>RETURN</b> <span class="n">0</span> 949<a class="l" name="943" href="#943">943</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 950<a class="l" name="944" href="#944">944</a> 951<a class="l" name="945" href="#945">945</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItemExclusive" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItemExclusive</a>] 952<a class="l" name="946" href="#946">946</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=tSessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionId</a>, 953<a class="l" name="947" href="#947">947</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <a href="/source/s?defs=tSessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionItemShort</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 954<a class="l" name="948" href="#948">948</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 955<a class="l" name="949" href="#949">949</a> @<a href="/source/s?defs=lockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockDate</a> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 956<a class="hl" name="950" href="#950">950</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 957<a class="l" name="951" href="#951">951</a><b>AS</b> 958<a class="l" name="952" href="#952">952</a> <b>DECLARE</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> <b>AS</b> <a href="/source/s?defs=tTextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tTextPtr</a> 959<a class="l" name="953" href="#953">953</a> <b>DECLARE</b> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>AS</b> <b>int</b> 960<a class="l" name="954" href="#954">954</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 961<a class="l" name="955" href="#955">955</a> <b>DECLARE</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 962<a class="l" name="956" href="#956">956</a> 963<a class="l" name="957" href="#957">957</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 964<a class="l" name="958" href="#958">958</a> <b>SET</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> = <a href="/source/s?defs=GETDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETDATE</a>() 965<a class="l" name="959" href="#959">959</a> 966<a class="hl" name="960" href="#960">960</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 967<a class="l" name="961" href="#961">961</a> 968<a class="l" name="962" href="#962">962</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 969<a class="l" name="963" href="#963">963</a> <b>BEGIN</b> 970<a class="l" name="964" href="#964">964</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 971<a class="l" name="965" href="#965">965</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 972<a class="l" name="966" href="#966">966</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 973<a class="l" name="967" href="#967">967</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 974<a class="l" name="968" href="#968">968</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 975<a class="l" name="969" href="#969">969</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> 976<a class="hl" name="970" href="#970">970</a> <b>ELSE</b> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a> 977<a class="l" name="971" href="#971">971</a> <b>END</b>, 978<a class="l" name="972" href="#972">972</a> @<a href="/source/s?defs=lockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockDate</a> = <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 979<a class="l" name="973" href="#973">973</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> 980<a class="l" name="974" href="#974">974</a> <b>ELSE</b> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a> 981<a class="l" name="975" href="#975">975</a> <b>END</b>, 982<a class="l" name="976" href="#976">976</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 983<a class="l" name="977" href="#977">977</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> + <span class="n">1</span> 984<a class="l" name="978" href="#978">978</a> <b>ELSE</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> 985<a class="l" name="979" href="#979">979</a> <b>END</b>, 986<a class="hl" name="980" href="#980">980</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 987<a class="l" name="981" href="#981">981</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> 988<a class="l" name="982" href="#982">982</a> <b>ELSE</b> <b>NULL</b> 989<a class="l" name="983" href="#983">983</a> <b>END</b>, 990<a class="l" name="984" href="#984">984</a> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 991<a class="l" name="985" href="#985">985</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> 992<a class="l" name="986" href="#986">986</a> <b>ELSE</b> <b>NULL</b> 993<a class="l" name="987" href="#987">987</a> <b>END</b>, 994<a class="l" name="988" href="#988">988</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 995<a class="l" name="989" href="#989">989</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=DATALENGTH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATALENGTH</a>(<a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>) 996<a class="hl" name="990" href="#990">990</a> <b>ELSE</b> <b>NULL</b> 997<a class="l" name="991" href="#991">991</a> <b>END</b>, 998<a class="l" name="992" href="#992">992</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 999<a class="l" name="993" href="#993">993</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">1</span> 1000<a class="l" name="994" href="#994">994</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 1001<a class="l" name="995" href="#995">995</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>IS</b> <b>NOT</b> <b>NULL</b> <b>BEGIN</b> 1002<a class="l" name="996" href="#996">996</a> <b>SELECT</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> 1003<a class="l" name="997" href="#997">997</a> <b>END</b> 1004<a class="l" name="998" href="#998">998</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1005<a class="l" name="999" href="#999">999</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1006<a class="hl" name="1000" href="#1000">1000</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1007<a class="l" name="1001" href="#1001">1001</a> 1008<a class="l" name="1002" href="#1002">1002</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1009<a class="l" name="1003" href="#1003">1003</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1010<a class="l" name="1004" href="#1004">1004</a> 1011<a class="l" name="1005" href="#1005">1005</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1012<a class="l" name="1006" href="#1006">1006</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1013<a class="l" name="1007" href="#1007">1007</a> ) 1014<a class="l" name="1008" href="#1008">1008</a> <b>BEGIN</b> 1015<a class="l" name="1009" href="#1009">1009</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1016<a class="hl" name="1010" href="#1010">1010</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1017<a class="l" name="1011" href="#1011">1011</a> 1018<a class="l" name="1012" href="#1012">1012</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1019<a class="l" name="1013" href="#1013">1013</a> <b>END</b> 1020<a class="l" name="1014" href="#1014">1014</a> <b>ELSE</b> 1021<a class="l" name="1015" href="#1015">1015</a> <b>BEGIN</b> 1022<a class="l" name="1016" href="#1016">1016</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1023<a class="l" name="1017" href="#1017">1017</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1024<a class="l" name="1018" href="#1018">1018</a> <b>END</b> 1025<a class="l" name="1019" href="#1019">1019</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1026<a class="hl" name="1020" href="#1020">1020</a> 1027<a class="l" name="1021" href="#1021">1021</a> <b>END</b> <span class="c">-- //While loop</span> 1028<a class="l" name="1022" href="#1022">1022</a> <b>RETURN</b> <span class="n">0</span> 1029<a class="l" name="1023" href="#1023">1023</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1030<a class="l" name="1024" href="#1024">1024</a> 1031<a class="l" name="1025" href="#1025">1025</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetStateItemExclusive2" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetStateItemExclusive2</a>] 1032<a class="l" name="1026" href="#1026">1026</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=tSessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionId</a>, 1033<a class="l" name="1027" href="#1027">1027</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <a href="/source/s?defs=tSessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tSessionItemShort</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 1034<a class="l" name="1028" href="#1028">1028</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> <a href="/source/s?defs=bit" class="intelliWindow-symbol" data-definition-place="undefined-in-file">bit</a> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 1035<a class="l" name="1029" href="#1029">1029</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a>, 1036<a class="hl" name="1030" href="#1030">1030</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 1037<a class="l" name="1031" href="#1031">1031</a><b>AS</b> 1038<a class="l" name="1032" href="#1032">1032</a> <b>DECLARE</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> <b>AS</b> <a href="/source/s?defs=tTextPtr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">tTextPtr</a> 1039<a class="l" name="1033" href="#1033">1033</a> <b>DECLARE</b> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>AS</b> <b>int</b> 1040<a class="l" name="1034" href="#1034">1034</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 1041<a class="l" name="1035" href="#1035">1035</a> <b>DECLARE</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 1042<a class="l" name="1036" href="#1036">1036</a> 1043<a class="l" name="1037" href="#1037">1037</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 1044<a class="l" name="1038" href="#1038">1038</a> <b>SET</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> = <a href="/source/s?defs=GETDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETDATE</a>() 1045<a class="l" name="1039" href="#1039">1039</a> 1046<a class="hl" name="1040" href="#1040">1040</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1047<a class="l" name="1041" href="#1041">1041</a> 1048<a class="l" name="1042" href="#1042">1042</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1049<a class="l" name="1043" href="#1043">1043</a> <b>BEGIN</b> 1050<a class="l" name="1044" href="#1044">1044</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1051<a class="l" name="1045" href="#1045">1045</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1052<a class="l" name="1046" href="#1046">1046</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1053<a class="l" name="1047" href="#1047">1047</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 1054<a class="l" name="1048" href="#1048">1048</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1055<a class="l" name="1049" href="#1049">1049</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> 1056<a class="hl" name="1050" href="#1050">1050</a> <b>ELSE</b> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a> 1057<a class="l" name="1051" href="#1051">1051</a> <b>END</b>, 1058<a class="l" name="1052" href="#1052">1052</a> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1059<a class="l" name="1053" href="#1053">1053</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> 1060<a class="l" name="1054" href="#1054">1054</a> <b>ELSE</b> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a> 1061<a class="l" name="1055" href="#1055">1055</a> <b>END</b>, 1062<a class="l" name="1056" href="#1056">1056</a> @<a href="/source/s?defs=lockAge" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockAge</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1063<a class="l" name="1057" href="#1057">1057</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <span class="n">0</span> 1064<a class="l" name="1058" href="#1058">1058</a> <b>ELSE</b> <a href="/source/s?defs=DATEDIFF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEDIFF</a>(<b>second</b>, <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>) 1065<a class="l" name="1059" href="#1059">1059</a> <b>END</b>, 1066<a class="hl" name="1060" href="#1060">1060</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> = <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1067<a class="l" name="1061" href="#1061">1061</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> + <span class="n">1</span> 1068<a class="l" name="1062" href="#1062">1062</a> <b>ELSE</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> 1069<a class="l" name="1063" href="#1063">1063</a> <b>END</b>, 1070<a class="l" name="1064" href="#1064">1064</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1071<a class="l" name="1065" href="#1065">1065</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> 1072<a class="l" name="1066" href="#1066">1066</a> <b>ELSE</b> <b>NULL</b> 1073<a class="l" name="1067" href="#1067">1067</a> <b>END</b>, 1074<a class="l" name="1068" href="#1068">1068</a> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1075<a class="l" name="1069" href="#1069">1069</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> 1076<a class="hl" name="1070" href="#1070">1070</a> <b>ELSE</b> <b>NULL</b> 1077<a class="l" name="1071" href="#1071">1071</a> <b>END</b>, 1078<a class="l" name="1072" href="#1072">1072</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> = <b>CASE</b> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> 1079<a class="l" name="1073" href="#1073">1073</a> <b>WHEN</b> <span class="n">0</span> <b>THEN</b> <a href="/source/s?defs=DATALENGTH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATALENGTH</a>(<a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>) 1080<a class="l" name="1074" href="#1074">1074</a> <b>ELSE</b> <b>NULL</b> 1081<a class="l" name="1075" href="#1075">1075</a> <b>END</b>, 1082<a class="l" name="1076" href="#1076">1076</a> @<a href="/source/s?defs=locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">locked</a> = <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 1083<a class="l" name="1077" href="#1077">1077</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">1</span> 1084<a class="l" name="1078" href="#1078">1078</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 1085<a class="l" name="1079" href="#1079">1079</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> @<a href="/source/s?defs=length" class="intelliWindow-symbol" data-definition-place="undefined-in-file">length</a> <b>IS</b> <b>NOT</b> <b>NULL</b> <b>BEGIN</b> 1086<a class="hl" name="1080" href="#1080">1080</a> <b>SELECT</b> @<a href="/source/s?defs=textptr" class="intelliWindow-symbol" data-definition-place="undefined-in-file">textptr</a> 1087<a class="l" name="1081" href="#1081">1081</a> <b>END</b> 1088<a class="l" name="1082" href="#1082">1082</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1089<a class="l" name="1083" href="#1083">1083</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1090<a class="l" name="1084" href="#1084">1084</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1091<a class="l" name="1085" href="#1085">1085</a> 1092<a class="l" name="1086" href="#1086">1086</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1093<a class="l" name="1087" href="#1087">1087</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1094<a class="l" name="1088" href="#1088">1088</a> 1095<a class="l" name="1089" href="#1089">1089</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1096<a class="hl" name="1090" href="#1090">1090</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1097<a class="l" name="1091" href="#1091">1091</a> ) 1098<a class="l" name="1092" href="#1092">1092</a> <b>BEGIN</b> 1099<a class="l" name="1093" href="#1093">1093</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1100<a class="l" name="1094" href="#1094">1094</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1101<a class="l" name="1095" href="#1095">1095</a> 1102<a class="l" name="1096" href="#1096">1096</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1103<a class="l" name="1097" href="#1097">1097</a> <b>END</b> 1104<a class="l" name="1098" href="#1098">1098</a> <b>ELSE</b> 1105<a class="l" name="1099" href="#1099">1099</a> <b>BEGIN</b> 1106<a class="hl" name="1100" href="#1100">1100</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1107<a class="l" name="1101" href="#1101">1101</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1108<a class="l" name="1102" href="#1102">1102</a> <b>END</b> 1109<a class="l" name="1103" href="#1103">1103</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1110<a class="l" name="1104" href="#1104">1104</a> 1111<a class="l" name="1105" href="#1105">1105</a> <b>END</b> <span class="c">-- //While loop</span> 1112<a class="l" name="1106" href="#1106">1106</a> <b>RETURN</b> <span class="n">0</span> 1113<a class="l" name="1107" href="#1107">1107</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1114<a class="l" name="1108" href="#1108">1108</a> 1115<a class="l" name="1109" href="#1109">1109</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempGetVersion" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempGetVersion</a>] 1116<a class="hl" name="1110" href="#1110">1110</a> @<a href="/source/s?defs=ver" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ver</a> <b>char</b>(<span class="n">10</span>) <a href="/source/s?defs=OUTPUT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">OUTPUT</a> 1117<a class="l" name="1111" href="#1111">1111</a><b>AS</b> 1118<a class="l" name="1112" href="#1112">1112</a> <b>SELECT</b> @<a href="/source/s?defs=ver" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ver</a> = <span class="s">'2'</span> 1119<a class="l" name="1113" href="#1113">1113</a> <b>RETURN</b> <span class="n">0</span> 1120<a class="l" name="1114" href="#1114">1114</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1121<a class="l" name="1115" href="#1115">1115</a> 1122<a class="l" name="1116" href="#1116">1116</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempInsertStateItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempInsertStateItemLong</a>] 1123<a class="l" name="1117" href="#1117">1117</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 1124<a class="l" name="1118" href="#1118">1118</a> @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a> <a href="/source/s?defs=image" class="intelliWindow-symbol" data-definition-place="undefined-in-file">image</a>, 1125<a class="l" name="1119" href="#1119">1119</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b> 1126<a class="hl" name="1120" href="#1120">1120</a><b>AS</b> 1127<a class="l" name="1121" href="#1121">1121</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 1128<a class="l" name="1122" href="#1122">1122</a> <b>DECLARE</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 1129<a class="l" name="1123" href="#1123">1123</a> 1130<a class="l" name="1124" href="#1124">1124</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 1131<a class="l" name="1125" href="#1125">1125</a> <b>SET</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> = <a href="/source/s?defs=GETDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETDATE</a>() 1132<a class="l" name="1126" href="#1126">1126</a> 1133<a class="l" name="1127" href="#1127">1127</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1134<a class="l" name="1128" href="#1128">1128</a> 1135<a class="l" name="1129" href="#1129">1129</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1136<a class="hl" name="1130" href="#1130">1130</a> <b>BEGIN</b> 1137<a class="l" name="1131" href="#1131">1131</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1138<a class="l" name="1132" href="#1132">1132</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1139<a class="l" name="1133" href="#1133">1133</a> <b>INSERT</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1140<a class="l" name="1134" href="#1134">1134</a> (<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>, 1141<a class="l" name="1135" href="#1135">1135</a> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a>, 1142<a class="l" name="1136" href="#1136">1136</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, 1143<a class="l" name="1137" href="#1137">1137</a> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a>, 1144<a class="l" name="1138" href="#1138">1138</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 1145<a class="l" name="1139" href="#1139">1139</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, 1146<a class="hl" name="1140" href="#1140">1140</a> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a>, 1147<a class="l" name="1141" href="#1141">1141</a> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>) 1148<a class="l" name="1142" href="#1142">1142</a> <b>VALUES</b> 1149<a class="l" name="1143" href="#1143">1143</a> (@<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, 1150<a class="l" name="1144" href="#1144">1144</a> @<a href="/source/s?defs=itemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemLong</a>, 1151<a class="l" name="1145" href="#1145">1145</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 1152<a class="l" name="1146" href="#1146">1146</a> <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 1153<a class="l" name="1147" href="#1147">1147</a> <span class="n">0</span>, 1154<a class="l" name="1148" href="#1148">1148</a> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>, 1155<a class="l" name="1149" href="#1149">1149</a> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a>, 1156<a class="hl" name="1150" href="#1150">1150</a> <span class="n">1</span>) 1157<a class="l" name="1151" href="#1151">1151</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1158<a class="l" name="1152" href="#1152">1152</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1159<a class="l" name="1153" href="#1153">1153</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1160<a class="l" name="1154" href="#1154">1154</a> 1161<a class="l" name="1155" href="#1155">1155</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1162<a class="l" name="1156" href="#1156">1156</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1163<a class="l" name="1157" href="#1157">1157</a> 1164<a class="l" name="1158" href="#1158">1158</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1165<a class="l" name="1159" href="#1159">1159</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1166<a class="hl" name="1160" href="#1160">1160</a> ) 1167<a class="l" name="1161" href="#1161">1161</a> <b>BEGIN</b> 1168<a class="l" name="1162" href="#1162">1162</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1169<a class="l" name="1163" href="#1163">1163</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1170<a class="l" name="1164" href="#1164">1164</a> 1171<a class="l" name="1165" href="#1165">1165</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1172<a class="l" name="1166" href="#1166">1166</a> <b>END</b> 1173<a class="l" name="1167" href="#1167">1167</a> <b>ELSE</b> 1174<a class="l" name="1168" href="#1168">1168</a> <b>BEGIN</b> 1175<a class="l" name="1169" href="#1169">1169</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1176<a class="hl" name="1170" href="#1170">1170</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1177<a class="l" name="1171" href="#1171">1171</a> <b>END</b> 1178<a class="l" name="1172" href="#1172">1172</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1179<a class="l" name="1173" href="#1173">1173</a> 1180<a class="l" name="1174" href="#1174">1174</a> <b>END</b> <span class="c">-- //While loop</span> 1181<a class="l" name="1175" href="#1175">1175</a> <b>RETURN</b> <span class="n">0</span> 1182<a class="l" name="1176" href="#1176">1176</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1183<a class="l" name="1177" href="#1177">1177</a> 1184<a class="l" name="1178" href="#1178">1178</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempInsertUninitializedItem" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempInsertUninitializedItem</a>] 1185<a class="l" name="1179" href="#1179">1179</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 1186<a class="hl" name="1180" href="#1180">1180</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>), 1187<a class="l" name="1181" href="#1181">1181</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b> 1188<a class="l" name="1182" href="#1182">1182</a><b>AS</b> 1189<a class="l" name="1183" href="#1183">1183</a> 1190<a class="l" name="1184" href="#1184">1184</a> <b>DECLARE</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 1191<a class="l" name="1185" href="#1185">1185</a> <b>DECLARE</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> <b>AS</b> <a href="/source/s?defs=datetime" class="intelliWindow-symbol" data-definition-place="undefined-in-file">datetime</a> 1192<a class="l" name="1186" href="#1186">1186</a> 1193<a class="l" name="1187" href="#1187">1187</a> <b>SET</b> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a> = <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>() 1194<a class="l" name="1188" href="#1188">1188</a> <b>SET</b> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a> = <a href="/source/s?defs=GETDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETDATE</a>() 1195<a class="l" name="1189" href="#1189">1189</a> 1196<a class="hl" name="1190" href="#1190">1190</a> <b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1197<a class="l" name="1191" href="#1191">1191</a> 1198<a class="l" name="1192" href="#1192">1192</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1199<a class="l" name="1193" href="#1193">1193</a> <b>BEGIN</b> 1200<a class="l" name="1194" href="#1194">1194</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1201<a class="l" name="1195" href="#1195">1195</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1202<a class="l" name="1196" href="#1196">1196</a> <b>INSERT</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1203<a class="l" name="1197" href="#1197">1197</a> (<a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a>, 1204<a class="l" name="1198" href="#1198">1198</a> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a>, 1205<a class="l" name="1199" href="#1199">1199</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, 1206<a class="hl" name="1200" href="#1200">1200</a> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a>, 1207<a class="l" name="1201" href="#1201">1201</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a>, 1208<a class="l" name="1202" href="#1202">1202</a> <a href="/source/s?defs=LockDate" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDate</a>, 1209<a class="l" name="1203" href="#1203">1203</a> <a href="/source/s?defs=LockDateLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockDateLocal</a>, 1210<a class="l" name="1204" href="#1204">1204</a> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a>, 1211<a class="l" name="1205" href="#1205">1205</a> <a href="/source/s?defs=Flags" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Flags</a>) 1212<a class="l" name="1206" href="#1206">1206</a> <b>VALUES</b> 1213<a class="l" name="1207" href="#1207">1207</a> (@<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a>, 1214<a class="l" name="1208" href="#1208">1208</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a>, 1215<a class="l" name="1209" href="#1209">1209</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 1216<a class="hl" name="1210" href="#1210">1210</a> <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>), 1217<a class="l" name="1211" href="#1211">1211</a> <span class="n">0</span>, 1218<a class="l" name="1212" href="#1212">1212</a> @<a href="/source/s?defs=now" class="intelliWindow-symbol" data-definition-place="undefined-in-file">now</a>, 1219<a class="l" name="1213" href="#1213">1213</a> @<a href="/source/s?defs=nowLocal" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nowLocal</a>, 1220<a class="l" name="1214" href="#1214">1214</a> <span class="n">1</span>, 1221<a class="l" name="1215" href="#1215">1215</a> <span class="n">1</span>) 1222<a class="l" name="1216" href="#1216">1216</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1223<a class="l" name="1217" href="#1217">1217</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1224<a class="l" name="1218" href="#1218">1218</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1225<a class="l" name="1219" href="#1219">1219</a> 1226<a class="hl" name="1220" href="#1220">1220</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1227<a class="l" name="1221" href="#1221">1221</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1228<a class="l" name="1222" href="#1222">1222</a> 1229<a class="l" name="1223" href="#1223">1223</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1230<a class="l" name="1224" href="#1224">1224</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1231<a class="l" name="1225" href="#1225">1225</a> ) 1232<a class="l" name="1226" href="#1226">1226</a> <b>BEGIN</b> 1233<a class="l" name="1227" href="#1227">1227</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1234<a class="l" name="1228" href="#1228">1228</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1235<a class="l" name="1229" href="#1229">1229</a> 1236<a class="hl" name="1230" href="#1230">1230</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1237<a class="l" name="1231" href="#1231">1231</a> <b>END</b> 1238<a class="l" name="1232" href="#1232">1232</a> <b>ELSE</b> 1239<a class="l" name="1233" href="#1233">1233</a> <b>BEGIN</b> 1240<a class="l" name="1234" href="#1234">1234</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1241<a class="l" name="1235" href="#1235">1235</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1242<a class="l" name="1236" href="#1236">1236</a> <b>END</b> 1243<a class="l" name="1237" href="#1237">1237</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1244<a class="l" name="1238" href="#1238">1238</a> 1245<a class="l" name="1239" href="#1239">1239</a> <b>END</b> <span class="c">-- //While loop</span> 1246<a class="hl" name="1240" href="#1240">1240</a> <b>RETURN</b> <span class="n">0</span> 1247<a class="l" name="1241" href="#1241">1241</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1248<a class="l" name="1242" href="#1242">1242</a> 1249<a class="l" name="1243" href="#1243">1243</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempReleaseStateItemExclusive" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempReleaseStateItemExclusive</a>] 1250<a class="l" name="1244" href="#1244">1244</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 1251<a class="l" name="1245" href="#1245">1245</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 1252<a class="l" name="1246" href="#1246">1246</a><b>AS</b> 1253<a class="l" name="1247" href="#1247">1247</a><b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1254<a class="l" name="1248" href="#1248">1248</a> 1255<a class="l" name="1249" href="#1249">1249</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1256<a class="hl" name="1250" href="#1250">1250</a> <b>BEGIN</b> 1257<a class="l" name="1251" href="#1251">1251</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1258<a class="l" name="1252" href="#1252">1252</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1259<a class="l" name="1253" href="#1253">1253</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1260<a class="l" name="1254" href="#1254">1254</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>()), 1261<a class="l" name="1255" href="#1255">1255</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">0</span> 1262<a class="l" name="1256" href="#1256">1256</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <b>AND</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 1263<a class="l" name="1257" href="#1257">1257</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1264<a class="l" name="1258" href="#1258">1258</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1265<a class="l" name="1259" href="#1259">1259</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1266<a class="hl" name="1260" href="#1260">1260</a> 1267<a class="l" name="1261" href="#1261">1261</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1268<a class="l" name="1262" href="#1262">1262</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1269<a class="l" name="1263" href="#1263">1263</a> 1270<a class="l" name="1264" href="#1264">1264</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1271<a class="l" name="1265" href="#1265">1265</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1272<a class="l" name="1266" href="#1266">1266</a> ) 1273<a class="l" name="1267" href="#1267">1267</a> <b>BEGIN</b> 1274<a class="l" name="1268" href="#1268">1268</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1275<a class="l" name="1269" href="#1269">1269</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1276<a class="hl" name="1270" href="#1270">1270</a> 1277<a class="l" name="1271" href="#1271">1271</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1278<a class="l" name="1272" href="#1272">1272</a> <b>END</b> 1279<a class="l" name="1273" href="#1273">1273</a> <b>ELSE</b> 1280<a class="l" name="1274" href="#1274">1274</a> <b>BEGIN</b> 1281<a class="l" name="1275" href="#1275">1275</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1282<a class="l" name="1276" href="#1276">1276</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1283<a class="l" name="1277" href="#1277">1277</a> <b>END</b> 1284<a class="l" name="1278" href="#1278">1278</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1285<a class="l" name="1279" href="#1279">1279</a> 1286<a class="hl" name="1280" href="#1280">1280</a> <b>END</b> <span class="c">-- //While loop</span> 1287<a class="l" name="1281" href="#1281">1281</a> 1288<a class="l" name="1282" href="#1282">1282</a> <b>RETURN</b> <span class="n">0</span> 1289<a class="l" name="1283" href="#1283">1283</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1290<a class="l" name="1284" href="#1284">1284</a> 1291<a class="l" name="1285" href="#1285">1285</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempRemoveStateItem" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempRemoveStateItem</a>] 1292<a class="l" name="1286" href="#1286">1286</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 1293<a class="l" name="1287" href="#1287">1287</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 1294<a class="l" name="1288" href="#1288">1288</a><b>AS</b> 1295<a class="l" name="1289" href="#1289">1289</a> 1296<a class="hl" name="1290" href="#1290">1290</a><b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1297<a class="l" name="1291" href="#1291">1291</a> 1298<a class="l" name="1292" href="#1292">1292</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1299<a class="l" name="1293" href="#1293">1293</a> <b>BEGIN</b> 1300<a class="l" name="1294" href="#1294">1294</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1301<a class="l" name="1295" href="#1295">1295</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1302<a class="l" name="1296" href="#1296">1296</a> <b>DELETE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1303<a class="l" name="1297" href="#1297">1297</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <b>AND</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 1304<a class="l" name="1298" href="#1298">1298</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1305<a class="l" name="1299" href="#1299">1299</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1306<a class="hl" name="1300" href="#1300">1300</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1307<a class="l" name="1301" href="#1301">1301</a> 1308<a class="l" name="1302" href="#1302">1302</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1309<a class="l" name="1303" href="#1303">1303</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1310<a class="l" name="1304" href="#1304">1304</a> 1311<a class="l" name="1305" href="#1305">1305</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1312<a class="l" name="1306" href="#1306">1306</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1313<a class="l" name="1307" href="#1307">1307</a> ) 1314<a class="l" name="1308" href="#1308">1308</a> <b>BEGIN</b> 1315<a class="l" name="1309" href="#1309">1309</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1316<a class="hl" name="1310" href="#1310">1310</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1317<a class="l" name="1311" href="#1311">1311</a> 1318<a class="l" name="1312" href="#1312">1312</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1319<a class="l" name="1313" href="#1313">1313</a> <b>END</b> 1320<a class="l" name="1314" href="#1314">1314</a> <b>ELSE</b> 1321<a class="l" name="1315" href="#1315">1315</a> <b>BEGIN</b> 1322<a class="l" name="1316" href="#1316">1316</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1323<a class="l" name="1317" href="#1317">1317</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1324<a class="l" name="1318" href="#1318">1318</a> <b>END</b> 1325<a class="l" name="1319" href="#1319">1319</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1326<a class="hl" name="1320" href="#1320">1320</a> 1327<a class="l" name="1321" href="#1321">1321</a> <b>END</b> <span class="c">-- //While loop</span> 1328<a class="l" name="1322" href="#1322">1322</a> <b>RETURN</b> <span class="n">0</span> 1329<a class="l" name="1323" href="#1323">1323</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1330<a class="l" name="1324" href="#1324">1324</a> 1331<a class="l" name="1325" href="#1325">1325</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempResetTimeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempResetTimeout</a>] 1332<a class="l" name="1326" href="#1326">1326</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>) 1333<a class="l" name="1327" href="#1327">1327</a><b>AS</b> 1334<a class="l" name="1328" href="#1328">1328</a><b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1335<a class="l" name="1329" href="#1329">1329</a> 1336<a class="hl" name="1330" href="#1330">1330</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1337<a class="l" name="1331" href="#1331">1331</a> <b>BEGIN</b> 1338<a class="l" name="1332" href="#1332">1332</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1339<a class="l" name="1333" href="#1333">1333</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1340<a class="l" name="1334" href="#1334">1334</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1341<a class="l" name="1335" href="#1335">1335</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a>, <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>()) 1342<a class="l" name="1336" href="#1336">1336</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> 1343<a class="l" name="1337" href="#1337">1337</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1344<a class="l" name="1338" href="#1338">1338</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1345<a class="l" name="1339" href="#1339">1339</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1346<a class="hl" name="1340" href="#1340">1340</a> 1347<a class="l" name="1341" href="#1341">1341</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1348<a class="l" name="1342" href="#1342">1342</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1349<a class="l" name="1343" href="#1343">1343</a> 1350<a class="l" name="1344" href="#1344">1344</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1351<a class="l" name="1345" href="#1345">1345</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1352<a class="l" name="1346" href="#1346">1346</a> ) 1353<a class="l" name="1347" href="#1347">1347</a> <b>BEGIN</b> 1354<a class="l" name="1348" href="#1348">1348</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1355<a class="l" name="1349" href="#1349">1349</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1356<a class="hl" name="1350" href="#1350">1350</a> 1357<a class="l" name="1351" href="#1351">1351</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1358<a class="l" name="1352" href="#1352">1352</a> <b>END</b> 1359<a class="l" name="1353" href="#1353">1353</a> <b>ELSE</b> 1360<a class="l" name="1354" href="#1354">1354</a> <b>BEGIN</b> 1361<a class="l" name="1355" href="#1355">1355</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1362<a class="l" name="1356" href="#1356">1356</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1363<a class="l" name="1357" href="#1357">1357</a> <b>END</b> 1364<a class="l" name="1358" href="#1358">1358</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1365<a class="l" name="1359" href="#1359">1359</a> 1366<a class="hl" name="1360" href="#1360">1360</a> <b>END</b> <span class="c">-- //While loop</span> 1367<a class="l" name="1361" href="#1361">1361</a> 1368<a class="l" name="1362" href="#1362">1362</a> <b>RETURN</b> <span class="n">0</span> 1369<a class="l" name="1363" href="#1363">1363</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1370<a class="l" name="1364" href="#1364">1364</a> 1371<a class="l" name="1365" href="#1365">1365</a><b>CREATE</b> <b>PROCEDURE</b> [<a href="/source/s?defs=dbo" class="intelliWindow-symbol" data-definition-place="undefined-in-file">dbo</a>].[<a href="/source/s?defs=TempUpdateStateItemShortNullLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TempUpdateStateItemShortNullLong</a>] 1372<a class="l" name="1366" href="#1366">1366</a> @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <a href="/source/s?defs=nvarchar" class="intelliWindow-symbol" data-definition-place="undefined-in-file">nvarchar</a>(<span class="n">88</span>), 1373<a class="l" name="1367" href="#1367">1367</a> @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a> <b>varbinary</b>(<span class="n">7000</span>), 1374<a class="l" name="1368" href="#1368">1368</a> @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a> <b>int</b>, 1375<a class="l" name="1369" href="#1369">1369</a> @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> <b>int</b> 1376<a class="hl" name="1370" href="#1370">1370</a><b>AS</b> 1377<a class="l" name="1371" href="#1371">1371</a><b>DECLARE</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> <b>INT</b> = <span class="n">10</span>; 1378<a class="l" name="1372" href="#1372">1372</a> 1379<a class="l" name="1373" href="#1373">1373</a> <a href="/source/s?defs=WHILE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WHILE</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span>) 1380<a class="l" name="1374" href="#1374">1374</a> <b>BEGIN</b> 1381<a class="l" name="1375" href="#1375">1375</a> <b>BEGIN</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1382<a class="l" name="1376" href="#1376">1376</a> <b>BEGIN</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1383<a class="l" name="1377" href="#1377">1377</a> <b>UPDATE</b> <a href="/source/s?defs=ASPStateTempSessions" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ASPStateTempSessions</a> 1384<a class="l" name="1378" href="#1378">1378</a> <b>SET</b> <a href="/source/s?defs=Expires" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Expires</a> = <a href="/source/s?defs=DATEADD" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DATEADD</a>(<a href="/source/s?defs=n" class="intelliWindow-symbol" data-definition-place="undefined-in-file">n</a>, @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, <a href="/source/s?defs=GETUTCDATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GETUTCDATE</a>()), 1385<a class="l" name="1379" href="#1379">1379</a> <a href="/source/s?defs=SessionItemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemShort</a> = @<a href="/source/s?defs=itemShort" class="intelliWindow-symbol" data-definition-place="undefined-in-file">itemShort</a>, 1386<a class="hl" name="1380" href="#1380">1380</a> <a href="/source/s?defs=SessionItemLong" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionItemLong</a> = <b>NULL</b>, 1387<a class="l" name="1381" href="#1381">1381</a> <a href="/source/s?defs=Timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Timeout</a> = @<a href="/source/s?defs=timeout" class="intelliWindow-symbol" data-definition-place="undefined-in-file">timeout</a>, 1388<a class="l" name="1382" href="#1382">1382</a> <a href="/source/s?defs=Locked" class="intelliWindow-symbol" data-definition-place="undefined-in-file">Locked</a> = <span class="n">0</span> 1389<a class="l" name="1383" href="#1383">1383</a> <b>WHERE</b> <a href="/source/s?defs=SessionId" class="intelliWindow-symbol" data-definition-place="undefined-in-file">SessionId</a> = @<a href="/source/s?defs=id" class="intelliWindow-symbol" data-definition-place="undefined-in-file">id</a> <b>AND</b> <a href="/source/s?defs=LockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">LockCookie</a> = @<a href="/source/s?defs=lockCookie" class="intelliWindow-symbol" data-definition-place="undefined-in-file">lockCookie</a> 1390<a class="l" name="1384" href="#1384">1384</a> <b>COMMIT</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1391<a class="l" name="1385" href="#1385">1385</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> = <span class="n">0</span>; <span class="c">-- //Stops the loop.</span> 1392<a class="l" name="1386" href="#1386">1386</a> <b>END</b> <a href="/source/s?defs=TRY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRY</a> 1393<a class="l" name="1387" href="#1387">1387</a> 1394<a class="l" name="1388" href="#1388">1388</a> <b>BEGIN</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1395<a class="l" name="1389" href="#1389">1389</a> <b>SET</b> @<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> -= <span class="n">1</span>; 1396<a class="hl" name="1390" href="#1390">1390</a> 1397<a class="l" name="1391" href="#1391">1391</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> (@<a href="/source/s?defs=retry" class="intelliWindow-symbol" data-definition-place="undefined-in-file">retry</a> > <span class="n">0</span> <b>AND</b> 1398<a class="l" name="1392" href="#1392">1392</a> <a href="/source/s?defs=ERROR_NUMBER" class="intelliWindow-symbol" data-definition-place="undefined-in-file">ERROR_NUMBER</a>() <b>in</b> (<span class="n">41302</span>, <span class="n">41305</span>, <span class="n">41325</span>, <span class="n">41301</span>, <span class="n">41839</span>, <span class="n">1205</span>) 1399<a class="l" name="1393" href="#1393">1393</a> ) 1400<a class="l" name="1394" href="#1394">1394</a> <b>BEGIN</b> 1401<a class="l" name="1395" href="#1395">1395</a> <a href="/source/s?defs=IF" class="intelliWindow-symbol" data-definition-place="undefined-in-file">IF</a> <a href="/source/s?defs=XACT_STATE" class="intelliWindow-symbol" data-definition-place="undefined-in-file">XACT_STATE</a>() = <span class="n">-1</span> 1402<a class="l" name="1396" href="#1396">1396</a> <b>ROLLBACK</b> <a href="/source/s?defs=TRANSACTION" class="intelliWindow-symbol" data-definition-place="undefined-in-file">TRANSACTION</a>; 1403<a class="l" name="1397" href="#1397">1397</a> 1404<a class="l" name="1398" href="#1398">1398</a> <a href="/source/s?defs=WAITFOR" class="intelliWindow-symbol" data-definition-place="undefined-in-file">WAITFOR</a> <a href="/source/s?defs=DELAY" class="intelliWindow-symbol" data-definition-place="undefined-in-file">DELAY</a> <span class="s">'00:00:00.001'</span>; 1405<a class="l" name="1399" href="#1399">1399</a> <b>END</b> 1406<a class="hl" name="1400" href="#1400">1400</a> <b>ELSE</b> 1407<a class="l" name="1401" href="#1401">1401</a> <b>BEGIN</b> 1408<a class="l" name="1402" href="#1402">1402</a> <a href="/source/s?defs=PRINT" class="intelliWindow-symbol" data-definition-place="undefined-in-file">PRINT</a> <span class="s">'Suffered an error for which Retry is inappropriate.'</span>; 1409<a class="l" name="1403" href="#1403">1403</a> <a href="/source/s?defs=THROW" class="intelliWindow-symbol" data-definition-place="undefined-in-file">THROW</a>; 1410<a class="l" name="1404" href="#1404">1404</a> <b>END</b> 1411<a class="l" name="1405" href="#1405">1405</a> <b>END</b> <a href="/source/s?defs=CATCH" class="intelliWindow-symbol" data-definition-place="undefined-in-file">CATCH</a> 1412<a class="l" name="1406" href="#1406">1406</a> 1413<a class="l" name="1407" href="#1407">1407</a> <b>END</b> <span class="c">-- //While loop</span> 1414<a class="l" name="1408" href="#1408">1408</a> 1415<a class="l" name="1409" href="#1409">1409</a> <b>RETURN</b> <span class="n">0</span> 1416<a class="hl" name="1410" href="#1410">1410</a><a href="/source/s?defs=GO" class="intelliWindow-symbol" data-definition-place="undefined-in-file">GO</a> 1417<a class="l" name="1411" href="#1411">1411</a><span class="c">/*<a href="http://example.com">http://example.com</a>.*/</span> 1418<a class="l" name="1412" href="#1412">1412</a><span class="c">/* comment /* comment */ 1419<a class="l" name="1413" href="#1413">1413</a>comment 1420<a class="l" name="1414" href="#1414">1414</a>*/</span> 1421<a class="l" name="1415" href="#1415">1415</a></body> 1422</html> 1423