query_posts( array( 'post__not_in' => get_option( 'sticky_posts' ) ) );
Exclude sticky posts from a category. Return ALL posts within the category, but don't show sticky posts at the top. The 'sticky posts' will still show in their natural position (e.g. by date):
query_posts( 'ignore_sticky_posts=1&posts_per_page=3&cat=6' );