Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Stored Procedure


robinhocne

Question

Pessoal não sei se alguém ai pode me ajudar.....mas estava tenho um caso que ao deletar um produto de uma determinada entrada de estoque ele tem que ir na tabela entrada e diminuir a quantidade e valor ai estava ká comigo querendo deixar para o banco de dados fazer esse procedimento, sendo assim pensei na Stored procedure em vez até de criar uma função no sistema para isso....

eu uso o banco de dados firebird e estou tentando fazer essa stored procedure abaixo:

CREATE PROCEDURE P_PRD_ENTRADAS_AtuQtVlTotal
(
  vEmpCodigo      integer,
  vEntCodigo      Integer,
  vEntData        Integer,
  vCodProduto     INTEGER,
  vEntQtdTotal    Numeric (10,4),
  vEntVlTotalProd Numeric (10,6)
)

returns
(
    vEntQtdTotal    Numeric (10,4),
    vEntVlTotalProd Numeric (10,6)
)
as
begin
        Update Prd_Entradas Set EntQtdTotal = :vEntQtdTotal
        where EmpCodigo  = :vEmpCodigo and
           EntCodigo  = :vEmpCodigo and
           EntData    = :vEntData;
end
mas dá esse erro:
This operation is not defined for system tables.
unsuccessful metadata update.
STORE RDB$PROCEDURE_PARAMETERS failed.
attempt to store duplicate value (visible to active transactions) in unique index "RDB$INDEX_18".

alguém pode me ajudar ?

Edited by robinhocne
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
This operation is not defined for system tables.

unsuccessful metadata update.

STORE RDB$PROCEDURE_PARAMETERS failed.

attempt to store duplicate value (visible to active transactions) in unique index "RDB$INDEX_18".

Esta operação não é definida para tabelas do sistema

actualização mal sucedida dos metadata.

STORE RDB$PROCEDURE_PARAMETERS falhou.

tente armazenar o valor duplicado (visível às transações ativas) em um unico indice "RDB$INDEX_18".

abraço

Link to comment
Share on other sites

  • 0
This operation is not defined for system tables.

unsuccessful metadata update.

STORE RDB$PROCEDURE_PARAMETERS failed.

attempt to store duplicate value (visible to active transactions) in unique index "RDB$INDEX_18".

Esta operação não é definida para tabelas do sistema

actualização mal sucedida dos metadata.

STORE RDB$PROCEDURE_PARAMETERS falhou.

tente armazenar o valor duplicado (visível às transações ativas) em um unico indice "RDB$INDEX_18".

abraço

Consegui resolver :

CREATE PROCEDURE P_PRD_ENTRADAS_ATUQTVLTOTAL (
    vempcodigo integer,
    ventcodigo integer,
    ventdata date,
    ventqtdtotal numeric(10,4),
    ventvltotalprod numeric(10,6),
    ventvltotentrada numeric(10,6))
as
begin
    Update Prd_Entradas Set EntQtdTotal = :vEntQtdTotal,
                            EntVlTotalProd = :vEntVlTotalProd,
                            EntVlTotEntrada = :vEntVlTotEntrada
    where EmpCodigo  = :vEmpCodigo and
          EntCodigo  = :vEntCodigo and
          EntData    = :vEntData;
end

Edited by robinhocne
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...