Fulltext results:
- Oracle: Recovery Manager
- </code> ===== Delete Archive Logs ===== Delete all archive logs but keep the last 45 days: <code sql> DELETE ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE -45'; </code> To remo... ackup run: <code sql> DELETE NOPROMPT ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE -45'; </code> A sample script could be (deleting all logs except the last three days): <code bash> #
- Oracle: List Accounts with Objects
- racle: List Accounts with Objects ====== To list all accounts (users) the objects (like tables), you ... ECTS ORDER BY OWNER; </code> If you want to list all accounts, you can query them with: <code sql> SELECT USERNAME FROM ALL_USERS ORDER BY USERNAME; </code> Or, if you onl
- Oracle: Resize Instance
- nge the [[spfile_and_pfiles|SPFile]]: <code sql> ALTER SYSTEM SET pga_aggregate_target = 2G SCOPE=SPFILE; ALTER SYSTEM SET sga_target = 6G SCOPE=SPFILE; </cod
- Oracle: EXP
- ====== Oracle: EXP ====== ===== Export all Objects from an Account ===== Enter the account name inst
- Oracle: SPFile and PFiles
- it param in memory and in the SPFile. <code sql> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=8G SCOPE