Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 arsenal1983
		
			arsenal1983
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I'm trying to load huge set of data from qvd files.
I would like to create qvd optimized import process but I need to filter data besed on 2 fields.
so I have:
TAB:
Load
*
from
XXX
where
Exists(FIELD_1)
or
Exists(FIELD_2);
but this script is not optimized  is there any chance to create optimized script with more than 1 where condition?
 is there any chance to create optimized script with more than 1 where condition?
 Chanty4u
		
			Chanty4u
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
 marcus_sommer
		
			marcus_sommer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I don't believe that this will be possible but you could try a reversed approach by combining both fields into one single-field (within the qvd and within the already loaded datatmodel). Further thinkable is to split your qvd into several qvd's - that meant to consider a complete different logic to store and reuse your data - but it isn't certain that you will get an overall benefit from them compared with your current solution.
- Marcus
 arsenal1983
		
			arsenal1983
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Maybe Sunny T will help me 
 Kushal_Chawda
		
			Kushal_Chawda
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		What is filter conditions?
 
					
				
		
 marcus_sommer
		
			marcus_sommer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If you want that somebody noticed a particular posting you need to add his/her profile-link, like: stalwar1.
- Marcus
 arsenal1983
		
			arsenal1983
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		It doesn't matter I have
* list of accounts and
* list of partners (ID)
I need to load all data from accout list OR partner list
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Marcus already responded to you, not sure what else may I add to his comment.
 Clever_Anjos
		
			Clever_Anjos
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Since you have an OR, you can make 2 loads, the result conceptually would be the same
TAB:
Load
*
from XXX
where
Exists(FIELD_1);
concatenate
Load
*
from XXX
where
Exists(FIELD_2);
Try this:
Load multiple QVD with different fields into on... | Qlik Community
