最新回答 / 慕虎9444539
默認(rèn)情況下,oracle數(shù)據(jù)庫允許在同一會話下,只能打開300個(gè)光標(biāo)(可以查看oracle初始化參數(shù)得到這個(gè)值)。它的意思是指open光標(biāo)之后,打開到一定數(shù)量就不可以在打開光標(biāo)了。
最新回答 / 我自清風(fēng)
有的版本是Oracle數(shù)據(jù)庫安裝完成后 SQL Developer也隨之安裝完成? ?如果沒有? 也可以下載SQL Developer安裝可視化界面
2019-12-07
最贊回答 / 若與blabla
有些報(bào)錯是你可以預(yù)想到的并且當(dāng)這種情況發(fā)生的時(shí)候你希望對應(yīng)的解決方式自動執(zhí)行,那么就可以用自定義例外,系統(tǒng)提示的報(bào)錯有的時(shí)候會看不懂,不知道是報(bào)什么錯
2019-09-09
最新回答 / 陌上花開遠(yuǎn)3976153
case when 實(shí)現(xiàn)的效果和if else的效果一樣,有循環(huán)和全局修改(無法動態(tài)獲取它對應(yīng)的職位編號)的問題
2019-08-11
最新回答 / chenxinmomota
declarecursor cdept is select deptno from dept;pdeptno dept.deptno%type;cursor cemp(dno number) is select sal from emp where deptno = dno;psal emp.sal%type;count1 int;count2 int;count3 int;totalMon number := 0;flag number;begin? open cdept;? --外層循環(huán)? loop?...
2019-07-21