forms [message #488830] |
Tue, 11 January 2011 07:37 |
ashish_sun123
Messages: 52 Registered: November 2010 Location: Bangalore
|
Member |
|
|
How can be create temporary objects through forms 10g?
In oracle we can create a temporary table so similarly by using forms_ddl can we create a temporary table?
Are there any other temporary objects?
|
|
|
Re: forms [message #488832 is a reply to message #488830] |
Tue, 11 January 2011 07:41 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
You can but you shouldn't. The point of global temporary tables is that the structure is permanent and the data is temporary. Creating them at run time is almost always unecessary and more trouble than it's worth.
|
|
|
Re: forms [message #488884 is a reply to message #488832] |
Tue, 11 January 2011 23:54 |
ashish_sun123
Messages: 52 Registered: November 2010 Location: Bangalore
|
Member |
|
|
This was asked from me in an interview. So I want to know that how temporary objects are created? Others things are secondary . So I woule like to confirm will it be through forms_ddl only?
|
|
|
|
|
|
|
Re: forms [message #488971 is a reply to message #488970] |
Wed, 12 January 2011 09:24 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Any db object can be created on the fly and then dropped, but it isn't advisable.
|
|
|