class User < ActiveRecord::Base
default_scope :hibernate => false
end
# get all non-hibernating users
@users = User.all
# get all users, not just non-hibernating (break out of default scope)
@users = User.with_exclusive_scope { find(:all) } #=> "SELECT * FROM `users`