Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi,
If i have the following information:
Date
StartTime
Duration (in minutes)
is it possible to create a script where i log each active minute?
In other words, if one line of data contains duration 10 minutes, I would like to build a script that creates 10 lines of data, one line for each minute.
Best Regards
//Hajman
 
					
				
		
 swuehl
		
			swuehl
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Hajman,
you could add a while criterion to your load, maybe like:
LOAD
Date,
StartTime,
Duration
from TABLE while iterno() <= Duration;
Regards,
Stefan
 
					
				
		
 swuehl
		
			swuehl
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Hajman,
you could add a while criterion to your load, maybe like:
LOAD
Date,
StartTime,
Duration
from TABLE while iterno() <= Duration;
Regards,
Stefan
 
					
				
		
Thanks a lot Stefan, now it works as planned!
/Hajman
