> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> جدول نظامي يحتوي على معلومات عن فهارس تخطي البيانات الموجودة في جميع الجداول.

# system.data_skipping_indices

<div id="description">
  ## الوصف
</div>

يحتوي على معلومات عن فهارس تخطي البيانات الموجودة في جميع الجداول.

<div id="columns">
  ## الأعمدة
</div>

* `database` ([String](/ar/reference/data-types/index)) — اسم قاعدة البيانات.
* `table` ([String](/ar/reference/data-types/index)) — اسم الجدول.
* `name` ([String](/ar/reference/data-types/index)) — اسم الفهرس.
* `type` ([String](/ar/reference/data-types/index)) — نوع الفهرس.
* `type_full` ([String](/ar/reference/data-types/index)) — تعبير نوع الفهرس من عبارة CREATE.
* `expr` ([String](/ar/reference/data-types/index)) — التعبير المستخدم في حساب الفهرس.
* `creation` ([Enum8('Explicit' = 0, 'Implicit' = 1)](/ar/reference/data-types/index)) — ما إذا كان الفهرس قد أُنشئ ضمنيًا (عبر add\_minmax\_index\_for\_numeric\_columns أو ما شابه ذلك)
* `granularity` ([UInt64](/ar/reference/data-types/index)) — عدد الحبيبات في الكتلة.
* `data_compressed_bytes` ([UInt64](/ar/reference/data-types/index)) — حجم البيانات المضغوطة، بالبايت.
* `data_uncompressed_bytes` ([UInt64](/ar/reference/data-types/index)) — حجم البيانات غير المضغوطة، بالبايت.
* `marks_bytes` ([UInt64](/ar/reference/data-types/index)) — حجم العلامات، بالبايت.

<div id="example">
  ## مثال
</div>

```sql theme={null}
SELECT * FROM system.data_skipping_indices LIMIT 2 FORMAT Vertical;
```

```text theme={null}
Row 1:
──────
database:                default
table:                   user_actions
name:                    clicks_idx
type:                    minmax
type_full:               minmax
expr:                    clicks
creation:                Explicit
granularity:             1
data_compressed_bytes:   58
data_uncompressed_bytes: 6
marks_bytes:             48

Row 2:
──────
database:                default
table:                   users
name:                    contacts_null_idx
type:                    minmax
type_full:               minmax
expr:                    assumeNotNull(contacts_null)
creation:                Explicit
granularity:             1
data_compressed_bytes:   58
data_uncompressed_bytes: 6
marks_bytes:             48
```
