Print Thread
Page 2 of 5 1 2 3 4 5
Re: Debugger Hangs on Array
#14159 06/15/04 11:39 AM
Joined: Jun 2003
Posts: 52
Lenzburg, Switzerland
T
til Offline OP
Member
OP Offline
Member
T
Joined: Jun 2003
Posts: 52
Lenzburg, Switzerland
OK, one case it happens is, when the array is a parameter.

Re: Debugger Hangs on Array
#14160 07/30/04 12:39 AM
Joined: Jul 2004
Posts: 5
CA, US
S
Member
Offline
Member
S
Joined: Jul 2004
Posts: 5
CA, US
I am also facing this problem which is seriously affecting my developement since the entire code is based on collections.
The "View Collection Variable" option used to work just fine till we upgraded our server from 8.1.7 to 9.2.0.4. Simultaneously I moved from Windows/2000 to XP.

Since then whenever viewing a collection variable, the entire pl/sql developer hangs.

Just today, the company upgraded to PL/SQL developer 5.1.6 version thinking the bug would be fixed in this version. But the thing still hangs.

I have bunch of collections of strictly scalar data type. Most of them are defined along following lines:

create or replace type MediumCharList as varray(4000) of varchar2(4000);

Variables used inside PL/SQL code are mostly of type MediumCharList.

Re: Debugger Hangs on Array
#14161 08/23/04 09:59 PM
Joined: Jul 2004
Posts: 5
CA, US
S
Member
Offline
Member
S
Joined: Jul 2004
Posts: 5
CA, US
The problem can be narrowed down to Oracle 9.2.0.1 specifically since none of the older and newer versions of PL/SQL developer now work for "View Collection" option. And before we migrated from Oracle 8.xx to 9.2, atleast the older versions of PL/SQL developer *were* working correctly. Any clues what it might be in Oracle 9.2.0.1 that is not allowing a successful "View Collection"?

Re: Debugger Hangs on Array
#14162 08/24/04 06:57 PM
Joined: Aug 1999
Posts: 22,206
Member
Offline
Member
Joined: Aug 1999
Posts: 22,206
No clue yet. What is your server operating system?


Marco Kalter
Allround Automations
Re: Debugger Hangs on Array
#14163 08/26/04 01:36 AM
Joined: Aug 2004
Posts: 2
S
Member
Offline
Member
S
Joined: Aug 2004
Posts: 2
In the debugger, when I rightclick on an array and then chose "view collection variable"
pl/sql developer freezes.

- My PL/SQL Developer version is 6.0.0.810
- My OS is Windows XP Professional version 2002 (Service Pack 1)
- Database version is Oracle9i Enterprise Edition Release 9.2.0.3.0 - Production
- Clients versions: SQL*Plus: Release 9.2.0.1.0 or
SQL*Plus: Release 8.1.7.0.0 (two oracle homes)

** In debbuger example:

1. Type gt_Vetor Is Table Of VarChar2(50) Index By Binary_Integer;
2. Type gt_Matriz Is Table Of gt_Vetor Index By Binary_Integer;

3.
CREATE OR REPLACE Procedure PRC_TEST Is
vt_Test gt_Matriz;
begin
-- Load vt_Test
vt_Test := pkgl_newsic_ch.fncl_get_tab_centrais_est;

If vt_Test(2)(2) = 'xxx' Then --> here PL/SQL Developer freezes, when mouse enter over "vt_Test(2)(2)" !!
dbms_output.put_line('1');
Else
dbms_output.put_line('2');
End If;
End;
/

Tks !!

[]'s,
Luciana Angeli

Re: Debugger Hangs on Array
#14164 11/23/04 04:25 AM
Joined: Jul 2004
Posts: 5
CA, US
S
Member
Offline
Member
S
Joined: Jul 2004
Posts: 5
CA, US
Any progress on this issue by the Allroundautomations Team? This bug has made PL/SQL debugger practically useless to me.

Re: Debugger Hangs on Array
#14165 11/23/04 11:20 PM
Joined: Aug 1999
Posts: 22,206
Member
Offline
Member
Joined: Aug 1999
Posts: 22,206
Not really. Can you let me know your Oracle Server Operating System?


Marco Kalter
Allround Automations
Re: Debugger Hangs on Array
#14166 03/06/07 02:26 PM
Joined: Mar 2007
Posts: 12
Swiss
L
Member
Offline
Member
L
Joined: Mar 2007
Posts: 12
Swiss
Hello,

I just tried with PL/SQL Developer 7.1.0 (beta 3), and I still can reproduce this problem.... I'm using Oracle server 9.0.2.7.0. Couldn't you fix it?

Best regards,
Laurent Feltz

Re: Debugger Hangs on Array
#14167 03/06/07 03:02 PM
Joined: Jun 2004
Posts: 105
S
Member
Offline
Member
S
Joined: Jun 2004
Posts: 105
i think this somehow related to this one:

topic

Re: Debugger Hangs on Array
#14168 03/07/07 01:41 PM
Joined: Mar 2007
Posts: 12
Swiss
L
Member
Offline
Member
L
Joined: Mar 2007
Posts: 12
Swiss
It's not only bi dimensional varrays, but normal varrays too frown . Here a simple test case (with server 9.2.0.7 and pl/sql dev 7.1 beta 3):

As I can read in this post, it seems that it doesn't with oracle databases >= 9.2.0.1

Marco: Could you try this test case using a database like 9.2.0.x? Do you confirm the problem?

CREATE OR REPLACE TYPE "AR_NUM" AS VARRAY(2147483647) OF NUMBER;

CREATE OR REPLACE PROCEDURE test_varray ( par IN ar_num)
IS
BEGIN
IF
par IS NOT NULL
THEN
dbms_output.put_line('<NOT NULL>'); // Breakpoint here -> PL/sql Dev freezes when I try to watch from here the parameter "par"
END IF;
RETURN;
END test_varray;


-- Test script
declare
-- Local variables here
lar ar_num := ar_num (1, 2, 3);
begin
test_varray (par => lar);
end;

Laurent.

Page 2 of 5 1 2 3 4 5

Moderated by  support 

Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.4
(Release build 20200307)
Responsive Width:

PHP: 7.1.33 Page Time: 0.136s Queries: 13 (0.020s) Memory: 2.5597 MB (Peak: 3.0380 MB) Data Comp: Off Server Time: 2024-04-29 11:53:13 UTC
Valid HTML 5 and Valid CSS