The document proposes algorithms to efficiently find "skyline groups" from a database. A skyline group is a subset of k tuples from the database that is not dominated by any other k-tuple combination based on aggregate functions like sum, min, or max. The document presents two algorithms:
1) Order Specific Method (OSM) which leverages the property that if a k-tuple is skyline, one of its (k-1)-tuple subsets must also be skyline to prune the search space.
2) Weak Candidate Method (WCM) which leverages a weaker property for pruning when finding skyline groups under min and max aggregates.
Both algorithms significantly reduce the search space compared to a