Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> SQL*PLUS stops responding after SQL completion
Dear all,
I run a SQL in SQL*PLUS (PLUS80W.EXE) in Windows 98 client, and it completes, but SQL*PLUS stops responding so that I cannot commit it. I am sure the SQL has been completed because the SPOOL output file is ready and the session is switched from ACTIVE to INACTIVE from the Instance Manager window. I wonder why SQL*PLUS stops responding after a successful SQL execution. Anyone has comments? Thanks in advance.
The SQL is as follows:
<begin here>
SPOOL sales_fsr_yearly
PROMPT
PROMPT Franchise Show Room Sales Yearly Summary
PROMPT
INSERT INTO tb_sales_fsr_yearly
SELECT
a.op_year, b.branch_code, b.branch_type, b.fsr_units, a.avon_units,
op_year, SUM(units) avon_units
ba.op_year, bb.branch_code, bb.branch_type, SUM(ba.units) fsr_units FROM tb_orders ba, tb_branch bb
SPOOL OFF
COMMIT;
<end here>
Regards,
Dino
Received on Wed Feb 28 2001 - 21:51:21 CST
![]() |
![]() |