plsqldoc error

coniq

Member
Hi,

when i want do generate documentation for a table, I get a message saying:

"Could not generate documentation for
"

What am I doing wrong?

I am using PLSQLDev 5.1.2.682 and plsqldoc 1.1.0.

Thanks,

------------------
MW
 
Neither the new version not work ... maybe I'm doing sonething wrong .... this is a stupid example of a table ...

-- Create table
create table AAAA(C1 NUMBER,C2 NUMBER)
tablespace PERSONAL_TBS pctfree 10 pctused 40
initrans 1 maxtrans 255 storage
(initial 64K minextents 1 maxextents unlimited);
-- Add comments to the table
comment on table AAAA is 'ds table aaaa';
-- Add comments to the columns
comment on column AAAA.C1 is 'ds c1';
comment on column AAAA.C2 is 'ds c2';

... but is not working ... Should I have some specific grants on some SYS views?

Tx,
Stefan
 
Okay, so apparently the plsqldoc Plug-In has a problem creating a secondary session. Maybe this is an environment problem. Can you go to Help > About, press the 'Info' button, press the 'Copy all pages' button on this info screen, and paste this text into an e-mail reply?
 
Back
Top