Help!
I am trying to find the customer that are in VBSTEST that are not in VMFG9. the tables have identical schema. Whenever i run the query i never get a result returning.
`SELECT [ROWID] ,[ID] ,[NAME] ,[ADDR_1] ,[ADDR_2] ,[ADDR_3] ,[CITY] ,[STATE] ,[ZIPCODE] ,[COUNTRY] FROM [VMFG9].[dbo].[CUSTOMER] where NOT EXISTS( select v6.[ID] from [VBSTEST].[dbo].[CUSTOMER] as v6 left outer join [VMFG9].[dbo.CUSTOMER] as v9 on v9.id = v6.[id] where v9.id is null);`