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
ID Column1 PID BID SID DID CID MID FID Amt AdAmt 298905613 1392721 78 7 134 3 2 67 1 0 0 297724905 1392721 80 7 134 3 2 67 1 0 0 296502434 1392721 295 7 134 3 2 123 1 0 0 279355716 1392721 78 7 134 3 2 123 1 0 0 279121825 1392721 80 7 134 3 2 93 1 0 0 245781231 1392721 80 7 134 3 2 93 1 0 0.96 279278018 1392721 80 7 134 3 2 123 1 0 0
when I ran the below query
select * from ABC where ID = 245781231
ID Column1 PID BID SID DID CID MID FID Amt AdAmt 245781231 1392721 80 7 134 3 2 93 1 0 0
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 issue.
That means it results the same value for that particular row in both the cases in other servers
Is this issue with SQL server version or with column store index?