Advertisement

03.12.2008 at 05:39AM PDT, ID: 23234814
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Getting output of pl/sql procedure into sqlplus spool file?

I don't get the output of "dbms_output" to the spool file tmp.log.

All I get is this: "PL/SQL procedure successfully completed."

How do I get output of pl/sql procedure into sqlplus spool file?

*******
Script:
*******
...
...
sqlplus -s << EOF >> /dev/null
$db_login
 
 
spool $logs_dir/tmp.log
 
begin
if to_char(sysdate,'DY') in ('SAT','SUN') then
      null; -- no activity needed on weekends.
elsif to_char(sysdate,'DY') = 'MON' then
      --removing data inserted on previous week's thursday and before.
      delete from tab1 where dt < TRUNC(sysdate) -3;
      dbms_output.put_line('rows deleted from tab1 '||sql%rowcount);
      delete from tab2 where dt < TRUNC(sysdate) -3;
      dbms_output.put_line('rows deleted from tab2 '||sql%rowcount);
else
      --removing data more than 2 days old during weekdays except on monday.
      delete from tab1 where dt < TRUNC(sysdate) -1;
      dbms_output.put_line('rows deleted from tab1 '||sql%rowcount);
      delete from tab2 where dt < TRUNC(sysdate) -1;
      dbms_output.put_line('rows deleted from tab2 '||sql%rowcount);
end if;
end;
 
/


********
Output:
********
FTP Successfully Done
loading tab1...
Loading into  tab1 table successful
loading  tab2...
Loading into  tab2 table successful
checking for duplicates...

PL/SQL procedure successfully completed.
..
Start your free trial to view this solution
Question Stats
Zone: Database
Question Asked By: gram77
Solution Provided By: jinesh_kamdar
Participating Experts: 3
Solution Grade: A
Views: 259
Translate:
Loading Advertisement...
03.12.2008 at 05:43AM PDT, ID: 21105274

Rank: Guru

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.12.2008 at 05:44AM PDT, ID: 21105279

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.12.2008 at 05:48AM PDT, ID: 21105306

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.12.2008 at 05:51AM PDT, ID: 21105331

Rank: Guru

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.12.2008 at 06:36AM PDT, ID: 21105784

Rank: Master

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29 / EE_QW_EXPERT_20070906