Pl/SQL debug

2002-04-04 Thread Roland . Skoldblom

Hallo,

I am trying to insert things  into the table PRISREGISTER_KOPIA_WED but why doesnt the 
insert statement work.
It says Missing expression when the insertstatement runs and when i look at the sql 
code which is trying to be run to insertinto the table
it says just missing expression and it seems that I dont nclude BORTTAGS_FLAGG by 
some reason. can anyone help me with this:
The sql which is to run is INSERT INTO 
PBK.PRISREGISTER_kopia_wed(BUTIKID,EAN,PERIOD,LAGSTAPRIS,PRIS,UNDERLAGID,SUBSTITUT,KOMMENTAR,BUTIKTYP,VARUTYP,REGICASTATUS,VARENR,LEVNR,VARE_SNR,BORTTAGS_FLAGG)
 VALUES (116,7312300342180,'200206',
0,9.95,616,NULL,'null', 0 , 0, 1, 290799, 13173, 10, )

As you see the last parameter is missing.

The whole pl/sql code looks like this included file.

(See attached file: newregicapriceroland.sql)

Hope any one can help me with this. Would appreciate very much.

Thanks in advance

Roland S




newregicapriceroland.sql
Description: Binary data


Re: Pl/SQL debug

2002-04-04 Thread Mohammed Shakir

You are missing the BORTTAGS_FLAGG in your INSERT STATEMENT at the end
of the code, where you are creating the string. The last variable is
vare_snr and not BORTTAGS_FLAGG 


lvSQL := 'INSERT INTO PBK.PRISREGISTER(' ||
  'BUTIKID,' ||
  'EAN,' ||
  'PERIOD,' ||
  'LAGSTAPRIS,' ||
  'PRIS,' ||
  'UNDERLAGID,' ||
  'SUBSTITUT,' ||
  'KOMMENTAR,' ||
  'BUTIKTYP,' ||
  'VARUTYP,' ||
  'REGICASTATUS,' ||
  'VARENR,' ||
  'LEVNR,' ||
  'VARE_SNR) ' ||
  'VALUES ('||
ButikID||','||-- BUTIKID
Ean||','''||  -- EAN
Period||''', ' || -- PERIOD
LagstaPris||','|| -- LAGSTAPRIS
strButikPris ||',' ||-- PRIS
inUnderlagid ||',' || -- UNDERLAGSID
strsubstitutean || ',''' ||   -- SUBSTITUT (null or
LPKORGEANREL.EANREL)
--''null', '||  -- KOMMENTAR
'null'', '||  -- KOMMENTAR
'0' || ' , ' ||-- BUTIKTYP
--'0' || ', ' ||-- BUTIKTYP
varutyp || ', ' ||-- VARUTYP (0 or according to LPKORGEANREL)
IcaStatus||', ' || -- REGICASTATUS
varenr || ', ' || -- VARUNR (original VARENR, not the
substitutes)
levnr || ', ' ||  -- LEVNR (original LEVNR, not the substitutes)
vare_snr || ')';   -- VARE_SNR (original VARE_SNR, not the
substitutes)




--- [EMAIL PROTECTED] wrote:
 Hallo,
 
 I am trying to insert things  into the table PRISREGISTER_KOPIA_WED
 but why doesnt the insert statement work.
 It says Missing expression when the insertstatement runs and when i
 look at the sql code which is trying to be run to insertinto the
 table
 it says just missing expression and it seems that I dont nclude
 BORTTAGS_FLAGG by some reason. can anyone help me with this:
 The sql which is to run is INSERT INTO

PBK.PRISREGISTER_kopia_wed(BUTIKID,EAN,PERIOD,LAGSTAPRIS,PRIS,UNDERLAGID,SUBSTITUT,KOMMENTAR,BUTIKTYP,VARUTYP,REGICASTATUS,VARENR,LEVNR,VARE_SNR,BORTTAGS_FLAGG)
 VALUES (116,7312300342180,'200206',
 0,9.95,616,NULL,'null', 0 , 0, 1, 290799, 13173, 10, )
 
 As you see the last parameter is missing.
 
 The whole pl/sql code looks like this included file.
 
 (See attached file: newregicapriceroland.sql)
 
 Hope any one can help me with this. Would appreciate very much.
 
 Thanks in advance
 
 Roland S
 
 

 ATTACHMENT part 2 application/octet-stream
name=newregicapriceroland.sql



=
Mohammed Shakir
CompuSoft, Inc.
11 Heather Way
East Brunswick, NJ 08816-2825
(732) 672-0464 (Cell)
(732) 257-6001 (Home)

__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Mohammed Shakir
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Re[2]: PL/SQL Debug tools

2001-03-07 Thread Jamadagni, Rajendra

Procedure builder is going away  you'll have to use stored procedure
editor from within forms builder.

HTH
Raj

*

This e-mail message is confidential, intended only for the named recipient(s) above 
and may contain information that is privileged, attorney work product or exempt from 
disclosure under applicable law. If you have received this message in error, or are 
not the named recipient(s), please immediately notify ESPN at (860) 766-2000 and 
delete this e-mail message from your computer, Thank you.

*

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Jamadagni, Rajendra
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Re[2]: PL/SQL Debug tools

2001-03-05 Thread Dasko, Dan

We won't hold it against you.  :)

Dan 'tried procedure builder, but found look and hack worked better'

-Original Message-
Sent: Sunday, March 04, 2001 10:00 PM
To: Multiple recipients of list ORACLE-L


 I'm sorry to admit it, but I find Procedure builder that comes bundled 
with Developer 2000 asthe PL/SQL debug tool of choice.  At least it 
sends me directly to the line it does not like with a good explanation 
of what I did wrong, or at least what it thinks I did wrong.  I 
especially like it for building new functions, procedures and packages 
since it does a whole lot of the work for you.

Dick Goulet

-- Reply Separator --
Author: Charlie Mengler [EMAIL PROTECTED]
Date: 3/4/01 2:40 PM

FWIW - Oracle 8i claims to support interactive debugging via a 2nd
session.
I've never tried it myself, but I have read Oracle's descriptoin of how 
to
do it.

HAND!

[EMAIL PROTECTED] wrote:

 Hi Venu!

 I'm offering a very simple shareware
 PL/SQL Debugger that allows you to send
 messages from your PL/SQL code on the
 fly to a simple GUI interface.
 Have a look at it at:
 http://www.materialdreams.com/products.html

 -Original Message-
 Nair C.N Nair
 Sent: Friday, March 02, 2001 11:46 PM
 To: Multiple recipients of list ORACLE-L

 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment.

 If any sugetions will be apreciated.

 Thanks and Regards
 Venu G Nair

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Venugopalan Nair C.N Nair
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

_
This e-mail message has been scanned for the presence of all known computer
viruses by the MessageLabs Virus Control Center.  However, it is still
recommended that you use local virus scanning software to monitor for the
presence of viruses.  
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Dasko, Dan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru

RE: PL/SQL Debug tools

2001-03-05 Thread Venugopalan Nair C.N Nair

Hi ,

thanks for the tool.

VGN
--- [EMAIL PROTECTED] wrote:
 Hi Venu!
 
 I'm offering a very simple shareware
 PL/SQL Debugger that allows you to send
 messages from your PL/SQL code on the
 fly to a simple GUI interface.
 Have a look at it at:
 http://www.materialdreams.com/products.html
 
 -Original Message-
 Nair C.N Nair
 Sent: Friday, March 02, 2001 11:46 PM
 To: Multiple recipients of list ORACLE-L
 
 
 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment. 
 
 If any sugetions will be apreciated.
 
 Thanks and Regards
 Venu G Nair
 
 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail. 
 http://personal.mail.yahoo.com/
 -- 
 Please see the official ORACLE-L FAQ:
 http://www.orafaq.com
 -- 
 Author: Venugopalan Nair C.N Nair
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- (858) 538-5051  FAX:
 (858) 538-5051
 San Diego, California-- Public Internet
 access / Mailing Lists


 To REMOVE yourself from this mailing list, send an
 E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of
 'ListGuru') and in
 the message BODY, include a line containing: UNSUB
 ORACLE-L
 (or the name of mailing list you want to be removed
 from).  You may
 also send the HELP command for other information
 (like subscribing).
 -- 
 Please see the official ORACLE-L FAQ:
 http://www.orafaq.com
 -- 
 Author: 
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- (858) 538-5051  FAX:
 (858) 538-5051
 San Diego, California-- Public Internet
 access / Mailing Lists


 To REMOVE yourself from this mailing list, send an
 E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of
 'ListGuru') and in
 the message BODY, include a line containing: UNSUB
 ORACLE-L
 (or the name of mailing list you want to be removed
 from).  You may
 also send the HELP command for other information
 (like subscribing).


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Venugopalan Nair C.N Nair
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Re[2]: PL/SQL Debug tools

2001-03-05 Thread Kimberly Smith

Actually, when I was in a Forms environment it was my
tool of choice as well.  I would actually develop in TOAD
but if I hit a compile error that I could not easily figure
out I compilied it in Procedure Builder and usually found
it right away.  

-Original Message-
Sent: Sunday, March 04, 2001 7:00 PM
To: Multiple recipients of list ORACLE-L


 I'm sorry to admit it, but I find Procedure builder that comes bundled 
with Developer 2000 asthe PL/SQL debug tool of choice.  At least it 
sends me directly to the line it does not like with a good explanation 
of what I did wrong, or at least what it thinks I did wrong.  I 
especially like it for building new functions, procedures and packages 
since it does a whole lot of the work for you.

Dick Goulet

-- Reply Separator --
Author: Charlie Mengler [EMAIL PROTECTED]
Date: 3/4/01 2:40 PM

FWIW - Oracle 8i claims to support interactive debugging via a 2nd
session.
I've never tried it myself, but I have read Oracle's descriptoin of how 
to
do it.

HAND!

[EMAIL PROTECTED] wrote:

 Hi Venu!

 I'm offering a very simple shareware
 PL/SQL Debugger that allows you to send
 messages from your PL/SQL code on the
 fly to a simple GUI interface.
 Have a look at it at:
 http://www.materialdreams.com/products.html

 -Original Message-
 Nair C.N Nair
 Sent: Friday, March 02, 2001 11:46 PM
 To: Multiple recipients of list ORACLE-L

 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment.

 If any sugetions will be apreciated.

 Thanks and Regards
 Venu G Nair

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Venugopalan Nair C.N Nair
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kimberly Smith
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other

RE: PL/SQL Debug tools

2001-03-04 Thread dieter . oberkofler

Hi Venu!

I'm offering a very simple shareware
PL/SQL Debugger that allows you to send
messages from your PL/SQL code on the
fly to a simple GUI interface.
Have a look at it at:
http://www.materialdreams.com/products.html

-Original Message-
Nair C.N Nair
Sent: Friday, March 02, 2001 11:46 PM
To: Multiple recipients of list ORACLE-L


Hi,
I a looking for some debuging tools for Pl/Sql in
windows Environment. 

If any sugetions will be apreciated.

Thanks and Regards
Venu G Nair

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Venugopalan Nair C.N Nair
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: PL/SQL Debug tools

2001-03-04 Thread Charlie Mengler

FWIW - Oracle 8i claims to support interactive debugging via a 2nd
session.
I've never tried it myself, but I have read Oracle's descriptoin of how to
do it.

HAND!

[EMAIL PROTECTED] wrote:

 Hi Venu!

 I'm offering a very simple shareware
 PL/SQL Debugger that allows you to send
 messages from your PL/SQL code on the
 fly to a simple GUI interface.
 Have a look at it at:
 http://www.materialdreams.com/products.html

 -Original Message-
 Nair C.N Nair
 Sent: Friday, March 02, 2001 11:46 PM
 To: Multiple recipients of list ORACLE-L

 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment.

 If any sugetions will be apreciated.

 Thanks and Regards
 Venu G Nair

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Venugopalan Nair C.N Nair
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re[2]: PL/SQL Debug tools

2001-03-04 Thread dgoulet

 I'm sorry to admit it, but I find Procedure builder that comes bundled 
with Developer 2000 asthe PL/SQL debug tool of choice.  At least it 
sends me directly to the line it does not like with a good explanation 
of what I did wrong, or at least what it thinks I did wrong.  I 
especially like it for building new functions, procedures and packages 
since it does a whole lot of the work for you.

Dick Goulet

-- Reply Separator --
Author: Charlie Mengler [EMAIL PROTECTED]
Date: 3/4/01 2:40 PM

FWIW - Oracle 8i claims to support interactive debugging via a 2nd
session.
I've never tried it myself, but I have read Oracle's descriptoin of how 
to
do it.

HAND!

[EMAIL PROTECTED] wrote:

 Hi Venu!

 I'm offering a very simple shareware
 PL/SQL Debugger that allows you to send
 messages from your PL/SQL code on the
 fly to a simple GUI interface.
 Have a look at it at:
 http://www.materialdreams.com/products.html

 -Original Message-
 Nair C.N Nair
 Sent: Friday, March 02, 2001 11:46 PM
 To: Multiple recipients of list ORACLE-L

 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment.

 If any sugetions will be apreciated.

 Thanks and Regards
 Venu G Nair

 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail.
 http://personal.mail.yahoo.com/
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author: Venugopalan Nair C.N Nair
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Charlie Mengler
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: PL/SQL Debug tools

2001-03-03 Thread Marin Dimitrov


- Original Message -
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Sent: Saturday, March 03, 2001 00:45


 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment.

 If any sugetions will be apreciated.


Try PL/SQL Developer -  http://www.allroundautomations.nl/plsqldev.html

hth,

Marin


"When someone is seeking, it happens quite easily that he only sees
the thing that he is seeking; that he is unable to find anything, unable to
absorb anything, because he is only thinking of the thing he is seeking,
because he is obsessed with his goal. Seeking means: to have a goal;
but finding means: to be free, to be receptive, to have no goal. ..."


Herman Hesse, "Siddhartha"



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Marin Dimitrov
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: PL/SQL Debug tools

2001-03-02 Thread schmoldt

Oracle's Procedure Builder has a basic debugger, and you probably already
have it if you use Forms and Reports.

 -Original Message-
 From: Venugopalan Nair C.N Nair [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 02, 2001 4:46 PM
 To: Multiple recipients of list ORACLE-L
 Subject: PL/SQL Debug tools
 
 
 Hi,
 I a looking for some debuging tools for Pl/Sql in
 windows Environment. 
 
 If any sugetions will be apreciated.
 
 Thanks and Regards
 Venu G Nair
 
 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail. 
 http://personal.mail.yahoo.com/
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Venugopalan Nair C.N Nair
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).