Según MSDN, Getdate (), GetUtcDate () y CURRENT_TIMESTAMP devuelven DATETIME. Hice una prueba corta, que confirma que:
CREATE TABLE #t(T DATETIME2(7));
GO
DECLARE @i INT ;
SET @i=1;
WHILE @i<10000 BEGIN ;
INSERT #t VALUES(CURRENT_TIMESTAMP) ;
SET @i=@i+1;
END ;
SELECT DISTINCT t
FROM #t
ORDER BY t ;
---
2013-01-28 13:23:19.4930000
2013-01-28 13:23:19.4970000
2013-01-28 13:23:19.5000000
2013-01-28 13:23:19.5030000
2013-01-28 13:23:19.5070000
2013-01-28 13:23:19.5100000
2013-01-28 13:23:19.5130000
(recorte)
¿Hay una función similar que devuelve DATETIME2 (7)?
sql-server-2008-r2
Alaska
fuente
fuente
SYSUTCDATETIME()
que complementarGETUTCDATE()
.