How did you do the export? 9i export should export any 9i object.
Try running the export as system. Perhaps the functions were dependant on a type. CREATE TYPE is a system priv.
Main Topics
Browse All TopicsI installed oracle version 11g on a new server running win2003
I moved the database euro_a running on 9i to a new database 11g
I am not seeing the object functions in the database on new server.
How can I move all the functions from old version to a new veriosn of oracle that are in the schema eur_trd?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
1. create database link with system user, on destination db to source
CREATE DATABASE LINK TEST1
CONNECT TO SYSTEM
IDENTIFIED BY PWD
USING 'TEST1';
where TEST1 is tns entry in tnsnames.ora looking into source db.
2. on same server, use datapump utility with network link
impdp system network_link=TEST1 directory=DATA_PUMP_DIR SCHEMAS=schema_name logfile=1.log CONTENT=METADATA_ONLY
This will import all functions, procrdures, etc, without table data records
Business Accounts
Answer for Membership
by: ppinonPosted on 2009-10-29 at 07:07:42ID: 25693789
You can use the following statement to export the DDL of your functions.
Then execute the result in the new DB/schema.
Select allOpen in new window