Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/webpack/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Command line DB2表列表中的截断名称_Command Line_Db2 - Fatal编程技术网

Command line DB2表列表中的截断名称

Command line DB2表列表中的截断名称,command-line,db2,Command Line,Db2,在Windows命令行中,当我在特定架构中请求表名时,名称被截断: db2 => list tables for schema SCH Tabela/Exibição Esquema Tipo Hora da cria ------------------------------- --------------- ----- -------------------------- TRUNCATED_TABL

在Windows命令行中,当我在特定架构中请求表名时,名称被截断:

db2 => list tables for schema SCH

Tabela/Exibição                 Esquema                         Tipo  Hora da cria
------------------------------- --------------- ----- --------------------------
TRUNCATED_TABLE_NAME_TRUNCATED> SCH             T     2017-01-29-11.11.11.111111
如何在不截断或换行的情况下显示全名?

使用SQL:

select tabname,tabschema from syscat.tables where tabschema='SCH'

有关更多选项的详细信息,请参见。

增加中的列

CHANGE MAXCOLUMNWIDTH TO 80