[dbo].[UTCNow2Secs]
(local)
>
mdb
>
Scalar-valued Functions
> dbo.UTCNow2Secs
Properties
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
SQL Script
create
function
UTCNow2Secs
()
returns
integer
as
begin
return
DATEDIFF
(
s
,
'1970-01-01'
,
getUTCDate
());
end
GO
Uses
dbo