tekdudedude
Technical User
- Sep 29, 2007
- 79
Hello,
How can I extend the below SQL so as it will return all string matches for 20080513 and greater. Greater in this case would mean values like: myfile_20080514.bus, myfile_20080515.bus etc.
Thanks,
TD
How can I extend the below SQL so as it will return all string matches for 20080513 and greater. Greater in this case would mean values like: myfile_20080514.bus, myfile_20080515.bus etc.
Code:
SELECT fname FROM V$BACKUP_FILES WHERE fname LIKE '%20080513%.BUS';
Thanks,
TD