create or replace procedure test_cell is
V_endid varchar2(6);V_celname varchar2(61);V_dl number(4);V_ul number(5);
CURSOR test_cursor is
select
lncel.lncel_enb_id
,lncel.LNCEL_CELL_NAME
,lnfdd.lncel_fdd_earfcn_dl
,lnfdd.lncel_fdd_earfcn_ul
from
C_LTE_LNCEL lncel,
c_lte_lncel_fdd lnfdd,
ctp_common_objects cel,
ctp_common_objects fdd
where
lncel.obj_gid=cel.co_gid
and lnfdd.obj_gid=fdd.co_gid
and fdd.co_parent_gid=cel.co_gid
AND lncel.conf_id=1
and lnfdd.conf_id=1
and lncel.lncel_cell_name like '%WLCB%dianxin%';
begin
DBMS_OUTPUT.ENABLE (buffer_size=>null);
open test_cursor;
loop
fetch test_cursor into V_endid,V_celname,V_dl,V_ul;
dbms_output.enable(20000);
dbms_output.put_line('站號:'||V_endid||'小區名稱:'||V_celname||'下行頻點:'||V_dl||'上行頻點:'||V_ul);
end loop;
end test_cell;
uj5u.com熱心網友回復:
沒看到樓主的圖片啊,忘了發了嗎?uj5u.com熱心網友回復:

上傳圖片后是個連接
uj5u.com熱心網友回復:
不是寫了pga空間不夠了么。不過也有可能是sql本身有問題鏈接寫錯了什么的導致的。
uj5u.com熱心網友回復:
就是提示PGA空間不夠,資料大概有5000多行。網上查了一些資料也沒個解決方法!轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/16335.html
標籤:基礎和管理

