db2_statistics
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
db2_statistics
Референца за `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
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-
Кога
uniqueistrue, 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:
|
||||||||||
| 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:
|
||||||||||
| 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() - Враќа сет на резултати што ги наведуваат табелите и поврзаните метаподатоци во базата на податоци