Previous | Next
Topic: utplsql on Linux
Conf: 537, Msg: 40076
From: Steven Feuerstein (steven@stevenfeuerstein.com)
Date: 12/16/00 08:32 AM
utplsql on Linux Steven Feuerstein sfeuerstein steven@stevenfeuerstein.com
No, I do not know what is wrong, but let's check a few things.
Please run this query and show us what you get:
SELECT SUBSTR(version,1,3) col
FROM product_component_version
WHERE UPPER(product) LIKE 'ORACLE7%'
OR UPPER(product) LIKE 'PERSONAL ORACLE%'
OR UPPER(product) LIKE 'ORACLE8%';
Then put the following query in a file (say show.sql):
SET PAGESIZE 66
SET VERIFY OFF
SET FEEDBACK OFF
SELECT TO_CHAR (line) || text Line_of_code
FROM user_source
WHERE name='UTPLSQL'
AND type='PACKAGE BODY'
AND line BETWEEN &1 -5 AND &1 + 5
/
and then run this:
@show 336
@show 623
@show 687
and then perhaps I can see what is going wrong.
Thanks, SF
[feel free to send the output directly to steven@stevenfeuerstein.com as well.]