Hi Team, when I used `table_pattern.allow` to inge...
# troubleshoot
o
Hi Team, when I used
table_pattern.allow
to ingest a specific MSSQL table, only the databse and schema can be ingested not the table. But when I remove
tabel_pattern.allow
, datahub can sucessfully ingest all of tables including the specific one. Is it a bug or I missed something? I am sure the name of table is correct. Thanks!
h
Hi @orange-coat-2879 - I believe
table_pattern
is expected to be a regular expression that matches with qualified table name and not just the table name.You can use wildcard pattern if you don't want to specify exact database/schema in table pattern
o
@hundreds-photographer-13496,thank you so much!!!