Yesterday, I was export the database for backup mode, Coz the database not in archived log mode, so export was the solved. I used this in HP-UX
Note:
1. Change ‘TABLE’ with your table and ‘SEPT’ with your partition table name.
2. Change ‘SCHEMA’ with your shema where table place.
3. Change ‘compress’ with your ‘compress’ tool, like (g)un(zip), etc.
DECLARE
vname LONG := NULL;
vtable_name VARCHAR2 (50) := 'TABLE';
BEGIN
FOR i IN (SELECT table_name, partition_name
FROM dba_tab_partitions
WHERE table_owner NOT IN ('SYS', 'SYSTEM')
AND table_name = vtable_name
AND partition_name NOT LIKE '%06%'
AND partition_name LIKE '%SEPT%')
LOOP
vname :=
'exp "''/ as sysdba''" buffer=50000000 file='
|| vtable_name
|| '-'
|| i.partition_name
|| ' tables=SCHEMA.'
|| vtable_name
|| ':'
|| i.partition_name
|| ' statistics=none log='
|| vtable_name
|| '-'
|| i.partition_name
|| '.log
compress -v '
|| vtable_name
|| '-'
|| i.partition_name
|| '.dmp';
DBMS_OUTPUT.PUT_LINE (vname);
END LOOP;
END;
You Should Also Check Out This Post:
- System Administrator Appreciation Day
- Troubleshooting for startup inconsistent DB
- Linux System information
- set hostname without reboot
- ssh[23593]: [ID 530472 user.error] Kerberos mechanism library initialization error:


An ordinary people, participants, contributor who share their own experiences, their knowledge, their informations, task, a few tips and tricks, their problem with solving tools..
No User Responded In This Article
Leave Your Comment Below