Hi Experts,
Don’t know if you have encountered performance issue about this topic before. Here is the example when I created a subquery on Customer and Product
SQL:
Select …
From …
Where Customer + ’ ’ + Product in ( Select … )
Webi generates where statement by concatenating Customer and Product INTELLIGENTLY. It gave me very poor query performance as it will not hit indexes and kill my temp storage in database
Is it possible to change the statement into (Customer, Product) ?
Any input will be helpful. Thanks in advance
ohtiek (BOB member since 2006-09-03)