command

SQL, RMAN command.

129 - How to send e-mail by Telnet

This explains how to use Telnet to test Simple Mail Transfer Protocol (SMTP) communication between messaging servers. By default,
SMTP listens on port 25. If you use Telnet on port 25, you can enter the SMTP commands that are used to connect to an SMTP server
and send a message exactly as if your Telnet session was an SMTP messaging server. You can see the success or failure of each
step in the connection and message submission process.

127 - Simple Oracle Backup & Restore

You just need to get a backup created, and you want to take the simpllest approach.

BACKUP :

Command to back up your entire database:

# rman target /
RMAN> backup database;

You should see a list of RMAN message displaying information.

To display information about your backup, use the list backup command as follows :

125 - Delete oracle archivelogs 11g

If you want to delete archivelogs, use these command to delete them in RMAN.

# rman target / nocatalog.

1. 7 days ago

RMAN> delete archivelog until time 'sysdate-7';

2. All archivelogs

RMAN> delete archivelog all;

3. Archivelogs in terms of thread #

Syndicate content