DB aliases
Posted: Fri Nov 15, 2013 10:01 am
Hi
I have set up a local eviews db (local_db), lets say with the following variables: series1, series2, series3.
Furthermore, I define object aliases for each of the series: a1=series1, a2=series2, a3=series3.
However, when I attempt to retrieve data in a workfile using the aliases this failes.
for instance:
or
if I instead use the following command
I get all the series but with the original names and not the defined aliases.
How do I proceed in order to use the alias definitions instead of the original variable names?
Thank you very much in advance for your assistance.
Best regards
Rasmus
I have set up a local eviews db (local_db), lets say with the following variables: series1, series2, series3.
Furthermore, I define object aliases for each of the series: a1=series1, a2=series2, a3=series3.
However, when I attempt to retrieve data in a workfile using the aliases this failes.
for instance:
Code: Select all
%request=@wquery("local_db", "name matches a*")
fetch(d="local_db",link,c=l) {%request}Code: Select all
fetch(d="local_db",link,c=l) a*Code: Select all
fetch(d="local_db",link,c=l) *How do I proceed in order to use the alias definitions instead of the original variable names?
Thank you very much in advance for your assistance.
Best regards
Rasmus