Postgresql預存程序調試:PostgreSQL 之 Function NOTICE

來源:互聯網
上載者:User

標籤: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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.