暂无图片
返回数说广场
水清木华
暂无图片
2023-09-14
在Oracle中,以下哪个操作可以让alter table p_tab exchange partition p1 with table n_tab; 成功执行?BD P_TAB建议语句如下: create table p_tab(id number,s_code varchar2(4)) partition by list(s_code) (partition p1 values ('A','B'), partition p2 values ('C'), partition p3 values (default)); A create table n_tab(id number,s_code varchar2(4)); insert into n_tab(id,s_code) values(1,'E'); commit; B create table n_tab(id number,s_code varchar2(4)); insert into n_tab(id,s_code) values(1,'A'); commit; C create table n_tab(id number,s_code varchar2(4)); insert into n_tab(id,s_code) values(1,'C'); commit; D create table n_tab(id number,s_code varchar2(4)); commit;
1
暂无图片 0
241
分享

评论

热门数说