Access violation apos processar Insert into sql server

francisco souza filho 1 Reputation point
2021-03-09T14:50:35.537+00:00

Ambiente - Win 10 Pro , Sql server 2019 INSERT INTO VENDAS (CODIGO) VALUES ('xzc'); Access violation at 0x000002BE89A80093 read to 0x0000000000000001 in 'C:\Users...\x97.exe' crash --> 000002BE89A80093 66837C770200 cmp word [rdi+rsi*2+0x2], 0x0 000002BE89A80099 488D7601 lea rsi, [rsi+0x1] 000002BE89A8009D 75F1 jnz 0x2be89a80090 A tabela so tem uma coluna A coluna no sql server esta como nvarchar(max) nao nulo O valor do insert é gravado ( consigo executar select normal ) Pergunta : Porque acontence o erro ? Ja tentei usando parametro e da o mesmo erro Agradeço alguma ajuda Francisco

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,713 questions
Transact-SQL
Transact-SQL
A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
4,552 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Erland Sommarskog 101K Reputation points MVP
    2021-03-09T22:20:14.5+00:00

    The language of this forum.

    In what application do you get this error? An access violation in the application is likely to be due to be related to an error in the application code, for instance a pointer writing past an allocated memory area.

    If my understanding of your post is correct, there is little relation to SQL Server. Even if the application is talking to SQL Server.

    0 comments No comments