What is the translation of " CLUSTERED INDEX " in English?

Examples of using Clustered index in Vietnamese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
Một Table chỉ có thể có 1 clustered index.
The table has one cluster index.
Clustered index không đòi hỏi phải duy nhất( unique).
Clustered index does not require a unique(unique).
Mỗi bảng chỉ được phép có một Clustered Index.
Each table may only have one clustered index.
Một bảng mà không có Clustered Index được gọi là 1 Heap table.
A table that has no clustered index is referred to as a heap.
Một Table chỉ có thể có 1 clustered index.
Because of this, a table can only have one clustered index.
Combinations with other parts of speech
Một bảng mà không có Clustered Index được gọi là 1 Heap table.
A table without a clustered-index is called a“heap table”.
Tạo chỉ số khung nhìn: là view có một unique clustered index trên nó.
To index a view, you create a unique clustered index on it.
Một bảng mà không có Clustered Index được gọi là 1 Heap table.
Any table which does not have a Clustered index is called as heap table.
Khung nhìn chỉ mục( Indexed View): là view có một unique clustered index.
Indexed view is a view that has a clustered index.
Kích thước của một clustered index khoảng 5% kich thước của bảng.
The size of a clustered index is about five percent of the table size.
Table Scan xảy ra khi select dữ liệu ở một table không có clustered index.
Table Scan:Occurs when the corresponding table does not have a clustered index.
Khi một table có clustered index, table đó được gọi là clustered table.
When a table has a clustered index, then it is called a clustered table.
Câu hỏi đặt ra là: Bảng ở hình 8.1 sẽ thay đổi thế nào khisử dụng index organized table hay clustered index?
How would Figure 8.1 changewhen using an index organized table or clustered index?
Thực tế, theo mặc định một clustered index duy nhất sẽ được tạo khi khai báo khóa chính.
In fact, by default a unique clustered index will be created when declaring the primary key.
Clustered Index lưu trữ và sắp xếp dữ liệu vật lý trong table hoặc view dựa trên các giá trị khóa của chúng.
Clustered indexes sort and store the data rows in the table or view based on their key values.
Bạn có thể trước hết hãy dùng cột IDENTITY làm clustered index, và sau đó nếu thấy không thích hợp thì chuyển sang chọn trường khác.
You can first use the IDENTITY column as a clustered index, and then if you find it inappropriate, switch to another field.
Đối với Clustered Index, hãy cố gắng giữ cho độ dài của các cột được lập Index càng ngắn càng tốt.
For clustered indexes, try to keep the length of the indexed columns as short as possible.
Bạn cũng hoàn toàn có thể tạo ra một Unique và là Clustered Index nếu như chưa có một Clustered Index nào được tạo ra trước đó trên bảng.
You can specify that a unique clustered index be created if a clustered index does not already exist on the table.
Chỉ 1 clustered index có thể được tạo trên mỗi bảng, bởi vì dữ liệu của các dòng chỉ có thể sắp xếp theo 1 thứ tự nhất định.
There can be only one clustered index per table, because the data rows themselves can be sorted in only one order.
Việc gắn thêm nhưvậy làm tăng kích thước của clustered index cũng như các index khác, nên trong đa số tình huống thực tiễn bạn nên tạo clustered index là duy nhất.
Such additions increase the size of the clustered index as well as other indexes, so in most practical situations you should create a clustered index that is unique.
Với clustered index thì tiêu chí này càng quan trọng, vì khóa của nó được dùng trong tất cả các index khác( nonclustered) của bảng để làm con trỏ tới bản ghi.
For clustered indexes, this criterion is even more important, since its key is used in all non-indexed indexes of the table to point to the record.
Khi bạn định nghĩa một ràng buộc khoá chính trên một hoặc nhiều cột của bảng,SQL Server tự động tạo ra một Unique- Clustered Index nếu chưa có một Clustered Index nào tồn tại trên bảng hoặc view.
When you define a primary key constraint on one or more columns,SQL Server automatically creates a unique, clustered index if a clustered index does not already exist on the table or view.
Nếu table không có clustered index, các data rows của nó được lưu theo một cấu trúc không có thứ tự gọi là heap.
If a table has no clustered index, its data rows are stored in an unordered structure called a heap.
Đây là lý do tại sao các khóachính thường được sử dụng cho Clustered Index của bảng, bên cạnh đó, việc xem xét các truy vấn thường thực hiện trên bảng cũng cần được tính đến khi xác định các cột nên tham gia vào một Clustered Index….
This is why the primarykey is often used for the table's clustered index, although query considerations should also be taken into account when determining which columns should participate in the clustered index.
Khi bảng được tạo clustered index thì bản thân nó trở thành một cây index, với các node lá chứa khóa là các trường được index và cũng đồng thời chứa tất cả các trường còn lại của bảng.
When the table is clustered, the index itself becomes an index tree, withthe leaf nodes containing the keys being the indexed fields and also containing all the remaining fields of the table.
Trường tĩnh: Trường clustered index không nên bị cập nhật thường xuyên, một khi đã có mặt trong bảng thì giá trị của nó cần được giữ nguyên.
Static field: The clustered index field should not be updated regularly, once it is present in the table, its value should be kept.
Do các đặc tính của clustered index, có một vài điểm bạn cần lưu ý khi chọn trường làm clustered index để có thể đạt hiệu quả tối ưu.
Due to the above characteristics of clustered index, there are a few points to keep in mind when selecting a field as a clustered index in order to achieve optimal performance.
Việc tìm kiếm theo trường có clustered index tối ưu hơn so với non- clustered index vì nó bỏ qua được bước bookmark lookup( do tất cả các trường dữ liệu đã có sẵn tại node index)..
The search by field has a clustered index that is more optimal than a non-clustered index because it bypasses the bookmark lookup step(since all data fields are already available at the node index)..
Khi bảng đã có clustered index thì các index khác( nonclustered) sẽ dùng khóa của trường clustered index làm con trỏ để trỏ về bản ghi tương ứng( nếu bảng không có clustered index thì một giá trị RID nội bộ được dùng).
When a table has a clustered index, other indexes(nonclustered) will use the clustered index key as a pointer to point to the corresponding record(if the table does not have a clustered index, an internal RID value is used).
Khi nó bị cập nhật, bản thân clustered index cũng cần được cập nhật để sắp xếp bản ghi vào vị trí mới cho đúng thứ tự, và đồng thời các nonclustered index khác cũng phải cập nhật theo để cho con trỏ giờ phải chứa giá trị mới.
When it is updated, the clustered index itself needs to be updated to arrange the records in the new order in the correct order, and at the same time the other nonclustered indexes must update as well so that the cursor must now contain the value. new.
Results: 41, Time: 0.0194

Word-for-word translation

Top dictionary queries

Vietnamese - English