We can display a list of tables and their UUID (table_id) values by opening the YB-Master UI (<master_host>:7000/) and then clicking Tables in the navigation bar. […]
Read MoreWe can display a list of tables and their UUID (table_id) values by opening the YB-Master UI (<master_host>:7000/) and then clicking Tables in the navigation bar. […]
Read MoreIn YSQL you can display the structure of a table, including indexes and constraints, by issuing the d table_name meta-command. yugabyte=# CREATE […]
Read MoreAs we learned in several earlier tips, we can create a random integer and a random string in YugabyteDB quite easily. But […]
Read MoreWhenever you are populating table columns with dummy data you’ll probably need to generate some random strings. This is very easy in […]
Read MoreIn YSQL there is the familiar built-in function named RANDOM which generates a random value between 0 (inclusive) and 1 (exclusive). Although […]
Read More