Filtering table names that start with MLOG

Completed

I haven't had much success filtering table names in our schemas that start with MLOG$...

I tried a negative lookahead regex in the object filer and it didn't work. I included my object filter which is not working.

table:^(?!MLOG).* || view:*

Any ideas?

Thanks,

Grant

0
2 comments

I tried deleting my data source and defining the object filter prior to importing the schema and that actually worked. I thought after modifying the object filter and synchronizing it would update the tree but it didn't. Is that a limitation or unexpected behavior? I also tried deselecting the schema and adding it back with the same result as synchronizing.

Thanks,

Grant

0

@Grant Lewis,

If you want to show only tables that start from MLOG$

table:^MLOG\$.*

If you want to filter'em out:

table:-^MLOG\$.*

 

2

Please sign in to leave a comment.