dbTalk Databases Forums  

Forms 9.0.4.2

comp.databases.oracle.misc comp.databases.oracle.misc


Discuss Forms 9.0.4.2 in the comp.databases.oracle.misc forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Ed_Zep
 
Posts: n/a

Default Forms 9.0.4.2 - 07-21-2006 , 04:41 PM






We're running Oracle 9.2.0.6 database and Developer 9.0.4.2 on RH Linux
3.0.

All the forms compile but when I run the first one I get an ORA-04062
error.

Can this be due to a corrupt library file?

I tried the workaround suggested by Oracle but I was wondering can
anyone tell me how I can find the package it's failing on?

Many thanks, Ed.


Reply With Quote
  #2  
Old   
Robbert van der Hoorn
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-21-2006 , 05:58 PM







"Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote

Quote:
We're running Oracle 9.2.0.6 database and Developer 9.0.4.2 on RH Linux
3.0.

All the forms compile but when I run the first one I get an ORA-04062
error.

Can this be due to a corrupt library file?

I tried the workaround suggested by Oracle but I was wondering can
anyone tell me how I can find the package it's failing on?

Many thanks, Ed.

Ed,
ORA-04062 can be caused by several issues, and you don't state which
workaround you tried.
It's usually something changed in the database causing your forms (pll's) to
be recompiled. It's a classic...

Perform actions in this order:
1) Compile your database packages
2) Compile your plls
3) Compile your forms.

Robbert




Reply With Quote
  #3  
Old   
Ed_Zep
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-21-2006 , 06:46 PM



Hi Robbert,

thanks for the response.
The workaround I tried was changing the init.ora thus:
'remote_dependencies_mode = signature' and recompiled the form.

How can I tell which packages/procedures the form is calling, please?

Cheers, Ed.



Quote:
Ed,
ORA-04062 can be caused by several issues, and you don't state which
workaround you tried.
It's usually something changed in the database causing your forms (pll's) to
be recompiled. It's a classic...

Perform actions in this order:
1) Compile your database packages
2) Compile your plls
3) Compile your forms.

Robbert


Reply With Quote
  #4  
Old   
Ed_Zep
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-21-2006 , 06:47 PM



Also, I think I've already used TOAD to recompile every bit of PL/SQL.

Ed.
Robbert van der Hoorn wrote:
Quote:
"Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote in message
news:1153518085.107588.142410 (AT) i3g2000cwc (DOT) googlegroups.com...
We're running Oracle 9.2.0.6 database and Developer 9.0.4.2 on RH Linux
3.0.

All the forms compile but when I run the first one I get an ORA-04062
error.

Can this be due to a corrupt library file?

I tried the workaround suggested by Oracle but I was wondering can
anyone tell me how I can find the package it's failing on?

Many thanks, Ed.


Ed,
ORA-04062 can be caused by several issues, and you don't state which
workaround you tried.
It's usually something changed in the database causing your forms (pll's) to
be recompiled. It's a classic...

Perform actions in this order:
1) Compile your database packages
2) Compile your plls
3) Compile your forms.

Robbert


Reply With Quote
  #5  
Old   
Robbert van der Hoorn
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-22-2006 , 05:46 AM



Ed, please put reactions on bottom of post or in line (do not top post). See
below...

"Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote

Quote:
Also, I think I've already used TOAD to recompile every bit of PL/SQL.

Ed.
Robbert van der Hoorn wrote:
"Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote in message
news:1153518085.107588.142410 (AT) i3g2000cwc (DOT) googlegroups.com...
We're running Oracle 9.2.0.6 database and Developer 9.0.4.2 on RH
Linux
3.0.

All the forms compile but when I run the first one I get an ORA-04062
error.

Can this be due to a corrupt library file?

I tried the workaround suggested by Oracle but I was wondering can
anyone tell me how I can find the package it's failing on?

Many thanks, Ed.


Ed,
ORA-04062 can be caused by several issues, and you don't state which
workaround you tried.
It's usually something changed in the database causing your forms
(pll's) to
be recompiled. It's a classic...

Perform actions in this order:
1) Compile your database packages
2) Compile your plls
3) Compile your forms.

Robbert

1) Just check if all your db-stuff is compiled and valid (e.g. with toad)
but beware: if you compile a package with toad, and compile both spec and
body, other packages may become invalid.
2) Look in the source code of your forms which pll's are used (attached
libraries) and compile them in bottom to top order
3) compile your form.

If you compile against a development database but run againts a production
database, you will have to repeat these steps on the production system (so
compile your form while connected to production database!)

Robbert




Reply With Quote
  #6  
Old   
Ed_Zep
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-22-2006 , 11:16 AM



Sorry Robert, I'm using Google's front end to newsgroups. I didn't know
it caused a problem.

I'll give your suggestion a go and see if it works.

Thanks, Ed.


Robbert van der Hoorn wrote:
Quote:
Ed, please put reactions on bottom of post or in line (do not top post). See
below...

"Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote in message
news:1153525664.562997.106920 (AT) m79g2000cwm (DOT) googlegroups.com...
Also, I think I've already used TOAD to recompile every bit of PL/SQL.

Ed.
Robbert van der Hoorn wrote:
"Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote in message
news:1153518085.107588.142410 (AT) i3g2000cwc (DOT) googlegroups.com...
We're running Oracle 9.2.0.6 database and Developer 9.0.4.2 on RH
Linux
3.0.

All the forms compile but when I run the first one I get an ORA-04062
error.

Can this be due to a corrupt library file?

I tried the workaround suggested by Oracle but I was wondering can
anyone tell me how I can find the package it's failing on?

Many thanks, Ed.


Ed,
ORA-04062 can be caused by several issues, and you don't state which
workaround you tried.
It's usually something changed in the database causing your forms
(pll's) to
be recompiled. It's a classic...

Perform actions in this order:
1) Compile your database packages
2) Compile your plls
3) Compile your forms.

Robbert


1) Just check if all your db-stuff is compiled and valid (e.g. with toad)
but beware: if you compile a package with toad, and compile both spec and
body, other packages may become invalid.
2) Look in the source code of your forms which pll's are used (attached
libraries) and compile them in bottom to top order
3) compile your form.

If you compile against a development database but run againts a production
database, you will have to repeat these steps on the production system (so
compile your form while connected to production database!)

Robbert


Reply With Quote
  #7  
Old   
Sybrand Bakker
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-22-2006 , 02:23 PM



On 22 Jul 2006 09:16:33 -0700, "Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote:

Quote:
Sorry Robert, I'm using Google's front end to newsgroups. I didn't know
it caused a problem.

I'll give your suggestion a go and see if it works.

Thanks, Ed.

Please stop top-posting.

You only need to hit ctrl-end to stop top-posting.
You aren't handicapped, are you?

--
Sybrand Bakker, Senior Oracle DBA


Reply With Quote
  #8  
Old   
Ed_Zep
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-22-2006 , 05:40 PM




Quote:
Please stop top-posting.

You only need to hit ctrl-end to stop top-posting.
You aren't handicapped, are you?

--
Sybrand Bakker, Senior Oracle DBA
You really are pathetic, aren't you?
What if I *was* handicapped? Do you have something against people who
are?



Reply With Quote
  #9  
Old   
Sybrand Bakker
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-22-2006 , 05:46 PM



On 22 Jul 2006 15:40:47 -0700, "Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote:

Quote:
Please stop top-posting.

You only need to hit ctrl-end to stop top-posting.
You aren't handicapped, are you?

--
Sybrand Bakker, Senior Oracle DBA

You really are pathetic, aren't you?
What if I *was* handicapped? Do you have something against people who
are?
I have something against people who are lazy. Please don't look
around: it is you.

--
Sybrand Bakker, Senior Oracle DBA


Reply With Quote
  #10  
Old   
Ed_Zep
 
Posts: n/a

Default Re: Forms 9.0.4.2 - 07-22-2006 , 06:57 PM




Sybrand Bakker wrote:
Quote:
On 22 Jul 2006 15:40:47 -0700, "Ed_Zep" <ed_zep (AT) ntlworld (DOT) com> wrote:


Please stop top-posting.

You only need to hit ctrl-end to stop top-posting.
You aren't handicapped, are you?

--
Sybrand Bakker, Senior Oracle DBA

You really are pathetic, aren't you?
What if I *was* handicapped? Do you have something against people who
are?
I have something against people who are lazy. Please don't look
around: it is you.

--
Sybrand Bakker, Senior Oracle DBA
I wonder why you're like this and I know you're not just like this in
Oracle groups because I saw a message in a classical musical newsgroup
where you claimed Bach and the piano don't go together!

Sounds like too much hard work (mind you, like you say, I am lazy).

Thank you for the suggestion of the on logon trigger, though.



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.