Shows zero or more comparesets, which includes the database connection profile, the tables that are compared, and the column mappings.
show compareset [compareset_name[columns]]
show compareset cust_orders go
TYPE CONNECTION OWNER TABLE WHERE CONSTRAINT ---- ---------- ----- ------------ ---------------- S conn_prod dbo cust_orders T conn_bak1 dbo cust_orders T conn_bak2 dbo cust_orders (0 rows affected)
show compareset go
NAME DESCRIPTION ---- ----------- cust The customer tables. cust_orders The customer orders tables.
show compareset cust_orders columns go
TYPE CONN TABLE MAP_ID COL_NAME COL_TYPE P_KEY ---- --------- ----------- ------ ---------- ----------- ----- S conn_prod cust_orders 1 id numeric(11) Y T conn_bak1 cust_orders 1 id numeric(11) Y T conn_bak2 cust_orders 1 id numeric(11) Y S conn_prod cust_orders 2 cust_id numeric(9) N T conn_bak1 cust_orders 2 cust_id numeric(9) N T conn_bak2 cust_orders 2 cust_id numeric(9) N S conn_prod cust_orders 3 sku varchar(50) N T conn_bak1 cust_orders 3 sku varchar(50) N T conn_bak2 cust_orders 3 sku varchar(50) N S conn_prod cust_orders 4 date datetime N T conn_bak1 cust_orders 4 date datetime N T conn_bak2 cust_orders 4 date datetime N