OVH Cloud OVH Cloud

problème d'erreur d'acces : SqlDumpExceptionHandler : c0000005 EXCEPTION_ACCESS_VIOLATION

4 réponses
Avatar
Le Doeuff Fabrice
bonjour ,
est ce que quelqu'un a déjà eut ce genre d'erreur et pourrait m'éclairer ?
lors d'un simple update
update contacts set cont_nom='yyyyy', cont_pre='yyy', cont_org='rrrrrrrrr',
cont_ser='Développement', cont_fon='NC', cont_mel='mail', cont_adr1='24 bd
de la Colonne', cont_tel='04 72 85 12 45', cont_fax='04 72 85 54 68',
cont_url='http://toto.com', cont_can='NC', cont_com='CHAMBERY', cont_lie='',
cont_pho='', cont_adr2='', cont_adr3='' where cont_num=4

le serveur me renvoie cette erreur :
ODBC : Msg 0, Niveau 19, État 1
SqlDumpExceptionHandler : Le processus 59 a provoqué l'exception
irrécupérable c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server termine ce
processus.

merci d'avance de votre aide :-)

Fabrice

4 réponses

Avatar
Fred BROUARD
update contacts
set cont_nom = 'yyyyy',
cont_pre = 'yyy',
cont_org = 'rrrrrrrrr',
cont_ser = 'Développement',
cont_fon = 'NC',
cont_mel = 'mail',
cont_adr1= '24 bd de la Colonne',
cont_tel = '04 72 85 12 45',
cont_fax = '04 72 85 54 68',
cont_url = 'http://toto.com',
cont_can = 'NC',
cont_com = 'CHAMBERY',
cont_lie = '',
cont_pho = '',
cont_adr2 = '',
cont_adr3 = ''
where cont_num = 4

pas d'erreur de syntaxe, mais pose ta requête avec des lignes formées et
indentée comme dans l'exemple ci dessus sinon il est possible que des
retour chariot intempestif s'y adjoingne.

Si l'erreur persiste, poste l'ordre de création de ta table sous forme SQL :
CREATE TABLE...

A +

Le Doeuff Fabrice a écrit:
bonjour ,
est ce que quelqu'un a déjà eut ce genre d'erreur et pourrait m'éclairer ?
lors d'un simple update
update contacts set cont_nom='yyyyy', cont_pre='yyy', cont_org='rrrrrrrrr',
cont_ser='Développement', cont_fon='NC', cont_mel='mail', cont_adr1='24 bd
de la Colonne', cont_tel='04 72 85 12 45', cont_fax='04 72 85 54 68',
cont_url='http://toto.com', cont_can='NC', cont_com='CHAMBERY', cont_lie='',
cont_pho='', cont_adr2='', cont_adr3='' where cont_num=4

le serveur me renvoie cette erreur :
ODBC : Msg 0, Niveau 19, État 1
SqlDumpExceptionHandler : Le processus 59 a provoqué l'exception
irrécupérable c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server termine ce
processus.

merci d'avance de votre aide :-)

Fabrice






--
Frédéric BROUARD - expert SQL, spécialiste : SQL Server / Delphi / web
Livre SQL - col. Référence : http://sqlpro.developpez.com/bookSQL.html
Le site du SQL, pour débutants et pros : http://sqlpro.developpez.com
****************** mailto: ******************
Avatar
Le Doeuff Fabrice
bonjour ,
le problème persiste :-( voici ci joint le script de création de la table :
CREATE TABLE [contacts] (
[cont_num] [int] IDENTITY (1, 1) NOT NULL ,
[cont_nom] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_pre] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_org] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_ser] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_fon] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_mel] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_adr2] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_adr3] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_tel] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_fax] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_url] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_can] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_com] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_lie] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_pho] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_civ] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_adr1] [varchar] (50) COLLATE French_CI_AS NULL ,
[cont_cp] [varchar] (50) COLLATE French_CI_AS NULL
) ON [PRIMARY]
GO

"Fred BROUARD" a écrit dans le message de
news:%
update contacts
set cont_nom = 'yyyyy',
cont_pre = 'yyy',
cont_org = 'rrrrrrrrr',
cont_ser = 'Développement',
cont_fon = 'NC',
cont_mel = 'mail',
cont_adr1= '24 bd de la Colonne',
cont_tel = '04 72 85 12 45',
cont_fax = '04 72 85 54 68',
cont_url = 'http://toto.com',
cont_can = 'NC',
cont_com = 'CHAMBERY',
cont_lie = '',
cont_pho = '',
cont_adr2 = '',
cont_adr3 = ''
where cont_num = 4

pas d'erreur de syntaxe, mais pose ta requête avec des lignes formées et
indentée comme dans l'exemple ci dessus sinon il est possible que des
retour chariot intempestif s'y adjoingne.

Si l'erreur persiste, poste l'ordre de création de ta table sous forme SQL


:
CREATE TABLE...

A +

Le Doeuff Fabrice a écrit:
> bonjour ,
> est ce que quelqu'un a déjà eut ce genre d'erreur et pourrait m'éclairer


?
> lors d'un simple update
> update contacts set cont_nom='yyyyy', cont_pre='yyy',


cont_org='rrrrrrrrr',
> cont_ser='Développement', cont_fon='NC', cont_mel='mail', cont_adr1='24


bd
> de la Colonne', cont_tel='04 72 85 12 45', cont_fax='04 72 85 54 68',
> cont_url='http://toto.com', cont_can='NC', cont_com='CHAMBERY',


cont_lie='',
> cont_pho='', cont_adr2='', cont_adr3='' where cont_num=4
>
> le serveur me renvoie cette erreur :
> ODBC : Msg 0, Niveau 19, État 1
> SqlDumpExceptionHandler : Le processus 59 a provoqué l'exception
> irrécupérable c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server termine ce
> processus.
>
> merci d'avance de votre aide :-)
>
> Fabrice
>
>
>

--
Frédéric BROUARD - expert SQL, spécialiste : SQL Server / Delphi / web
Livre SQL - col. Référence : http://sqlpro.developpez.com/bookSQL.html
Le site du SQL, pour débutants et pros : http://sqlpro.developpez.com
****************** mailto: ******************



Avatar
Lionel Pénuchot
Bonjour,

Il doit y avoir plus d'info dans l'errorlog, et dans le répertoire de
celui-ci des fichiers .mdmp (minidumps) qui donnent une image de tous les
threads de SQL Server au moment de l'erreur. Le mieux est donc d'appeler le
support pour décortiquer cela.

Cordialement,
LionelP

"Le Doeuff Fabrice" wrote in message
news:%
bonjour ,
est ce que quelqu'un a déjà eut ce genre d'erreur et pourrait m'éclairer ?
lors d'un simple update
update contacts set cont_nom='yyyyy', cont_pre='yyy',


cont_org='rrrrrrrrr',
cont_ser='Développement', cont_fon='NC', cont_mel='mail', cont_adr1='24 bd
de la Colonne', cont_tel='04 72 85 12 45', cont_fax='04 72 85 54 68',
cont_url='http://toto.com', cont_can='NC', cont_com='CHAMBERY',


cont_lie='',
cont_pho='', cont_adr2='', cont_adr3='' where cont_num=4

le serveur me renvoie cette erreur :
ODBC : Msg 0, Niveau 19, État 1
SqlDumpExceptionHandler : Le processus 59 a provoqué l'exception
irrécupérable c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server termine ce
processus.

merci d'avance de votre aide :-)

Fabrice





Avatar
gfourrat
Salut,
L'analyse d'un dump nécessite l'ouverture d'un incident auprès du support
Microsoft.

Cordialement,

Guillaume Fourrat
Microsoft France
--------------------
From: "Le Doeuff Fabrice"
Subject: problème d'erreur d'acces : SqlDumpExceptionHandler : c0000005


EXCEPTION_ACCESS_VIOLATION
Date: Wed, 22 Oct 2003 18:22:22 +0200

bonjour ,
est ce que quelqu'un a déjà eut ce genre d'erreur et pourrait m'éclairer ?
lors d'un simple update
update contacts set cont_nom='yyyyy', cont_pre='yyy', cont_org='rrrrrrrrr',
cont_ser='Développement', cont_fon='NC', cont_mel='mail', cont_adr1='24 bd
de la Colonne', cont_tel='04 72 85 12 45', cont_fax='04 72 85 54 68',
cont_url='http://toto.com', cont_can='NC', cont_com='CHAMBERY',


cont_lie='',
cont_pho='', cont_adr2='', cont_adr3='' where cont_num=4

le serveur me renvoie cette erreur :
ODBC : Msg 0, Niveau 19, État 1
SqlDumpExceptionHandler : Le processus 59 a provoqué l'exception
irrécupérable c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server termine ce
processus.

merci d'avance de votre aide :-)

Fabrice