可以创建在任何表上的索引: Unique Index:An index that ensures that the value in a particular column or set of columns is unique. Primary index:A unique index on the primary key of the table. Secondary index:An index that is not a primary index. Clustering index:A…
公司所用的数据库有金仓和DB2 首先要用命令窗口直接打开db2需要在cmd中输入:db2cmd 1:启动DB2数据库:db2start 2:连接数据库:db2 connect to 数据库名称 3::创建数据库:db2 create db 数据库名称 4:删除数据库: db2 drop db 数据库名称 5:查看表空间结构:db2 list tablespaces 6:查看系统表空间的物理路径 db2 list tablespaces container for 0 7:备份数…