Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/07/2008, 10:10
Arkhel
 
Fecha de Ingreso: agosto-2006
Mensajes: 34
Antigüedad: 18 años, 4 meses
Puntos: 0
Respuesta: "The conversion..data type to a datetime ..."

declare @FechaVarchar varchar(10), @Fecha datetime
set @FechaVarchar =(select convert(varchar,getdate(),103))

set @Fecha = (select convert(datetime,getdate(),103))


Insert into tabla (fecha) values (@fecha)

asi no importa si esta en ingles o en español (dd/mm/yyyy o mm/dd/yyyy)