There is a stored procedure that will do that for you:
connect to sample;
call SYSPROC.ADMIN_DROP_SCHEMA('DB2INST1',NULL,'ERROR', 'DROP_ERROR');
This assumes that the database is sample and the schema to drop is 'DB2INST1'
There is also a SP to copy one schema name to another:
call SYSPROC.ADMIN_COPY_SCHEMA('DB2INST1','DB2INST2,'CO PY',NULL,NULL,NULL,'ERROR','ADMIN_COPY_ERRORS');
do a DB2 infocenter search for more info on these and other useful SP's.