PHP.mk документација

db2_statistics

Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.

function.db2-statistics.php PHP.net прокси Преводот се освежува
Оригинал на PHP.net
Патека function.db2-statistics.php Локална патека за оваа страница.
Извор php.net/manual/en Оригиналниот HTML се реупотребува и локално се стилизира.
Режим Прокси + превод во позадина Кодовите, табелите и белешките остануваат читливи во истиот тек.
db2_statistics

Референца за `function.db2-statistics.php` со подобрена типографија и навигација.

function.db2-statistics.php

db2_statistics

(PECL ibm_db2 >= 1.0.0)

db2_statistics Returns a result set listing the index and statistics for a table

= NULL

db2_statistics(
         resource $connection,
         ?string $qualifier,
         ?string $schema,
         string $table_name,
         bool $unique
): resource

Returns a result set listing the index and statistics for a table.

Параметри

connection
Враќа множество со резултати што ги наведува процедурите зачувани во базата на податоци.
qualifier
Валидна врска до база на податоци IBM DB2, Cloudscape или Apache Derby. null Квалификатор за бази на податоци DB2 што работат на сервери OS/390 или z/OS. За други бази на податоци, поминете
schema
The schema that contains the targeted table. If this parameter is null, the statistics and indexes are returned for the schema of the current user.
table_name
Името на табелата.
unique
Кога unique is true, the information for all indexes in the table are returned. Otherwise, only the information for unique indexes in the table are returned.

Вратени вредности

Returns a statement resource with a result set containing rows describing the statistics and indexes for the base tables matching the specified parameters. The rows are composed of the following columns:

Враќа ресурс за изјава со множество со резултати што содржи редови што ги опишуваат процедурите зачувани што одговараат на наведените параметри. Редовите се составени од следните колони: = NULL
TABLE_CAT The catalog that contains the table. The value is null Каталогот што ја содржи процедурата. Вредноста е
TABLE_SCHEM Name of the schema that contains the table.
TABLE_NAME Name of the table.
NON_UNIQUE

An integer value representing whether the index prohibits unique values, or whether the row represents statistics on the table itself:

Вратена вредност и параметри Parameter type
0 (SQL_FALSE) The index allows duplicate values.
1 (SQL_TRUE) The index values must be unique.
null This row is statistics information for the table itself.
INDEX_QUALIFIER A string value representing the qualifier that would have to be prepended to INDEX_NAME to fully qualify the index.
INDEX_NAME A string representing the name of the index.
TYPE

An integer value representing the type of information contained in this row of the result set:

Вратена вредност и параметри Parameter type
0 (SQL_TABLE_STAT) The row contains statistics about the table itself.
1 (SQL_INDEX_CLUSTERED) The row contains information about a clustered index.
2 (SQL_INDEX_HASH) The row contains information about a hashed index.
3 (SQL_INDEX_OTHER) The row contains information about a type of index that is neither clustered nor hashed.
ORDINAL_POSITION The 1-indexed position of the column in the index. null if the row contains statistics information about the table itself.
COLUMN_NAME The name of the column in the index. null if the row contains statistics information about the table itself.
ASC_OR_DESC A if the column is sorted in ascending order, D if the column is sorted in descending order, null if the row contains statistics information about the table itself.
CARDINALITY If the row contains information about an index, this column contains an integer value representing the number of unique values in the index. If the row contains information about the table itself, this column contains an integer value representing the number of rows in the table.
PAGES If the row contains information about an index, this column contains an integer value representing the number of pages used to store the index. If the row contains information about the table itself, this column contains an integer value representing the number of pages used to store the table.
FILTER_CONDITION Секогаш враќа null.

Види Исто така

  • db2_column_privileges() - Враќа сет на резултати што ги наведува колоните и поврзаните привилегии за табела
  • db2_columns() - Враќа сет на резултати што ги наведува колоните и поврзаните метаподатоци за табела
  • db2_foreign_keys() - Враќа сет на резултати што ги наведува надворешните клучеви за табела
  • db2_primary_keys() - Враќа сет на резултати што ги наведува примарните клучеви за табела
  • db2_procedure_columns() - Враќа сет на резултати што ги наведува параметрите на процедурата
  • db2_procedures() - Враќа сет на резултати што ги наведува процедурите регистрирани во база на податоци
  • db2_special_columns() - Враќа сет на резултати што ги наведуваат уникатните колони за идентификатор на редови за табела
  • db2_table_privileges() - Враќа сет на резултати што ги наведуваат табелите и поврзаните привилегии во базата на податоци
  • db2_tables() - Враќа сет на резултати што ги наведуваат табелите и поврзаните метаподатоци во базата на податоци

Белешки од корисници

Нема белешки од корисници за оваа страница.
Навигација

Прелистувај сродни теми и функции.

На оваа страница

Автоматски outline од активната документација.

Насловите ќе се појават тука по вчитување.

Попрегледно читање

Примерите, changelog табелите и user notes се визуелно издвоени за да не се губат во долгата содржина.

Брз совет Користи го outline-от Скокни директно на главните секции од активната страница.
Извор Оригиналниот линк останува достапен Кога ти треба целосен upstream context, отвори го PHP.net во нов tab.