ORACLE問題,每天10問(六)

2021-04-08 19:53:16 字數 519 閱讀 8212

51. 如何將小表放入keep池中?

alter table *** storage(buffer_pool keep);

52. 如何檢查是否安裝了某個patch?

check that orainventory

53. 如何使select語句使查詢結果自動生成序號?

select rownum,col from table;

54. 如何知道資料褲中某個表所在的tablespace?

select tablespace_name from user_tables where table_name=''''test'''';

select * from user_tables中有個字段tablespace_name,(oracle);

select * from dba_segments where …;

55. 怎么可以快速做乙個和原表一樣的備份表?

create table new_table as (select * from old_table);

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問(十一)

101.如何搜尋出前n條記錄?select from employee where rownum n order by empno 102.如何知道機器上的oracle支援多少併發使用者數?sql conn internal sql show parameter processes 103.db b...