Oui, j'ai besoin d'une solution
Hello everybody,
does anybody have experience with Scanning Informix DB using JDBC connector in Symantec DLP 15 ? I know although it is not officially supported , still we manage to connect to database and read tables, but after that i guess it is time for row selector query and we get syntax errors for each table.
This is content of SQLcrawler file:
# IBM Informix
driver_class.informix-sqli = com.informix.jdbc.IfxDriver
driver_subprotocol.informix-sqli = informix-sqli
driver_table_query.informix-sqli = SELECT TRIM(owner) || '.' || tabname FROM systables WHERE tabid > 99 AND tabtype = 'T';
driver_row_selector.informix-sqli = SELECT first {2} {1} from {0}
driver_jar.informix-sqli = ifxjdbc.jar
quote_table_names.informix-sqli = true
This is sample of errors we get:
error: Unable to extract the data from table: informix.anastavka: A syntax error has occurred.."
error: Unable to extract the data from table: informix.blokadaknjizenja: A syntax error has occurred.."
etc...
This is example of connection string:
informix-sqli://server:1525/database:INFORMIXSERVER=server;DB_LOCALE=cs_cz.CP1250;CLIENT_LOCALE=cs_cz.CP1250
Thank you in advanced.