Error al crear un DataWindow de un Store Procedure
Publicado por Jose Luis Urrea S. (8 intervenciones) el 29/07/2002 17:09:29
Hola Todos.
Estoy intentando crear un DataWindow pero con un Store Procedure como DataSource y ni siquera pinta el DW ya que me sale el siguiente error:
Cannot create DataWindow
ORA-24333 Zero iteration count
1 execute PRUEBA.SP_TEMPORAL;’
Ya estuve mirando el error ORA-24333 y me dicen esto:
Cause: An iteration count of zero was specified for the statement.
Action: Specify the number of times this statement must be executed
Pero no se donde especificar el numero de veces que se debe ejecutar la declaracion.
El procedimiento almacenado es el siguiente y muy sencillo:
PROCEDURE SP_TEMPORAL is
v_cuenta number(15);
v_nombre varchar2(200);
BEGIN
select nroidenti, nombre
into v_cuenta, v_nombre
from conterce
where nroidenti = 70165695;
END;
Como podria solucionar este error? Que estructura debe tener un store procedure para poder crear un DW atraves de el.
Muchas Gracias
Jose Luis Urrea
Estoy intentando crear un DataWindow pero con un Store Procedure como DataSource y ni siquera pinta el DW ya que me sale el siguiente error:
Cannot create DataWindow
ORA-24333 Zero iteration count
1 execute PRUEBA.SP_TEMPORAL;’
Ya estuve mirando el error ORA-24333 y me dicen esto:
Cause: An iteration count of zero was specified for the statement.
Action: Specify the number of times this statement must be executed
Pero no se donde especificar el numero de veces que se debe ejecutar la declaracion.
El procedimiento almacenado es el siguiente y muy sencillo:
PROCEDURE SP_TEMPORAL is
v_cuenta number(15);
v_nombre varchar2(200);
BEGIN
select nroidenti, nombre
into v_cuenta, v_nombre
from conterce
where nroidenti = 70165695;
END;
Como podria solucionar este error? Que estructura debe tener un store procedure para poder crear un DW atraves de el.
Muchas Gracias
Jose Luis Urrea
Valora esta pregunta


0