You shouldn’t have to even mention “long” to exclude it. Your query will show only those items you want to show.
<?php
query_posts('showposts=1&tag=Quote&orderby=rand');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php echo the_content(); ?>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>