I´m working on a kubernetes cluster and I have a pod with the container-registry.oracle.com/database/free:23.5.0.0-lite image. I want to export the database, I´ve seen that I´ve to use expdp but when I execute this command:
expdp SYSTEM DUMPFILE=myexp.dmp FULL=y LOG=myexp.log
It returns this:
bash: expdp: command not found
I´ve checked /bin/ directory but there is not any expdp file or directory, so I don´t know how to export it. I´ve also tried with the full version of the image, but the result is the same.
Thank you very much.