oracle 的一些基礎知識

2021-09-30 06:17:47 字數 737 閱讀 5140

sql windwo ,sql command 的區別?

command window實現了sql*plus的所有功能,允許執行sql*plus命令,sql命令,sql指令碼。

sql window用於執行sql語句,顯示sql輸出,執行統計資訊。(測試sql語句,檢視表中的資料,更新資料)

例如 desc table不能在sql window中執行,必須在command window中才能執行。

在program window中建立乙個儲存過程,如下:

create or replace procedure test is

begin

dbms_session.set_nls('nls_date_format','''yyyy-mm-dd hh24:mi:ss''');

dbms_output.put_line('helloworld!');

dbms_output.put_line(sysdate);

end test;

需要注意,set_nls的第二個引數value

輸入的值除了需要的格式外,還需要包含引號,否則會引發錯誤(選項缺失或無效)

在command window中執行(或者在test window中測試),如下:

set   serveroutput   on

exec test();

或者begin

2  test();

3  end;

4  / ......

一些基礎知識

關於cd cd 返回剛才的位置 關於ls ls l,簡寫ll ls a顯示的檔案以.開頭,隱藏檔案 la al 關於cp cp r tmp dir 拷目錄 tmp拷到dir 需要加 r的 cp rm 10 13 1.grep 在乙個字元集合中找到符合條件的行輸出 如 grep hello file ...

一些基礎知識

linux基礎知識考查 1 在linux 系統中,以 檔案 方式訪問裝置 2 前台起動的程序使用 ctrl c 終止。3 在使用ls 命令時,用八進位制形式顯示非列印字元應使用引數 b 4 在linux 系統中,用來存放系統所需要的配置檔案和子目錄的目錄是 etc 5 在linux 系統中,壓縮檔案...

一些基礎知識(一)

1 類成員的組成 函式成員和資料成員 資料成員 字段,常量,事件成員 public int a 0 字段成員 public const int b 90 常量public event customeventhandler raisecustomevent 事件成員 函式成員 方法,屬性,建構函式,終...