এটি এসকিউএল সার্ভার সহ একটি বাগ। যদি একটি ক্লাস্টারযুক্ত কলামস্টোর সূচী সহ কোনও কলামটি কোনও টেবিল থেকে মুছে ফেলা হয় এবং তারপরে একই নামে একটি নতুন কলাম যুক্ত করা হয়, তবে এটি প্রিডিকেটের জন্য পুরানো, মুছে ফেলা কলামটি ব্যবহার করছে বলে মনে হয়। এখানে এমভিসিই:
এই স্ক্রিপ্টটি সঙ্গে শুরু হয় বন্ধ 10000
সঙ্গে সারি statusId
এর 1
এবং statusId2
এর 5
- তারপর ড্রপ statusID
কলাম এবং renames statusId2
করতে statusId
। সুতরাং শেষে সমস্ত সারিতে statusId
5 এর একটি হওয়া উচিত ।
তবে নীচের প্রশ্নটি ক্লাস্টারবিহীন সূচককে হিট করেছে ...
select *
from example
where statusId = 1
and total <= @filter
and barcode = @barcode
and id2 = @id2
... এবং 2
সারিগুলি প্রদান করে ( ক্লজ statusId
দ্বারা বর্ণিত থেকে পৃথক নির্বাচিত সহ WHERE
) ...
+-------+---------+------+-------+----------+
| id | barcode | id2 | total | statusId |
+-------+---------+------+-------+----------+
| 5 | 5 | NULL | 5.00 | 5 |
| 10005 | 5 | NULL | 5.00 | 5 |
+-------+---------+------+-------+----------+
... যদিও এটি একটি কলামের দোকানে অ্যাক্সেস করে এবং সঠিকভাবে ফিরে আসে 0
select count(*)
from example
where statusId = 1
MVCE
/*Create table with clustered columnstore and non clustered rowstore*/
CREATE TABLE example
(
id INT IDENTITY(1, 1),
barcode CHAR(22),
id2 INT,
total DECIMAL(10,2),
statusId TINYINT,
statusId2 TINYINT,
INDEX cci_example CLUSTERED COLUMNSTORE,
INDEX ix_example (barcode, total)
);
/* Insert 10000 rows all with (statusId,statusId2) = (1,5) */
INSERT example
(barcode,
id2,
total,
statusId,
statusId2)
SELECT TOP (10000) barcode = row_number() OVER (ORDER BY @@spid),
id2 = NULL,
total = row_number() OVER (ORDER BY @@spid),
statusId = 1,
statusId2 = 5
FROM sys.all_columns c1, sys.all_columns c2;
ALTER TABLE example
DROP COLUMN statusid
/* Now have 10000 rows with statusId2 = 5 */
EXEC sys.sp_rename
@objname = N'dbo.example.statusId2',
@newname = 'statusId',
@objtype = 'COLUMN';
/* Now have 10000 rows with StatusID = 5 */
INSERT example
(barcode,
id2,
total,
statusId)
SELECT TOP (10000) barcode = row_number() OVER (ORDER BY @@spid),
id2 = NULL,
total = row_number() OVER (ORDER BY @@spid),
statusId = 5
FROM sys.all_columns c1, sys.all_columns c2;
/* Now have 20000 rows with StatusID = 5 */
DECLARE @filter DECIMAL = 5,
@barcode CHAR(22) = '5',
@id2 INT = NULL;
/*This returns 2 rows from the NCI*/
SELECT *
FROM example WITH (INDEX = ix_example)
WHERE statusId = 1
AND total <= @filter
AND barcode = @barcode
AND id2 = @id2;
/*This counts 0 rows from the Columnstore*/
SELECT COUNT(*)
FROM example
WHERE statusId = 1;
আমি আজুর প্রতিক্রিয়া পোর্টালেও একটি সমস্যা উত্থাপন করেছি :
এবং যার সাথে এটির মুখোমুখি হয়, ক্লাস্টারড কলামস্টোর সূচকটি পুনর্নির্মাণ সমস্যার সমাধান করে:
alter index cci_example on example rebuild
সিসিআই পুনর্নির্মাণ কেবল বিদ্যমান যে কোনও ডেটা ঠিক করে। নতুন রেকর্ড যুক্ত করা হলে, এই রেকর্ডগুলি নিয়ে আবার সমস্যা দেখা দেয়; সুতরাং বর্তমানে টেবিলের একমাত্র পরিচিত ফিক্সটি এটি সম্পূর্ণরূপে পুনরায় তৈরি করা।