Scalar-valued Functions [dbo].[CURRENTUTCSECS]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
SQL Script
CREATE FUNCTION [dbo].[CURRENTUTCSECS]
(
)

RETURNS float(53)
AS
    
   
   /*
   *   Generated by SQL Server Migration Assistant for Oracle.
   *   Contact ora2sql@microsoft.com or visit http://www.microsoft.com/sql/migration for more information.
   */

   BEGIN
         return DATEDIFF(ss, convert(datetime,'01-01-1970'),CAST(getutcdate()As datetime))
   END
GO
Uses
Used By