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

link|improve this question
What do you mean by, "isn't working"? Are you getting an error? Is it returning the wrong data? – Tom H. Jul 13 '11 at 14:41
It is returning all the rows. doesn't seem to be using where clause. – Stasunny Jul 13 '11 at 15:50
Can you include some sample data, including at least one row which you don't think should be returned? Also, the value that you're using for last_extracted_timestamp and/or the surrounding code would be helpful. – Tom H. Jul 13 '11 at 15:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.