I want to pull delta rows from a sybase table based on last_modified_date.
Problem is last_modified_dt is in the form of epoch time(unix time) which looks like
eg 1310544803 INT datatype
The below sql isnt working.
select * from sybasetable where
dateadd(ss,last_modified_dt,'jan 1 1970') > last_extracted_timestamp
last_extracted_timestamp is a hard coded value
last_extracted_timestampand/or the surrounding code would be helpful. – Tom H. Jul 13 '11 at 15:57