RESTRICTIVE parameter makes a database more secure
There is a new option with the CREATE DATABASE command that
allows users NOT to automatically grant the select privilege on certain
objects to public. This can be done using the RESTRICTIVE parameter. For example:
db2 create db testdb restrictive
Using the new RESTRICTIVE parameter should make a database more secure and remove the need to issue the revoke from PUBLIC commands.