1
vote
2answers
491 views
Getting Post - Redirect - Refresh to call redirect page rather than original request
We have a POST to a PL/SQL database procedure that (a) does some database operations based on the POST parameters and (b) redirects the user to a page showing the results.
The problem is, w …
1
vote
Validating XML files against schema in Oracle PL/SQL
Once you get past the install issues, there are challenges in some Oracle versions when the schemas get big, particularly when you have schemas that include other schemas. I know we had that issue …
0
votes
Sybase Developer Asks: How To Create a Temporary Table in Oracle?
Yes, carson has it right. Global temporary tables are only visible to the session that creates them, and disappear either at the first commit or rollback, or at the end of the session. You can set …
13
votes
How can I create a copy of an Oracle table without copying the data?
Just use a where clause that won't select any rows:
create table xyz_new as select * from xyz where 1=0;
…
1
vote
How to read the PL/SQL code in an Oracle Forms .FMT file ?
Along with the API, note that if you're working at the start of this process you'll probably be better off generating the XML version than the FMT version. The FMT is an older format kept for backw …
0
votes
Is there a way to do full text search of all oracle packages and procedures?
Toad's "object search" routine will look through ALL_SOURCE (and other parts of the data dictionary). Of course, this will be limited to the objects the connected user is allowed to see. If you hav …
1
vote
Oracle Default Values
You can't assign values to an IN parameter, but you could make them IN/OUT and then set them. That raises a big potential for misuse and confusion, though.
So I think you'd do better with …
1
vote
Oracle - Using Package
To follow up, you might have a standalone like
create or replace procedure foo (i_something in varchar2) as
begin
-- do some stuff;
end foo;
which you call with …
3
votes
Oracle Populate backup table from primary table
Does the backup table stay around? Does it keep the data permanently, or is it just a copy of the current values?
Too bad about not being able to create/delete/rename/copy. Otherwise, if it …
0
votes
Is there a method in PL/SQL to convert/encode text to XML compliant text?
With respect to Rulas's issue on Oracle Forms, there are a lot of things Forms can't do (in various versions), where you need to use a database package.
So write a database PL/SQL function …
0
votes
Is there a way to specify a super-type sub-type relationship in Oracle Designer?
Note that if you're working in the Design Editor on the physical model, you have to implement as actual tables.
But take a look at the documentation for the Foreign Key property "Arc", whi …
1
vote
What is Oracle Native web services?
There are advantages and disadvantages. If you have developers experienced in PL/SQL, this makes it easier for them to provide and consume web services without going through a separate app server. …
1
vote
Which table structure is better
The real advantage of the fully normalized version in the first answer comes when the requirements change -- when someone changes the specs so you have to add types beyond the 3 you've identified. …
0
votes
load data into text file from oracle database views.
If you have access to directories on the database server, and authority to create "Directory" objects in Oracle, then you have lots of options.
For example, you can use the UTL_FILE packag …
0
votes
Getting output in flat file using oracle on UNIX
If you have access to directories on the database server, and authority to create "Directory" objects in Oracle, then you have lots of options.
For example, you can use the UTL_FILE packag …
