Command line

Applies to: Dataedo 23.x (current) versions, Article available also for: 10.x

Dataedo includes a feature to update or export documentation from command line. To do so, you must first create a command file.

Command file

You can create a command file through clicking either Save export command on Export documentation window (click Export in the ribbon) or Save import command on Update documentation window (click Import changes in the ribbon).

Dataedo command files are XML based and can be read and edited with any text editor. Command files have a .dataedocmd extension.

The file is divided in two main parts - Settings, which contains log file path, and Commands, which contains the actual operation to be executed - currently either export or update commands.

Export command file

This file will export your documentation to PDF, HTML or Excel.

Generating file

To create an export command file, click Save export command on Export documentation window.

File structure

Settings > LogFile > Path node specifies the path and name of the log of the operation. If path is not specified, it will be placed in the same folder as a command file. If no filename is specified, log will be placed in %USERPROFILES%\Documents\Dataedo\Logs\log YYYY-MM-DD HHmmSS.log.

Commands > Export > Overwrite specifies whether the output file should be replaced if it already exists. If set to false, the file will be instead saved with a new name, with added date.

Commands > Export > OutputPath node specifies the path and name of the output file (or folder if exporting HTML documentation). If no path is specified, the output file will be created in the same folder as the command file. If no filename is specified, the export will fail.

Example structure of an export command file is:

<?xml version="1.0"?>
<DataedoCommands xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.0">
  <!-- Visit https://dataedo.com/docs/run-dataedo-from-command-line for more information about Dataedo command line scripts. -->
  <Settings>
    <LogFile>
      <Path>Dataedo Export AdventureWorks documentation {DateTime:yyyy-MM-dd}.log</Path>
      <!-- <Path>{MyDocuments}\Dataedo\Logs\Dataedo Export AdventureWorks documentation {DateTime:yyyy-MM-dd}.log</Path> -->
    </LogFile>
  </Settings>
  <Commands>
    <Export IsEnabled="true">
      <!-- Repository connection -->
      <SqlServerRepository>
        <Timeout xsi:nil="true" />
        <Host>hermes</Host>
        <Database>dataedo</Database>
        <AuthenticationType>WINDOWS_AUTHENTICATION</AuthenticationType>
      </SqlServerRepository>
      <!-- Documentation: AdventureWorks -->
      <RepositoryDocumentationId>2</RepositoryDocumentationId>
      <!-- Change to 'true' if you want the file to be overwritten if already exists -->
      <Overwrite>false</Overwrite>
      <!-- Output format (PDF/HTML/Excel) -->
      <Format>PDF</Format>
      <TemplatePath>Detailed documentation.zip</TemplatePath>
      <!-- List of modules to export -->
      <!-- Set 'ExportNotSpecified' attribute to 'true' to export all objects that are not specified in list. -->
      <Modules ExportNotSpecified="false">
        <Module Export="true">
          <!-- Business Entities -->
          <Id>82</Id>
        </Module>
        <Module Export="true">
          <!-- People -->
          <Id>8</Id>
        </Module>
        <Module Export="true">
          <!-- Human Resources -->
          <Id>9</Id>
        </Module>
        <Other Export="false">
          <!-- Other -->
        </Other>
      </Modules>
      <!-- Object types to export -->
      <ObjectTypes>
        <Tables Export="true">
          <Dependencies Export="true" />
          <Relations Export="true" />
          <Keys Export="true" />
          <Triggers Export="true" />
        </Tables>
        <Views Export="true">
          <Dependencies Export="true" />
          <Relations Export="true" />
          <Keys Export="true" />
        </Views>
        <Procedures Export="true">
          <Dependencies Export="true" />
        </Procedures>
        <Functions Export="true">
          <Dependencies Export="true" />
        </Functions>
      </ObjectTypes>
      <OutputPath>C:\Users\Dataedo\Documents\Dataedo\AdventureWorks.pdf</OutputPath>
      <!-- <OutputPath>C:\Users\Dataedo\Documents\Dataedo\AdventureWorks.pdf</OutputPath> -->
    </Export>
  </Commands>
</DataedoCommands>

Update command file

This file will update your documentation from the source database.

Generating file

To create an update command file, click Save import command on Update documentation window.

File structure

Settings > LogFile > Path node specifies the path and name of the log of the operation. If path is not specified, it will be placed in the same folder as command file. If no filename is specified, log will be placed in %USERPROFILES%\Documents\Dataedo\Logs\log YYYY-MM-DD HHmmSS.log.

Commands > Import > SqlServerCeRepository > Path node specifies the path of Dataedo repository file, which will have the documentation updated.

Commands > Import > SqlServerRepository > Host node specifies the host address of Dataedo repository, which will have the documentation updated.

Commands > Import > SqlServerRepository > Database node specifies the Dataedo repository database, which will have the documentation updated.

Commands > Import > MySQLSourceDatabase node specifies the MySQL source database server, from which metadata will be imported.

Commands > Import > SqlServerSourceDatabase node specifies the SQL Server source database server, from which metadata will be imported.

Commands > Import > OracleSourceDatabase node specifies the Oracle source database server, from which metadata will be imported.

Example structure of an import command file is:

<?xml version="1.0"?>
<DataedoCommands xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.0">
  <!-- Visit https://dataedo.com/docs/run-dataedo-from-command-line for more information about Dataedo command line scripts. -->
  <Settings>
    <LogFile>
      <Path>Dataedo Import from AdventureWorks {DateTime:yyyy-MM-dd}.log</Path>
    </LogFile>
  </Settings>
  <Commands>
    <Import IsEnabled="true">
      <!-- Repository connection -->
      <SqlServerRepository>
        <Timeout xsi:nil="true" />
        <Host>hermes</Host>
        <Database>dataedo</Database>
        <AuthenticationType>WINDOWS_AUTHENTICATION</AuthenticationType>
      </SqlServerRepository>
      <!-- Updated documentation: AdventureWorks -->
      <RepositoryDocumentationId xsi:nil="true" />
      <FullReimport>false</FullReimport>
      <!-- Database connection -->
      <SqlServerSourceDatabase>
        <Timeout>120</Timeout>
        <Host>hermes</Host>
        <Database>AdventureWorks</Database>
        <AuthenticationType>WINDOWS_AUTHENTICATION</AuthenticationType>
      </SqlServerSourceDatabase>
      <FilterRules>
        <Rule>
          <RuleType>Include</RuleType>
          <ObjectType>Any</ObjectType>
          <Schema />
          <Name />
        </Rule>
      </FilterRules>
    </Import>
  </Commands>
</DataedoCommands>

Variables in paths or filenames

There are few special strings which will be replaced by Dataedo if put in Path or OutputPath node.

{DateTime:yyyy-MM-dd} will be replaced by current date.

{DateTime:yyyy-MM-dd hhmmss} will be replaced by current date and time.

{MyDocuments} will be replaced by Dataedo directory in user's My documents folder.

Executing a command

Executing from command line

To execute a command file, open command line (cmd) and type in: "[Dataedo executable path and filename]" /dataedocmd "[Dataedo command file path and filename]".

For instance: "C:\Program Files (x86)\Dataedo 7\Dataedo7.exe" /dataedocmd "C:\DataedoCmd\MyUpdate.dataedocmd"

You can also place the same line in a batch file.

Executing from Explorer

You can also immediately run the command through double clicking on it. This requires which will be associated with Dataedo if it was installed (not just unzipped) on your machine.

Exit code

After completing the operation Dataedo returns an exit code. You can check it by typing echo Exit code: %errorlevel%. You can also use %errorlevel% variable in your batch file.

Possible exit codes:

  • 0 - operation finished successfully
  • 1 or more - count of commands that failed
  • -1 - unexpected error, check the log file
  • -2 - command file does not exist
  • -3 - invalid command file.

Log file

Executing a command creates a log file in the specified path. If you don't see a log file after executing the command, either it's path or filename was invalid or you do not have write access to it. In this case, it will be placed in %USERPROFILE%\Documents\Dataedo\Logs\log YYYY-MM-DD HHmmSS.log.

Scheduling

You can create a task in Windows Scheduler which will automatically execute your Dataedo command file according to set schedule.

  1. Open Windows Scheduler
  2. Click Create a task in the Actions tab
  3. Set the General tab and Triggers tab as you like
  4. Click New in the Actions tab
  5. Set the File/script box to the Dataedo executable location
  6. Type in /dataedocmd followed by the path and filename of your Dataedo command file in double quotes in the Arguments box
  7. Confirm the changes

This way your command file will be executed according tio schedule.

Found issue with this article? Comment below
Comments are only visible when the visitor has consented to statistics cookies. To see and add comments please accept statistics cookies.
0
There are no comments. Click here to write the first comment.