क्या केवल स्थैतिक तालिका के लिए उत्पादन की दुकान के बारे में? पसंद
-- SubProcedure: subProcedureName
---------------------------------
-- Save the value
DELETE lastValue_subProcedureName
INSERT INTO lastValue_subProcedureName (Value)
SELECT @Value
-- Return the value
SELECT @Value
-- Procedure
--------------------------------------------
-- get last value of subProcedureName
SELECT Value FROM lastValue_subProcedureName
यह आदर्श नहीं है, लेकिन यह इतना सरल है और आपको सब कुछ फिर से लिखने की आवश्यकता नहीं है।
अद्यतन : पिछले समाधान समानांतर प्रश्नों (async और multiuser एक्सेसिंग) के साथ अच्छी तरह से काम नहीं करता है इसलिए अब Iam अस्थायी तालिकाओं का उपयोग कर रहा है
-- A local temporary table created in a stored procedure is dropped automatically when the stored procedure is finished.
-- The table can be referenced by any nested stored procedures executed by the stored procedure that created the table.
-- The table cannot be referenced by the process that called the stored procedure that created the table.
IF OBJECT_ID('tempdb..#lastValue_spGetData') IS NULL
CREATE TABLE #lastValue_spGetData (Value INT)
-- trigger stored procedure with special silent parameter
EXEC dbo.spGetData 1 --silent mode parameter
नेस्टेड spGetData
संग्रहीत प्रक्रिया सामग्री
-- Save the output if temporary table exists.
IF OBJECT_ID('tempdb..#lastValue_spGetData') IS NOT NULL
BEGIN
DELETE #lastValue_spGetData
INSERT INTO #lastValue_spGetData(Value)
SELECT Col1 FROM dbo.Table1
END
-- stored procedure return
IF @silentMode = 0
SELECT Col1 FROM dbo.Table1