If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Informix > Printing Trade outputs in Stored procedures

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-22-04, 05:27
maruthi_77 maruthi_77 is offline
Registered User
 
Join Date: Jan 2004
Posts: 3
Printing Trade outputs in Stored procedures

Hi..

Im using Informix Dynamic Server 9.x,

I used some stroed procedures for my application. how can i debug them
while running it.

for example Print statement in SQL Server,
and out.println in Oracle..

And im using ServerStudio JE to write and execute procedures.


Any help will be highly appreaciated.

Regards
maruthi
Reply With Quote
  #2 (permalink)  
Old 01-22-04, 07:17
gurey gurey is offline
Registered User
 
Join Date: Aug 2003
Location: Argentina
Posts: 780
Re: Printing Trade outputs in Stored procedures

Quote:
Originally posted by maruthi_77
Hi..

Im using Informix Dynamic Server 9.x,

I used some stroed procedures for my application. how can i debug them
while running it.

for example Print statement in SQL Server,
and out.println in Oracle..

And im using ServerStudio JE to write and execute procedures.


Any help will be highly appreaciated.

Regards
maruthi
Hi,

For debug an store procedure you need insert the folowing sentences
CREATE PROCEDURE xxxxx
define
..............
.............

set debug file to "path of file.debug" ;
trace on;
........
........
.........
trace off;
....
.....
END PROCEDURE

Gustavo
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On