web-dev-qa-db-fra.com

Comment exécuter un script ad-hoc dans PostgreSQL?

J'essaie de l'exécuter dans PostgreSQL 9.2:

RAISE NOTICE 'hello, world!';

Et le serveur dit:

Error : ERROR:  syntax error at or near "RAISE"
LINE 1: RAISE NOTICE 'hello, world!'
        ^

Pourquoi?

35
yegor256

Utilisez un bloc code anonyme :

DO language plpgsql $$
BEGIN
  RAISE NOTICE 'hello, world!';
END
$$;

Les variables sont référencées à l'aide de %:

RAISE NOTICE '%', variable_name;
67
Tomas Greif

raise est PL/pgSQL seulement. 

http://www.postgresql.org/docs/current/static/plpgsql-errors-and-messages.html

create or replace function r(error_message text) returns void as $$
begin
    raise notice '%', error_message;
end;
$$ language plpgsql;

select r('an error message');
NOTICE:  an error message
21
Clodoaldo Neto

exemple simple:

CREATE OR REPLACE FUNCTION test()     
RETURNS TRIGGER AS
'
DECLARE


num int;

 BEGIN
IF TG_OP = ''INSERT'' THEN
select count(*) into num from test_table;
IF num >= 1 THEN
RAISE WARNING ''Cannot Insert more than one row'';
RETURN OLD;
END IF;
ELSE
RETURN NEW;
END IF;

END;
' LANGUAGE plpgsql;
0
Mehdi Sadighian