I have an Oracle 10g database, and now I need to export, if possible, only the schema.
(Only table structures with index etc… without data!)
Is this possible with exp/imp or do I need expdp/impdp?
Greets
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is possible with
exp, using parameterROWS=N.10g documentation is here.
Data pump is preferred these days though; the equivalent parameter is
CONTENT=METADATA_ONLY.