Question: How can I move DB2 objects from one schema to another schema in the same database? When I migrated a database to a new DB2 instance with new logon , I couldn’t access the tables. Answer: What you would really like to do is rename the schema. The ADMIN_COPY_SCHEMA stored procedure manages the process. Under the covers , ADMIN_COPY_SCHEMA is actually copying the objects to the other schema , rather than just renaming the schema. This test example, illustrates the basic steps. There are other more advanced options, check documentation for more details. Read the DB2 user manual for... Read more →