Hi, my source is MariaDB connected via ODBC. I would like to generate SSIS for all tables in the source DB. How should I define connection to get metadata (list of all tables) ? I found a code snippet that works for OleDB :
https://www.mssqltips.com/sqlservertutorial/9094/biml-tutorial-retrieving-metadata-with-getdatabaseschema/.
Is it possible to get metadata via ODBC connection or should I use Ado.NET connector? My BIML code looks like this. I am expecting list of tables on the output but it returns no table: var sourceConnection = SchemaManager.CreateConnectionNode("Source", "Server=sourceserverx.;Port=3306;Database=dwh;Uid=dwh;Pwd=xxx;"); var sourceMetadata = sourceConnection.GetDatabaseSchema(); foreach (var table in sourceMetadata.TableNodes) { }