I just tried to use the SQL function on the text importer for the first time. According to the documentation, you can enter anything that can be processed by Oracle. I had a list of SSNs and wanted to get rid of the '-'. So I typed:
substr(#,1,3)||substr(#,5,2)||substr(#,8,4)
It recognized...