Home » RDBMS Server » Backup & Recovery » database backup problem on 10G (xp,Oracle 10g with form6i)
database backup problem on 10G [message #584772] Fri, 17 May 2013 10:04 Go to next message
nmd_group
Messages: 21
Registered: February 2012
Location: Dhaka,Bangladesh
Junior Member
at first i run the following script as sysdba to maintain character set
-----------------------------------------------------------------------

SHUTDOWN IMMEDIATE;
STARTUP MOUNT;
ALTER SYSTEM ENABLE RESTRICTED SESSION;
ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
ALTER SYSTEM SET AQ_TM_PROCESSES=0;
ALTER DATABASE OPEN;
ALTER DATABASE CHARACTER SET INTERNAL_USE WE8ISO8859P1;
SHUTDOWN IMMEDIATE;
STARTUP;
----------------------------------------
then i connect ot my schema and import my database.
while backup using a Form it gives 'Internal Error Data Can Not Exported'. (Button code as below)
if i don't run the above script then no problem ,But i need do run the above script to maintain character set,what to do.
---------------------------------------------------------------------
declare
n number;
f varchar2(50);
us varchar2(50);
ps varchar2(50);
con varchar2(50);
u varchar2(50);
out_file Text_IO.File_Type;
begin
if :control.path is not null and :control.user is not null then
set_application_property(cursor_style,'BUSY');
f:=:control.path;
u:=:control.user;
us:=get_application_property(USERNAME);
ps:=get_application_property(PASSWORD);
con:=get_application_property(CONNECT_STRING);
out_file := Text_IO.Fopen('c:\rab1.txt', 'w');
Text_IO.Put(out_file,'USERID='||us||'/'||ps||'@'||con);
Text_IO.New_Line(out_file);
Text_IO.Put(out_file, 'FILE='||f||'.dmp');
Text_IO.New_Line(out_file);
Text_IO.Put(out_file, 'OWNER='||u);
Text_IO.Put('Processing ends...');
Text_IO.Fclose(OUT_FILE);
host('exp parfile=c:\rab1.txt',no_screen);
if form_success then
set_application_property(cursor_style,'DEFAULT');
set_alert_property('advice',alert_message_text,'Data Successfully Exported');
n:=show_alert('advice');
:CONTROL.PATH:=NULL;
:CONTROL.USER:=NULL;
GO_ITEM('CONTROL.exit');
else
set_application_property(cursor_style,'DEFAULT');
message('Internal Error Data Can Not Exported');
GO_ITEM('CONTROL.PATH');
raise form_trigger_failure;
end if;
else
set_alert_property('advice',alert_message_text,'Please Fillup All Fields');
n:=show_alert('advice');
raise form_trigger_failure;
end if;
end;
  • Attachment: export.fmb
    (Size: 64.00KB, Downloaded 1511 times)
Re: database backup problem on 10G [message #584777 is a reply to message #584772] Fri, 17 May 2013 10:18 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
ALTER DATABASE CHARACTER SET INTERNAL_USE WE8ISO8859P1;


This means you are Oracle employee and so you don't need our help, you have all you want in your entreprise.

Regards
Michel
Re: database backup problem on 10G [message #584778 is a reply to message #584777] Fri, 17 May 2013 10:38 Go to previous messageGo to next message
nmd_group
Messages: 21
Registered: February 2012
Location: Dhaka,Bangladesh
Junior Member
you can think it. But It was not the solution .
Re: database backup problem on 10G [message #584779 is a reply to message #584778] Fri, 17 May 2013 10:42 Go to previous messageGo to next message
Michel Cadot
Messages: 68624
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
You screwed your database, you deserve what you have now.

Regards
Michel
Re: database backup problem on 10G [message #584781 is a reply to message #584779] Fri, 17 May 2013 10:55 Go to previous message
nmd_group
Messages: 21
Registered: February 2012
Location: Dhaka,Bangladesh
Junior Member
after showing this message i close the form, i take the .dmp file. then i import the .dmp into another machine.
i found all data was exported. whats the problem?
Previous Topic: Obsolete backup Not getting delete
Next Topic: What is the data block checksum alrogithm?
Goto Forum:
  


Current Time: Thu Mar 28 06:47:30 CDT 2024