Oracle DBMS_METADATA
Built in package to pull out create statements. Can be used to copy a table along with indexes and constraints etc: http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_metada.htm
Built in package to pull out create statements. Can be used to copy a table along with indexes and constraints etc: http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_metada.htm
To enter the ^M character in unix enter the following: Control-V Control-M
find <ROOT_SEARCH_DIR> -name “<WILDCARD_FILNAME>” -mtime <DAYS SINCE LAST MODIFIED> -type f -exec rm -f {} \; e.g: find /home/users/svollett/test_purge -name “FILE_A*.txt” -mtime -1 -type f -exec rm -f {} \;