Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.29 KB | None | 0 0
  1. USE [KvebaNabeglaviNew]
  2. GO
  3. /****** Object:  StoredProcedure [dbo].[ClearRecords]    Script Date: 12/13/2018 4:10:58 PM ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8. CREATE PROC [dbo].[ClearRecords]
  9. AS
  10. BEGIN
  11.  
  12.         DELETE FROM dbo.ClockingRecords;
  13.         DELETE FROM dbo.Visits;
  14.  
  15. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement