Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQL compatible schema. It connects your Oracle database, scan it automatically and extracts its structure or data, it then generates SQL scripts that you can load into PostgreSQL.
Currently in ora2pg data is extracted with tab separated and if i have values in the desc column of a table emp with a tab then there will be error, instead i want to uniquely separate the columns like ||*| or something like that.
Yes, Ora2Pg use the COPY output format with a tabulation as separator but all tab characters in your data will be escaped into \t so no error should be reported.
Currently in ora2pg data is extracted with tab separated and if i have values in the desc column of a table emp with a tab then there will be error, instead i want to uniquely separate the columns like ||*| or something like that.