Henk,
Now that you have some support for SQL views the Alter problem gets thornier. In particular, Oracle's treatment of views is fairly extensive, largely because they built a lot of the functionality 'pretty close to the metal' as it were.
The Oracle documentation on views, and in particular 'writable' views that allow you to alter underlying data trough a view, was quite interesting. As of Oracle 8i, the last time I looked at this in depth, you really had to dig to find all of their documentation.
IMHO, it is well worth the effort if you want to understand some of the real issues that affect the workings of a DBMS with both tables and views, and the linkages between the two 'layers.' Much of this would apply to any DBMS with view support. Even if you don't support writable views it might prove worthwhile to browse through this stuff, since the effects of an Alter Table statement will be more profound in future versions of EA.
HTH, David
PS: And yes, I too am eagerly awaiting the Alter functionality, but I'll wait - however impatiently - until it works.