I have an Oracle dump file (created via expdp), and I want to export it into a DDL file. I understood that for that I need to use the impdp tool with the sqlfile as a parameter. However, it seems to require a running Orcale instance (although I don't want to import it to any DB -- just convert to a DDL).
Is there any way around this?
As far as I can tell, data pump won't work without a running database because both
expdpandimpdpexpectUSERIDas the first parameter.Moreover, if you just invoke
impdpwithout any parameters,usernameis the first one you're prompted for:What to do? Use any database you have available. Don't import anything if you don't want to.