1
vote
Oracle APEX access
"since there would be nothing like http:/www.appdomain.com"
Given you are familiar with client/server technology, I guess you know about TNSNAMES.ORA
Your Apex host would be define …
2
votes
Oracle Express Edition - Can not connect remotely (plus others)
ManuelF relates to access through the web front end, but isn't relevant to local access through the web front end.
You don't say how hostname/address is being handled, or how you are connec …
0
votes
notification when alter occurs on oracle database
ALTER what ?
ALTER SESSION may be a very common command (especially ALTER SESSION SET NLS_DATE_FORMAT or CURRENT_SCHEMA).
More commonly you'd be want to track ALTER schema_object, m …
0
votes
How do I calculate tables size in Oracle
Depends what you mean by "table's size".
A table doesn't relate to a specific file on the file system. A table will reside on a tablespace (possibly multiple tablespaces if it is partitioned, and …
0
votes
Oracle - side-by-side schema update technology…is there any?
Depends what you mean, or include, in "schema".
If you want to add or drop an index, that can be done "in-flight", although it will require a lock which may halt activity for a time. In the latest …
1
vote
Find all Foreign Key errors with Oracle SET CONSTRAINTS ALL DEFERRED
First option, you can look into DML error logging. That way you leave your c …
0
votes
Oracle String Concatenation Operator
There's also concat, but it doesn't get used much
select concat('a','b') from dual;
…
2
votes
PL/SQL compilation fails with no error message
try
SHOW ERRORS PACKAGE BODY FLOWS_020000.WWV_FLOW_QUERY
…
0
votes
Best way to select the row with the most recent timestamp that matches a criterion
Firstly, you will always need to look at all the rows with that foreign key, and find the one with the highest UPDATED value...which means a MAX or ORDER BY.
The efficiency of the comparison is par …
4
votes
Is there a good alternative to SQL*PLUS for Oracle?
It depends what you are looking for.
If it is a GUI query tool, then Oracle have their free SQL Developer product (though it has a hefty footprint). There's a few free cross-database ones too. I li …
2
votes
Find out name of PL/SQL procedure
If you are pre-10g, you can 'dig' (parse) it out of
dbms_utility.format_call_stack
Procedures/functions in packages can be overloaded (and nested), so the package name/line number is normally bette …
2
votes
If I’m posting a question about Oracle SQL query performance, what should I include in my question?
Ideally, get the full query plan using DBMS_XPLAN.DISPLAY_CURSOR using the sql_id and child_cursor_id from v$sql. Failing that (ie on older versions), try v$sql_plan and include filter and access p …
0
votes
Oracle database allows invalid time portion of datetime column values under what circumstances?
Oracle generally doesn't allow it.
The OCI layer can bypass the data type validation - Oracle basically trusts that what you put in those seven bytes make up a valid date. Similarly, at the OCI lay …
3
votes
Installer for Oracle Forms Builder application?
Up to Forms 6i you can have a Forms runtime client installed on the target PC. That target PC also needs connectivity to the database. You don't need a license for the runtime client.
From …
1
vote
Network Outage Causes Stored Procedure Querying Across DB Link to Hang Forever
What database version ? Are they stuck running SQL or in PL/SQL ?
Has anyone added exception handling into the routines recently ?
I remember in 9iR2, we were told that, instead or raising an excep …
