Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

टी-एसक्यूएल रोलबैक नहीं कर सका

मुझे लगता है कि डीडीएल त्रुटि गंभीरता प्रबंधन के साथ एसक्यूएल सर्वर उपचार के बारे में आप कुछ भी नहीं कर सकते हैं, इसमें से कुछ एसक्यूएल सर्वर द्वारा स्वचालित रूप से (उदाहरण के लिए जबरन वापस लेनदेन) संभाले जाते हैं।

आप बस इतना कर सकते हैं कि अपने स्क्रिप्ट कोड को इसके चारों ओर सामना करें और स्क्रिप्ट उपयोगकर्ताओं को वर्णनात्मक त्रुटि प्रदान करें।

एक उदाहरण:

--  drop table thetransformersmorethanmeetstheeye
--  select * from thetransformersmorethanmeetstheeye



--  first batch begins here         

    begin tran

    create table thetransformersmorethanmeetstheeye(i int); -- non-erring if not yet existing

    -- even there's an error here, @@ERROR will be 0 on next batch
    ALTER TABLE [dbo].[Table1]  WITH CHECK ADD  CONSTRAINT [FK_constraint] FOREIGN KEY([field1], [field2])
    REFERENCES [dbo].[Table2] ([field3], [field4]);             

go  -- first batch ends here



--  second batch begins here

    if @@TRANCOUNT > 0 begin        
        PRINT 'I have a control here if things needed be committed or rolled back';

        -- @@ERROR is always zero here, even there's an error before the GO batch. 
        -- @@ERROR cannot span two batches, it's always gets reset to zero on next batch
        PRINT @@ERROR; 


        -- But you can choose whether to COMMIT or ROLLBACK non-erring things here
        -- COMMIT TRAN;
        -- ROLLBACK TRAN;

    end
    else if @@TRANCOUNT = 0 begin
        PRINT 'Sql Server automatically rollback the transaction. Nothing can do about it';
    end
    else begin
        PRINT 'Anomaly occured, @@TRANCOUNT cannot be -1, report this to Microsoft!';
    end

--  second batch implicitly ends here   


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL सर्वर की दिनांक, समय और डेटाटाइमऑफ़सेट के लिए समतुल्य C# डेटा प्रकार क्या हैं?

  2. ओडीबीसी SQLCommand अभिव्यक्ति में एसएसआईएस चर कैसे पास करें?

  3. SQL सर्वर में सर्वर ट्रिगर इवेंट की सूची लौटाएं

  4. SqlServer2008 संग्रहीत कार्यविधि में चर पैरामीटर सूचियों को पारित करने के लिए समझदार/तेज़ विधि

  5. चुनिंदा स्टेटमेंट का उपयोग करके कई पंक्तियों को अपडेट करें