You can use the YCQL COPY command to load data from a CSV file into a table. The default expected delimiter of […]
Read MoreGet Help on a Specific YSQL Statement
You can get help on specific YSQL (i.e. PostgreSQL) statement with the h <command> meta-command. For example, I want alter add a […]
Read MoreEXPORT TABLE DDL (FROM YSQL)
In YSQL you can display the structure of a table, including indexes and constraints, by issuing the d table_name meta-command. yugabyte=# CREATE […]
Read MoreList Node Status From the Command Line
The yb-admin utility, located in the bin directory of YugabyteDB home, provides a command line interface for administering clusters. Two of its many command options, list_all_masters […]
Read MoreDisable Foreign Key Constraint Checks with COPY
The COPY statement can be used to transfer data between tables and files. COPY TO copies from tables to files. COPY FROM […]
Read More