In an attempt to troubleshoot a data issue I created a Sql statement to restrict the amount of data I was deploying. Now that I have finished troubleshooting I have not eliminated a number of the restrictions. Before I was getting a record count of 9 and now I am getting a record count of 41531, however, when I go to deploy the model I am still getting a record of 9. Below is the Sql statements I am using in the Table Properties section for the Table F55005. How can I get the Visual Studio to deploy the correct number of records?
Before
SELECT [PRODDTA].[F55005].* FROM [PRODDTA].[F55005] WHERE ([CMDPOS] > 116000) and ([CMDOCO] >54) and ([PRODDTA].[F55005].[CMSLSP] = 142795) and ([PRODDTA].[F55005].[CMDOCO] = 370210) and ([PRODDTA].[F55005].[CMLNID] != 20000) and ([PRODDTA].[F55005].[CMZZSCAC] = 'C')
Record count = 9
After
SELECT [PRODDTA].[F55005].* FROM [PRODDTA].[F55005] WHERE ([CMDPOS] > 116000) and ([CMDOCO] >54)
Record count = 41,531
Paul