I have a very simple stored procedure which doesn't work and i don't
understand why
(in fact it is my first stored procedure :)

CREATE DBPROC DBA.GETLANGUE
AS
    BEGIN
        SELECT
            LANG_LIBELLE, LANG_CODE
        FROM
            DBA.T_LANGUE ;
    END
;

The creation works fine but it says "no result" when i call it
When i simply cut and paste the select in sql studio, i get my results...
So what's the problem ???

Thanks for your help !




_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to