Tags: database

How do I expire, delete tapes from the database?

Veritas Send feedback »
First you need to make sure that there are no valid images on the tape that you want. NetBackup\bin\admincmd\bpimmedia -mediaid <TapeNumber> -L If there are no images that you need, expire the tape: NetBackup\bin\admincmd\bpexpdate -m <Ta… more »

What is the Object Database in AIX?

Aix Send feedback »
AIX stores most of the system management information in /etc/objrepos, /usr/lib/objrepos, and /usr/share/lib/objrepos. Files (also referred to as system object classes) in these directories are adminstered by the Object Database Manager, ODM, which is a… more »

Oracle: Usefull Commands

Technology, Oracle Send feedback »
1.EXPORT: exp system@test owner=test123 file=d:\oracle\user.dmp log=d:\oracle\userdump.log rows=y statistics=none feedback=100 indexes=y consistent=y compress=n; (for individual tables=table1,table2,.....) 2.IMPORT: imp system@test fromu… more »

Oracle: How to Export / Import Database Schema

Technology, Oracle Send feedback »
1. EXPORT: exp system@test owner=test123 file=d:\oracle\user.dmp log=d:\oracle\userdump.log rows=y statistics=none feedback=100 indexes=y consistent=y compress=n; (for individual tables=table1,table2,.....) 2. IMPORT: imp system@test fro… more »