Tabli - Data Print command

Undraw Windows

About

data print is a command that prints the whole content of a resource.

This command is useful to print content of data resource that have a small size. If your data resource is to big to be printed, you can use:

  • the head command to print the first content of a data resource
  • the tail command to print the last content of a data resource

Syntax

tabli data print -h
Tabli data print
================

Print the content of data resources.

This command will print all data.
To print in a limited fashion, you can use the following commands:
 * `head` :  print the head (the first pieces of content)
 * `tail` :  print the tail (the last pieces of content)



Examples
--------

 1 - Show all the records of the table `sales` from the data store `sqlite`:


    tabli data print sales@sqlite


 2 - Show the content of the file `request.log`:


    tabli data print request.log




Syntax
------


    tabli data print [options|flags] <data-selector...>


where:


  Arguments:

    <data-selector...>                                      One or more data or script selectors


  Data Definition Options:

    -a,--attribute <attributeName=value>                    Set specific data resource attributes


  Selection Options:

    -wd,--with-dependencies                                 If set, the dependencies will be also selected


  Global Options:

    -cf,--conf <path>                                       The path to a configuration file

    -cv,--connection-vault <path>                           The path where the connection vault is located

    -h,--help                                               Print this help

    -l,--log-level <error|warning|tip|info|fine>            Set the log level

    -ns,--not-strict                                        A minor error will not stop the process.

    -odu,--output-data-uri <outputDataUri>                  defines the output data uri for the feedback data (default: console)

    -oo,--output-operation <dataOperation>                  defines the data operations (replace, truncate) on an existing output resource before transfer.

    -oop,--output-transfer-operation <transferOperation>    defines the output transfer operation (insert, update, merge, copy). Default to `copy` for a file system and `insert` for a database.

    -pp,--passphrase <passphrase>                           A passphrase (master password) to decrypt the encrypted values




Related HowTo
Undraw Windows
Learning Tabulify - Step 5 - How to print Data Resources

In the previous page, we learned how to select data resources. This page will show you how to discover their content. Tabulify offers three command to explore the data content: print: to print the...
Undraw Windows
Learning Tabulify - Step 7 - How to execute a Query

For Tabulify, a query is a script that when executed returns a content resource. In the case of a Sql Query (ie a SELECT statement), the result is a data set in tabular format. The selector of a query...
Undraw Windows
Learning Tabulify - Step 8 - How to modify the content of a table

Tabulify learning guidetransfer step The transfer page should have made you familiar with the transfer concept where we have introduced the copy operation. The copy and move operation does not modify...

Task Runner