Cita:
Iniciado por flaviovich Intenta usar la funcion getdate() dentro una funcion.
Dios dijo dejate ayudar que te ayudaré...
Hice mi función:
Código PHP:
CREATE FUNCTION Prueba(@Fecha datetime)
RETURNS datetime
AS
BEGIN
RETURN @Fecha
END;
Y luego ejecuté:
select dbo.Prueba(getdate())
Y como resultado obtuve:
2008-05-06 14:10:28.170
Tambien puedo usar el getdate() dentro de la funcion:
Código PHP:
CREATE FUNCTION Prueba()
RETURNS datetime
AS
BEGIN
declare @Fecha datetime
set @Fecha = getdate()
RETURN @Fecha
END;
Y ejecuto:
select dbo.Prueba()
Sin error
Si pusieras tu código y el mensaje de error te harías un bonito favor