Hi,
the database loads all right. The only thing you need to know is that you cannot open IRIS time series objects in the workspace variables editor -- which is actually what you're trying to do.
To view the contents of a time series, just type its name in the command window, e.g.
>> d.XXX
where d is a database and XXX is the name of a time series in that database. You can also view the observations within a specified range only, e.g.
>> d.XXX(qq(2010,1):qq(2012,4))
etc. To manipulate/change existing tseries objects, use again commands (in the command window or in your m-files), do not try to use the variables editor. For instance
>> d.XXX(qq(2010,1):qq(2012,4)) = 0;
There's also one or two tutorials on time series and database management available from the iris web site. Might be useful for you to go through them, too.
And of course, let me know should you have any further questions.
Best,
Jaromir
On Friday, July 27, 2012 11:48:57 AM UTC+2, SS wrote: