I have been asked to make a backup of type export: full or schema and default, structure and only data in oracle.
I found these example commands to backup database and schema
expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log
expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
What options should I add to make a backup with data and without data?
What is a default backup?