RNC用户面单用户码流跟踪对应的toolkit任务类型是哪个?()
A. RNLC_UE SIGNAL BY UEID
B. RNLU_UE SIGNAL BY UEID
C. RNLC_UE SIGNAL BY CELL ID ANDNUM
D. RNLC_IU COMON SIGNAL
You need to change the definition of an existing table. The COMMERCIALS table needs its DESCRIPTION column changed to hold varying length characters up to 1000 bytes. The column can currently hold 500 bytes per value. The table contains 20000 rows. Which statement is valid?()
ALTER TABLE commercials MODIFY (description CHAR2(1000));
B. ALTER TABLE commercials CHANGE (description CHAR2(1000));
C. ALTER TABLE commercials CHANGE (description VARCHAR2(1000));
D. ALTER TABLE commercials MODIFY (description VARCHAR2(1000));
E. You cannot increase the size of a column if the table has rows.