0
I am trying to enter a list of data, however, in a certain period some ID’s are not being sent to the recipient. I can verify in sql that the entered values exist, but are not visible (or do not exist) to my destination. That is, they are visible in the bank, but in the destination of which it was to appear the values are not appearing, other id’s are appearing normal.
BS.: The query is correct as other values are appearing
update [dbo].[TInventerData201903] set Pac= '17529' ,EDay = '61.5' where ID = '52E38690-27A8-4CD4-9DFB-53BE896C224F';
update [dbo].[TInventerData201903] set Pac= '15198' ,EDay = '64.1' where ID = 'B81E1AE3-BAA5-452F-B275-08DCDA791216';
update [dbo].[TInventerData201903] set Pac= '5550' ,EDay = '65.0' where ID = 'B1687CE9-FB48-4C9F-BC2B-C9A5BD59A411';
The first updates are visible in the bank and at the destination, but the last one ('5550'), is visible only in the bank and not in the recipient. Querys are for a graph and this id is important for the data to be implemented in the graph.
What is the database? SQL Server?
– Victor Stafusa
Yes, SQL Server Management Studio 2008
– Rafael Holanda