Hello!
I have a problem with my MS SQL Shadowing (for example Build RDB Data).
I have installed ODBC Driver 17 for SQL Server on my Ubuntu 17.04. When I start HW_RDB server I get in log file success connection to MS SQL Server:
2018-04-20 13:42:54 ODBC INIT SQLTCHAR: 1
2018-04-20 13:42:55 Connected to relational database
But when I try to build RDB Data I get in log:
2018-04-20 13:43:38 SA Error building RDB Data
Sql user permission is fine because I can connect to sql via isql command and can create a table manually:
SQL> USE HW
[01000][Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Changed database context to 'HW'.
[ISQL]INFO: SQLExecute returned SQL_SUCCESS_WITH_INFO
SQLRowCount returns 0
SQL> CREATE TABLE dbo.TEST (TESTID int PRIMARY KEY NOT NULL)
SQLRowCount returns 0
SQL> quit
Please, help me solve this problem