1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

  2. Anuncie Aqui ! Entre em contato fdantas@4each.com.br

SQL Server table-valued function Parameters were not supplied for the function-

Discussão em 'Outras Linguagens' iniciado por Stack, Janeiro 11, 2021.

  1. Stack

    Stack Membro Participativo

    I keep getting the error : "Parameters were not supplied" for a very simple table-valued function. I cannot figure out what is the issue. I narrowed the function down to :

    create FUNCTION udf_XX_OddFCST()
    RETURNS @output TABLE (
    articlecode nvarchar(50)
    )
    AS
    BEGIN
    insert into @output(articlecode) values ('abc');
    RETURN
    END


    So I get the error when executing

    select * from udf_XX_OddFCST


    Any help would be greatly appreciated.

    kind regards

    Continue reading...

Compartilhe esta Página