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

['klʌstəd 'indeks]
['klʌstəd 'indeks]

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

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
All tables need to have clustered index.
Mỗi bảng chỉ được phép có một Clustered Index.
Clustered index does not require a unique(unique).
Clustered index không đòi hỏi phải duy nhất( unique).
Each table may only have one clustered index.
Mỗi bảng chỉ được phép có một Clustered Index.
A table without a clustered index is called a heap table.
Một bảng mà không có Clustered Index được gọi là 1 Heap table.
Create tables as heaps and tables with clustered indexes.
Tạo bảng như các heap và table với chỉ số cụm.
A table that has no clustered index is referred to as a heap.
Một bảng mà không có Clustered Index được gọi là 1 Heap table.
Clustered indexes sort and store the data rows in the table or view based on their key values.
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.
What do Clustered and Non clustered index actually mean?
Chỉ số Clustered và Non clustered thực sự có nghĩa là gì?
For clustered indexes, try to keep the length of the indexed columns as short as possible.
Đố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.
Any table which does not have a Clustered index is called as heap table.
Một bảng mà không có Clustered Index được gọi là 1 Heap table.
Keep clustered index small since the fields used in a clustered index may also be used in a non-clustered index..
Hãy giữ index của clustered nhỏ thôi vì trường mà dùng trong cluster index đó thì cũng được dùng trong non- clustered index..
To index a view, you create a unique clustered index on it.
Tạo chỉ số khung nhìn: là view có một unique clustered index trên nó.
The size of a clustered index is about five percent of the table size.
Kích thước của một clustered index khoảng 5% kich thước của bảng.
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.
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.
There can be only one clustered index per table, because the data rows themselves can be sorted in only one order.
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 are two types of index, clustered index and non-clustered index.
Có 2 loại index là Clustered Index và Non- Clustered Index..
Updating the clustered index field is therefore very expensive and, if done regularly,also causes the clustered index to become fragmented.
Thao tác cập nhật trường clustered index do vậy rất tốn kém và nếu diễn ra thường xuyên,cũng làm cho clustered index bị phân mảnh.
In fact, by default a unique clustered index will be created when declaring the primary key.
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.
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.
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.
You can first use the IDENTITY column as a clustered index, and then if you find it inappropriate, switch to another field.
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.
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 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, then it is called a clustered table.
Khi một table có clustered index, table đó được gọi là clustered table.
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.
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.
InnoDB stores user data in clustered indexes to reduce I/O for common queries based on primary keys.
InnoDB lưu trữ dữ liệu người dùng trong các chỉ mục dưới dạng cluster để giảm lượng I/ O cho các truy vấn chung dựa trên khóa chính.
You can specify that a unique clustered index be created if a clustered index does not already exist on the table.
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.
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.
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.
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.
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.
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.
Đâ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….
The table has one cluster index.
Một Table chỉ có thể có 1 clustered index.
Each cluster key valueis stored only once each in the cluster and the cluster index, no matter how many rows of different tables contain the value.
Mỗi giá trị key clusterđược lưu trữ chỉ một lần trong clustertrong index cluster, không cần biết có bao nhiêu hàng của các bảng khác nhau chứa giá trị đó.
Results: 30, Time: 0.0285

Word-for-word translation

Top dictionary queries

English - Vietnamese