Discussions
Categories
- 196.9K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.3K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 545 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.6K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 442 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
Oracle Designer CDD Error

Please,
Trying to modify a PL/SQL procedure under Designer 10G produce the error bellow, I checked the connection's OK, any idea how to solve this issue, thanks in advance.
Message
-------
CDD-22202: An error occurred trying to store text.
Cause
-----
The logic was not saved to the Repository. The database could be
down or you could have lost your network connection.
Action
------
Export the logic to a file and try to save it again later.
--------------------------------------------------------------------------------
Best Answer
-
What version of the database are you using? Colleagues of mine had trouble saving the pl/sql logic as well and were getting strange errors like "CDD-22202 An error trying to store text". They were using a versiioned repository. After downgrading to database 11.1.0.7 everything worked fine again inside the repository. So if you are using database 11gR2 or 12c change compatible to 11.1.0.7 in your DB.
Answers
-
What version of the database are you using? Colleagues of mine had trouble saving the pl/sql logic as well and were getting strange errors like "CDD-22202 An error trying to store text". They were using a versiioned repository. After downgrading to database 11.1.0.7 everything worked fine again inside the repository. So if you are using database 11gR2 or 12c change compatible to 11.1.0.7 in your DB.
-
I'm using Oracle Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bits.
What action I need to do to change the compatibility? under Oracle DB or Oracle Designer or elsewhere?
Thank you very much.
-
Inside the Oracle DB and the statement looks something like: ALTER SYSTEM SET COMPATIBLE = '11.1.0.7.0' SCOPE = SPFILE;.
-
I've altered the compatibility to 11.1.0.7 but when I restart the instance, I get the error :
ORA-12528: TNS:listener: all appropriate instances are blocking new connections
It seems that this version isn't compatible
-
According to the documentation on http://docs.oracle.com/cd/E11882_01/server.112/e23633/intro.htm the parameter should be in the range of 10.0.0.0.0 to 11.2.0.n.n. So 11.1.0.7 should be a valid number. You could switch your setting back to 11.2.0 to check if the error with the listener disappears.
-
What I've read, this option is just valid after an upgrade and also for versions lower than 11.2.
So I'm trying to install a brand new 11g release 1 database to see if I'll get rid of the CDD messages.
-
Thank you very much Mr Mark, I installed Oracle DB 11gR1 and no more CDD errors.
Another question if you have some grasp of Forms, when I compile some PLL, I get errors about missing package/function : CG$FORM_ERRORS.RAISE_FAILURE.
Any Idea about this function or where it's included?
-
CG$ refers to case generator which was the old name designer. The CG$FORMS_ERRORS is inside the designer library (OFGTEL) and you can find the designer libs inside cgenf61/admin folder.
-
You're right, many thanks Mark.