diff --git a/docs/appbase/import.md b/docs/appbase/import.md index 78353d4347b805a1e9a6e919efbd03b5702aa7e2..41f4a20ea354cbb86c24597d65af3d85ec3ca5a4 100644 --- a/docs/appbase/import.md +++ b/docs/appbase/import.md @@ -19,7 +19,7 @@ At the time of writing, the list of parameters supported looks like - --config= Path to external config file, if specified, only that is used --log.level="info" Only log messages with the given severity or above. Valid levels: [debug, info, error] --replication_slot=standby_replication_slot [postgres] replication slot to use ---src_filter=.* Namespace filter for source +--src_filter=.* Namespace filter for source, accepts a regex --src_type=postgres type of source database --src_uri=http://user:pass@host:port/db url of source database --src_username="username" username for source connection @@ -34,6 +34,8 @@ At the time of writing, the list of parameters supported looks like - Note that you only need to set the parameters that are required for the source database type. For example, you don't set `replication_slot` when taking CSV as the source. +**Note** - `--src_filter` switch can be used as a namespace filter for source and accepts a regex. For e.g., if you want to filter one or more tables from a collection, you can specify them as `--src_filter="table1|table2|table3"` + **Note** - Help for [transform_file](../importer/transform_file.md) is available here.