Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
[
  {
    "type": "dbTableName",
    "on": "from_table_name",
    "with": "to_table_name"
  },
  {
    "type": "dbPath",
    "on": ["from_path_element"],
    "with": ["to_path_element"]
  },
]


TypeDescription
dbTableName

Replaces the name of the table in the source (on value) with the new table name to use (with value).

dbPath

Replaces the path to the database in the source (on value) with the new path to use (with value).

Info

NOTE: The content of a dataset or output dbPath is an array. The regular expression for on is applied to every element in the dbPath value. Typically, there's only one element in the dbPath array. In some cases, there may be multiple elements, so be careful when specifying the on value.


...