Hello All,
I am using a Server where SQL Server 2012 RTM (11.0.2100).
I have a table(ABC) having columns 44 which contains 299 million records. There is column store index present on that table which includes all the columns except ID (This is Identity column)
I ran a query on the table like this
select * from ABC where column1 = 1392721
This query results 1205 records like this
IDColumn1PIDBIDSIDDIDCIDMIDBIDAmtAdAmt
2989056131392721787
13432671
00
2977249051392721807
13432671
00
29650243413927212957
134321231
00
2793557161392721787
134321231
00
.
.
.............
2791218251392721807 13432931 00
2457812311392721467
1343212321
00.96
2792780181392721807
134321231
00
when I ran the below query
select * from ABC where ID = 245781231
IDColumn1PIDBIDSIDDIDCIDMIDBIDAmtAdAmt
2457812311392721467
1343212321
00
The column data type of "AdAmt" is money.
When i created the same table in different servers (these servers contain SQL Server 2012 SP1) there is no data discrepency.
Is this issue with SQL server version or with column store index?