Retrieves a preview set of rows in given partition.
Supports noop? false
Parameters
database_name(Optional[String[1]])
— The name of the database containing the partition.
partition_name(Optional[String[1]])
— The name of the table partition.
max_rows(Optional[String[1]])
— The maximum number of preview rows to be retrieved.Rows returned may be less than or equal to this number depending on row sizes and number of rows in the partition.
max_columns(Optional[String[1]])
— The maximum number of columns to be retrieved.
api_version(Optional[String[1]])
— Client Api Version.
schema_name(Optional[String[1]])
— The name of the schema containing the partition.
table_name(Optional[String[1]])
— The name of the table containing the partition.
schema(Optional[String[1]])
— the schema of the table or partition.
totalrowcount(Optional[String[1]])
— the total number of rows in the table or partition.
totalcolumncount(Optional[String[1]])
— the total number of columns in the table or partition.
rows(Optional[String[1]])
— the rows of the table or partition preview, where each row is an array of string representations the row's values. Note: Byte arrays will appear as base-64 encoded values, SqlMap and SqlArray objects will appear as escaped JSON objects, and DateTime objects will appear as ISO formatted UTC date-times.
truncated(Optional[String[1]])
— true if the amount of data in the response is less than expected due to the preview operation's size limitations. This can occur if the requested rows or row counts are too large.