problema con cursor

06/04/2004 - 18:36 por walter diaz | Informe spam
hola

tengo el siguiente problema al ejecutar un cursor:
Server: Msg 16929, Level 16, State 1, Line 21
The cursor is READ ONLY.

el cursor es el siguiene

DECLARE @doc varchar(255)
DECLARE @AUXdoc VARCHAR(255)

DECLARE CR CURSOR FOR
select doc
from tmp_cartera_rep order by doc

set @AUXdoc = '0'

OPEN CR
FETCH NEXT FROM CR
INTO @doc

WHILE @@fetch_status = 0
BEGIN
IF @AUXdoc = @doc
BEGIN
DELETE FROM tmp_cartera_rep where current
of CR
where Current of CR
END

set @AUXdoc = @doc

FETCH NEXT FROM CR
INTO @doc
END

CLOSE CR
DEALLOCATE CR
GO


gracias por su colaboracion

Preguntas similare

Leer las respuestas

#1 ulises
06/04/2004 - 19:08 | Informe spam
Tienes que incluir la sentencia FOR UPDATE ... en la
declaración del cursor, revisa el BOL.

Ahora bien, me parece que lo que quieres hacer es eliminar
duplicados, ¿es asi?, entonces es mucho más facil copiar
todo a una tabla temporal con select distinct y luego
copiar a la tabla, algo como (sin probar).

SELECT INTO #t1 FROM SELECT DISTINCT * FROM tabla
DELETE FROM tabla
INSERT INTO tabla SELECT * FROM #t1

Saludos,
Ulises

hola

tengo el siguiente problema al ejecutar un cursor:
Server: Msg 16929, Level 16, State 1, Line 21
The cursor is READ ONLY.

el cursor es el siguiene

DECLARE @doc varchar(255)
DECLARE @AUXdoc VARCHAR(255)

DECLARE CR CURSOR FOR
select doc
from tmp_cartera_rep order by doc

set @AUXdoc = '0'

OPEN CR
FETCH NEXT FROM CR
INTO @doc

WHILE @@fetch_status = 0
BEGIN
IF @AUXdoc = @doc
BEGIN
DELETE FROM tmp_cartera_rep where current
of CR
where Current of CR
END

set @AUXdoc = @doc

FETCH NEXT FROM CR
INTO @doc
END

CLOSE CR
DEALLOCATE CR
GO


gracias por su colaboracion
.

Respuesta Responder a este mensaje
#2 Isaías
07/04/2004 - 00:11 | Informe spam
otra opcion, es hacer una UNION de la misma tabla, en una
tercera que servira de paso para eliminar los duplicados.

SELECT * FROM MyTabla
UNION
SELECT * FROM MyTabla

Debe funcionar
email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida