I have an oracle 12 docker container where i executed the command "impdp" from docker exec command to import data, but it fails. The error says:
UDI-01089: operation generated ORACLE error 1089
ORA-01089: immediate shutdown or close in progress - no operations are permitted
Command:
docker exec --tty <container_name> /bin/bash -c 'impdp <arguments>'
I can see the import was started, but somehow it was interrupted and above error was thrown. Any idea ?