Viewing 3 posts - 1 through 3 (of 3 total)
Another option might be to add triggers to your tables to capture the changes into "temporary" (not necessarily tempdb) tables. This would resolve the issue of the deletes. ...
May 26, 2010 at 12:14 pm
#1172938
select ScenarioID,
dateadd(minute,
(datepart(minute, StartTime) / 30) * 30,
dateadd(hour,
datepart(hour, starttime),
convert(datetime, convert(varchar, StartTime, 1)))),
...
May 26, 2010 at 11:27 am
#1172913
select * from person where exists
(select * from vehicle where vehicle.personid = person.personid and vehicle in (05, 10, 15))
and not exists...
May 24, 2010 at 10:54 am
#1171675