USP_BBNC_GETDATABASECURRENTTIME

Retrieves the current time from the database.

Parameters

Parameter Parameter Type Mode Description
@CURRENTTIME datetime INOUT

Definition

Copy


            create procedure dbo.USP_BBNC_GETDATABASECURRENTTIME(@CURRENTTIME datetime output)
            as
            set nocount on;

            set @CURRENTTIME = getdate();

            return 0;