Versions Compared

Key

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

...

Code Block
languagepy
class Extractor(username: str = None, password: str = None, \
  server: str = None, driver: str = None, logging_database: str = None, \
  mapping: dict = {}, output_path: str = './output', mask: bool = False, \
  compress: bool = False, uses_ssisdb: bool = False, meta_only: bool = False) -> None

username: username to sign into sqlserver
password: password to sign into sqlserver
server: sqlserver host
driver: sqlserver driver name
logging_database: Logging Database name for SSIS
mapping: Dict of DNS to database and hostnames
output_path: full or relative path to where the outputs should go
input_path: full or relative path to where the dstx files should be
mask: To mask the META/DATABASE_LOG files or not
compress: To gzip output files or not
uses_ssisdb: Are packages published to ssisdb or msdb?
meta_only: Option to extract metadata only

...