Recent content by Ed Delaney

  1. E

    SQL Window hangs on query returning xmltype

    FYI. We just opened a TAR with Oracle that is now an official bug and in Oracle development. The issue does not occur in 10g. It concerns Oracle hanging in certain cases when PL/SQl manupulates complex Oracle object types. I don't have any more deatails at this point. Ed Delaney SungardSct
  2. E

    Quoted /* and */ not escaped

    I have the following in my plsql program: INSERT INTO guraddl VALUES (session_id, genutil.incr, '/*'); INSERT INTO guraddl VALUES (session_id, genutil.incr, '*/'); The '/*' is interpreted as /* in the program window. Likewise the '*/' is treated as */. If it's quoted, it should be treated as...
  3. E

    PL/SQLDoc schedule?

    This first one fails to generate the package header doc, as well as the doc for function_test2. CREATE OR REPLACE PACKAGE efdtest AS /** * This is a test of formal comments with NO BLANK LINE FOLLOWING */ dummy_variable NUMBER; /** this is function doc for Function_test with FUNCTION...
  4. E

    PL/SQLDoc schedule?

    Can you share your schedule for an update pl/sqldoc plugin? We're still working around a few issues with pl/sql doc. In particular we have to put a blank line after the end of the fist fomal comment block /***/ in the package header doc section or that section is not recognized. I'm also...
  5. E

    Debugger Hanging

    We don't use RAC and still have the debugger hang on a regular basis. So far just cope with it. There definitely is some relationship between the size of the package and frequency of hanging. We chop down the size of a package and the debugger is happier. Also, the load on the sever is an...
  6. E

    The end of most beautifier enhancement requests request

    Great idea! Vote early, vote often! ed
  7. E

    PL/Doc update?

    Hi, can you tell me when the next version of the pldoc plug-in is scheduled? Thanks. Ed
  8. E

    Debuger hangs

    We're suddenly getting the same debugger hanging up issues. Oracle 9i. It gets to the breakpoint, and as soon as I mouse over a variable to see the value, it goes THARN. Have to kill it. What information would be helpful in diagnosing htis? The package size isn't huge, the packages are in the...
  9. E

    PLDoc - #value tag

    In the documentation on tags, it describes #value as a way to document valid values for a parameter. In the example program, it shows {*} for the tag. #value seems to not work, but {*} does work. Will #value be supported? Sorry to be a pest, and Thanks, ed The doc sez: "#value A possible...
  10. E

    PLDoc @headcom tag

    We placed @headcom tags in our plsql code, following the convetions described at the pldoc project at http://sourceforge.net/projects/pldoc/. Will these be recognized in verson 6, or should we strip them out? Thanks, ed
  11. E

    Debug date variables

    So far the debugger interface is really handy. However, I'm debugging a DATE issue, and would love it if the mouseover for a date variable would display the TIMESTAMP as well, as in to_char(:date, 'dd-mon-yyyy hh:mi:ss') Would that be possible? thanks! ed
  12. E

    PLDoc - HTML, user defined tags

    Hi, I was wondering if there are any plans to expand the support of embedded html tags. [TH] apparently is not currently supported. Also, I had heard that 6.0 would support more tags, and perhaps even user defined tags. Any more information available on this? Thanks, Ed
Back
Top