標籤:style blog http color os io ar 檔案 資料
轉載自http://zhenghaoju700.blog.163.com/blog/static/13585951820116782843994/
先安裝一個PostgreSQL(見補充知識)
比較Oracle PL/SQL
PL/SQL 中有 dbms_output.put_line("This is a log"); 可以進行簡單的調試
當然我們PostgreSQL 也有相應的函數 RAISE NOTICE ‘This is a log %‘, param;
% 預留位置 param 替換的值
RAISE 還有其他層級 DEBUG,LOG,INFO,EXCEPTION
可以在設定檔中配置它們 postgresql.conf 中的 client_min_messages 和 log_min_messages
RAISE EXCEPTION 會暫停函數的運行,其他層級預設應該是顯示到用戶端。
舉一個簡單的例子吧
舉例之前 首先確定自己的資料庫有沒有安裝 plpgsql
select * from pg_language;
如果沒有的話
create language plpgsql;
簡單例子:
CREATE OR REPLACE FUNCTION perctl.testraise() RETURNS void AS$$declarebeginraise notice ‘===============‘;while(2>1) loopraise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;raise notice ‘====================================================================================================================================================================================‘;end loop;raise log ‘===============‘;end;$$ LANGUAGE plpgsql VOLATILE COST 100;ALTER FUNCTION perctl.fx_test_outofmemory_1() OWNER TO root;
測試一下
select TESTRAISE(‘this is a message‘);
為什麼只有 Notice 和 INFO 資訊呢?
通過 find / -name postgresql 尋找postgresql 安裝目錄
[email protected]:/etc/postgresql/8.4/main$ pwd
/etc/postgresql/8.4/main
在etc下查看設定檔 vim postgresql.conf
看到用戶端最小顯示層級是NOTICE 所以必須大於Notice 才顯示 這就是log為什麼沒有顯示
DEBUG 沒顯示 是因為它們只有DEBUG(1-5)
這樣就可以放心調試了!!!!
補充知識:
安裝環境 Ubuntu 11.03
1.sudo apt-get install postgreSQL
2.sudo passwd postgres 改密碼 這個使用者是資料庫自己建立的
3.啟動服務 service postgresql start
4.su postgres
5.psql 開啟互動shell
6.\l 列出所有資料庫
參考資料:
http://www.postgresonline.com/journal/archives/83-Quick-Guide-to-writing-PLPGSQL-Functions-Part-3-NOTICES,-RECURSION,-and-more.html
Postgresql預存程序調試:PostgreSQL 之 Function NOTICE