Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Capture_Login_Auths

    I also changed your code from ALTER PROCEDURE to CREATE PROCEDURE (and added the IF...DROP 😉 ):

    IF OBJECT_ID ('sp_capture_login_auths') IS NOT NULL

    DROP PROCEDURE sp_capture_login_auths

    GO

    CREATE PROCEDURE [dbo].[sp_capture_login_auths] @user...

  • RE: Capture_Login_Auths

    First of all thanks for this nice peace of code 🙂

    I tried running it on my SQL 2012 and got this error:

    The module 'sp_capture_login_auths' depends on the missing...

Viewing 2 posts - 1 through 2 (of 2 total)