I know YQL can query CSV (comma separated values) format text files.
But often there are text files in just the same simple format but which use a delimiter other than , (comma). Tab-delimited text files are quite common for instance. Next most common seems to be the pipe character |. In my case I'd like to query a file delimited by semicolon ;.
I believe other tools that handle CSV often have options for other delimiters. I'm pretty sure Yahoo Pipes has such an option. What about Yahoo Query Language?
Is there a way to query delimited text files in YQL with a delimiter other than ,?
If not is there a bug or feature request to add support for custom delimiters or a way to add such support myself?
(My use case is the data published by the Unicode consortium which is many flat files delimited by ;. The master file being UnicodeData.txt.)
csvdata table does not support specifying a different delimiter character. – salathe Aug 18 '12 at 10:02