|
-
Yes, U Can.
SQL> create materialized view testv as select sysdate onecol, sysdate twocol from dual;
Materialized view created.
SQL> desc testv
Name Null? Type
----------------------------------------- -------- ----------------------------
ONECOL DATE
TWOCOL DATE
SQL> alter table testv drop column twocol;
Table altered.
SQL> desc testv
Name Null? Type
----------------------------------------- -------- ----------------------------
ONECOL DATE
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|