create backup view

How To Take Backup Of View In Oracle

A view is a virtual table that is created with the results of a SQL statement. Views can be used to expose only a subset of the data in a table, or to hide the complexity of a SQL statement.

Backup of view is same as backup of table. You can use the same backup methods for tables and views.

There are two ways to create a backup of a view:

1)Using the EXP command

2)Using the SQL command

1)Using …