Error message after the backup process is complete [message #683264] |
Mon, 21 December 2020 08:46 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/72ddce47b30a4cc27b522a8eb5f3c5f5?s=64&d=mm&r=g) |
alhakimy
Messages: 56 Registered: December 2016
|
Member |
|
|
I use dump for backup and recovery
Backup is done well But
When the process is completed I see this message
I'm suffering problem that I am making the backup copy from the client not from the server
And when I make a backup, I have to go to the server and click on this message to close it and return to my office
I use this code
declare
begin
host ('cmd.exe /c expdp scott/tiger DIRECTORY=alhakimy_expdp DUMPFILE='||:TEXT_ITEM7||'.dmp LOGFILE='||:TEXT_ITEM7||'.log SCHEMAS=alhakimy');
end;
-
Attachment: exp.jpg
(Size: 67.85KB, Downloaded 1720 times)
[Updated on: Mon, 21 December 2020 08:52] Report message to a moderator
|
|
|
Re: Error message after the backup process is complete [message #683266 is a reply to message #683264] |
Mon, 21 December 2020 09:53 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](/forum/images/custom_avatars/102589.gif) |
Michel Cadot
Messages: 68733 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
You cannot use a 10.1 data pump client (expdp) against a 11.2 data pump server.
Note that you have NOT a database backup.
Data Pump is NOT a database backup tool.
The first line of your client version documentation states:
Quote:Oracle Data Pump technology enables very high-speed movement of data and metadata from one database to another.
Nowhere in the Data Pump part of this documentation the word "backup" (or "restore") is mentioned.
[Updated on: Mon, 21 December 2020 09:59] Report message to a moderator
|
|
|
|
|
|
|
|
|
|