Advertisement
JanuszKowalski123

brud tmp

May 14th, 2024
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. SELECT * FROM Renewable_Energy_Devices WHERE device_id = 'Device_3';
  2. -- Transakcja 1
  3. BEGIN TRANSACTION;
  4. UPDATE Renewable_Energy_Devices SET device_status = 1 WHERE device_id = 'Device_3';
  5. -- Czekamy 3 sek.
  6. -- WAITFOR DELAY '00:00:03';
  7. SELECT * FROM Renewable_Energy_Devices WHERE device_id = 'Device_3';
  8. -- Transakcja 2
  9. BEGIN TRANSACTION;
  10. UPDATE Renewable_Energy_Devices
  11. SET device_status = 3
  12. WHERE device_id = 'Device_3';
  13. -- Zatwierdzenie zmian w transakcji 2
  14. COMMIT TRANSACTION;
  15. SELECT * FROM Renewable_Energy_Devices WHERE device_id = 'Device_3';
  16. -- Zakończenie transakcji 1
  17. COMMIT TRANSACTION;
  18. SELECT * FROM Renewable_Energy_Devices WHERE device_id = 'Device_3';
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement