Does the following ode help you out?
declare @IntDate bigint,
@CharDate varchar(32);
set @IntDate = 20100224184500;
set @CharDate = CAST(@IntDate as varchar(32));
select @IntDate, @CharDate, cast(stuff(stuff(stuff(@CharDate,13,0,':'),11,0,':'),9,0,' ') as datetime);