don't clip web content overflow for printing

Please IE, Please Firefox don't cut the content overflow of a web page that i want to print!
Go to the next page, please!

Maybe i've to say: "Please web designer, set overflow:visible for that element that overflow one page!"
Or set float:none for that floated element
Or set position:relative for that element that has a absolute position

And set display:none for that element that has no value in a print page!!!!!!

Thanks

add policy in oracle db

Do you add a policy in oracle db for simulate a virtual db?
Ok! the dbms_rls.add_policy function do it for you!
Buuuuut, one moment please!
Do you have the two rights?
1) Privilege rights?
2) DB rights (Enterprise Edition)?

The first, you can get it from sys user, executing this grant:
GRANT EXECUTE ON dbms_rls TO YOUR_USER

The second one, you can get it only if you have the right oracle db version. Don't you know if your versione is Enterprise? ok! this is the query for to know the version of your oracle db:
select * from v$version

Uhm! Don't you understand if the db is standard or enterrprise?
OK! the following query can says you if you have the function for add policy:
select * from v$option where parameter like 'Fine%';

if true then
you can add policy
else
YOU CANNOT add policy

if you can't add policy you'll get this error:
ORA-00439:
function not enabled: Fine-grained access control

OK?!