ORACLE問題,每天10問(十一)

2021-03-31 20:42:20 字數 827 閱讀 3711

101. 如何搜尋出前n條記錄?

select * from employee where rownum < n

order by empno;

102. 如何知道機器上的oracle支援多少併發使用者數?

sql>conn internal ;

sql>show parameter processes ;

103. db_block_size可以修改嗎?

一般不可以﹐不建議這樣做的。

104. 如何統計兩個表的記錄總數?

select (select count(id) from aa)+(select count(id) from bb) 總數 from dual;

105. 怎樣用sql語句實現查詢一列中第n大值?

select * from

(select t.*,dense_rank() over (order by sal) rank from employee)

where rank = n;

106. 如何在給現有的日期加上2年?

select add_months(sysdate,24) from dual;

107. used_ublk為負值表示什麼意思?

it is "harmless".

108. connect string是指什麼?

應該是tnsnames.ora中的服務名後面的內容

109. 怎樣擴大redo log的大小?

建立乙個臨時的redolog組,然後切換日誌,刪除以前的日誌,建立新的日誌。

110. tablespace 是否不能大於4g?

沒有限制.

ORACLE問題,每天10問(三)

21.在oracle table中如何抓取memo型別欄位為空的資料記錄?select remark from oms flowrec where trim from remark is not null 22.如何用bbb表的資料去更新aaa表的資料 有關聯的字段 update aaa set b...

ORACLE問題,每天10問(五)

41.如何給表 列加注釋?sql ment on table 表 is 表注釋 注釋已建立。sql ment on column 表.列 is 列注釋 注釋已建立。sql select from user tab ments where ments is not null 42.如何檢視各個表空間占...

ORACLE問題,每天10問(十二)

111.返回大於等於n的最小整數值?select ceil n from dual 112.返回小於等於n的最小整數值?select floor n from dual 113.返回當前月的最後一天?select last day sysdate from dual 114.如何不同使用者間資料匯入...