SQL Eval Function DateTime_FromBinary
DateTime_FromBinary deserializes a 64-bit binary value and recreates an original serialized DateTime object.
DateTime_FromBinary ( @dateData BIGINT ) RETURNS DATETIME
Parameters
- dateData: A 64-bit signed integer that encodes the
DateTime.Kindproperty in a 2-bit field and theDateTime.Ticksproperty in a 62-bit field.
Returns
An object that is equivalent to the DateTime object that was serialized by the DateTime_ToBinary() method.
Example
DECLARE @var BIGINT SELECT @var = SQLNET::DateTime_ToBinary('2015-5-25') SELECT SQLNET::DateTime_FromBinary(@var)