in reply to Re: Help with removing dupes from a string with perl
in thread Help with removing dupes from a string with perl
Of course this assumes that you don't have 2 entries with the same name and the same timestamp. It is usually less efficient than selecting back and filtering outside of the database.SELECT t.jobname , t.status , t.timestamp , t.comment FROM your_table t JOIN ( SELECT jobname, MAX(timestamp) as timestamp FROM your_table GROUP BY jobname ) max_timestamp ON max_timestamp.jobname = t.jobname AND max_timestamp.timestamp = t.timestamp
Google tells me that Sybase doesn't yet support the better SQL 2003 solution of analytic queries.
Also a note about your solution. I would strongly recommend ordering on jobname and then timestamp. This will put all of the records for each jobname together, making it easy to figure out which is first and which you should throw. Otherwise you need to keep a potentially large hash of which jobs you've seen. (You skipped that step in your code.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Help with removing dupes from a string with perl (last)
by tye (Sage) on Jul 09, 2009 at 18:48 UTC | |
by tilly (Archbishop) on Jul 10, 2009 at 00:35 UTC | |
by tye (Sage) on Jul 05, 2011 at 22:41 UTC | |
|
Re^3: Help with removing dupes from a string with perl
by mpeppler (Vicar) on Jul 24, 2009 at 18:17 UTC | |
by tilly (Archbishop) on Jul 27, 2009 at 07:20 UTC | |
by mpeppler (Vicar) on Jul 30, 2009 at 06:02 UTC |