Forum Replies Created

Viewing 6 posts - 1 through 7 (of 7 total)

  • RE: full text and replication

    When i replicate the catlogs are destroyed.

  • RE: group by max date

    i'm an idiiot. i thought i had tried that and in fact  i had but while doing it i screwed up something else.

    Thanks a billion for your help and patience.

    I...

  • RE: group by max date

    when i run this

    Select feature_id feature_text,feature_sequence, publish_startdate

    From homefeatures As f

    Inner Join

      (   -- virtual table

        select  max(publish_startdate) As MostRecent, feature_sequence

        from homefeatures

        group by feature_sequence

      ) vt

    On (vt.feature_sequence =...

  • RE: group by max date

    here's the actual query i'm running

    i goofed to column names in my initial post but its the same deal really

    SELECT feature_id, feature_text, feature_sequence, publish_startdate

    FROM homefeatures A

    WHERE publish_startdate = (SELECT...

  • RE: group by max date

    Sorry for being vague

    Feature sequence is indeed a number from 1 to 4 that controls the order in which my 4 features appear on a homepage.

    the page always has 4...

  • RE: group by max date

    i was hoping to return a dataset with 4 rows one for each feature position.  Do i need to set rowcount?

Viewing 6 posts - 1 through 7 (of 7 total)