Description:
For many tables I am trying to convert, I am getting the following error:
```
ERROR:`schema`.`table`:SQLGetData: Error 100
```
Is this really an error? Looking at sybase documentation, error 100 means a warning actually:
100
Warning
2001
02000
"Row not found"
You positioned a cursor beyond the beginning or past the end of the query. There is no row at that position.
From: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc00462.1510/conc...
How to repeat:
Running data migration data import from Sybase, for many tables I get errors like this:
```
17:56:00 [INF][ copytable]: --table [schema] [dbo].table `schema` `table` [ID], [col], [Famille_idx], [Source], [AExporter], [IdNosica]
17:56:00 [INF][ copytable]: Connecting to MySQL server at 10.5.46.49:3306 with user root
17:56:00 [INF][ copytable]: Connection to MySQL opened
17:56:00 [INF][ copytable]: Opening ODBC connection to [unknown] 'DSN=sybase_dev;DATABASE=schema;UID=sa;DelimitIdentifier=No;PWD=XXX'
17:56:00 [INF][ copytable]: ODBC connection to 'DSN=sybase_dev;DATABASE=schema;UID=sa;DelimitIdentifier=No;PWD=' opened
17:56:00 [INF][ copytable]: Connecting to MySQL server at 10.5.46.49:3306 with user root
17:56:00 [INF][ copytable]: Connection to MySQL opened
17:56:00 [INF][ copytable]: Opening ODBC connection to [unknown] 'DSN=sybase_dev;DATABASE=schema;UID=sa;DelimitIdentifier=No;PWD=XXX'
BEGIN:`schema`.`table`:Copying 6 columns of 1325 rows from table [schema].[dbo].table
17:56:00 [INF][ copytable]: Truncating table `schema`.`table`
17:56:00 [INF][ copytable]: ODBC connection to 'DSN=sybase_dev;DATABASE=schema;UID=sa;DelimitIdentifier=No;PWD=' opened
17:56:00 [INF][ copytable]: Connecting to MySQL server at 10.5.46.49:3306 with user root
17:56:00 [INF][ copytable]: Connection to MySQL opened
ERROR:`schema`.`table`:SQLGetData: Error 100
ERROR:`schema`.`table`:Failed copying 1325 rows
17:56:00 [INF][ copytable]: Re-enabling triggers for schema 'schema'
17:56:00 [INF][ copytable]: No triggers found for 'schema'
FINISHED
```