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 …
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 …
0
votes
Identifiers in a Diamond Relationship between Tables
If I understand it right, you had a solution where you may have
Table A
-------
100
101
102
Table B
-------
100 1
100 2
101 1
Table C
-------
100 1
100 2
101 1
Table D
-------
1 …
0
votes
SQL Insert with large dataset
"The reason why I want to do that is to avoid the rollback segment going out of space. Also, I want to see results being populated in the target table at regular intervals."
The first is si …
0
votes
How does SQL join work?
With query A what you get includes entries in table 1 with a corresponding entry in table3 without corresponding entries in table3 (nulls for t2 columns)
With query B uou don't get those en …
1
vote
SQLException: fetched column value was truncated when executing while (rs.getNext())
Is PERSON a table or view ?
At some point, under the covers, Java must be working out a data length for the data. And I guess it is doing it wrong. Firstly, remove the columns one-by-one so …
5
votes
What is the best approach for decoupled database design in terms of data sharing?
Streams is the Oracle replication technology.
You can use MVs over database links (so database 'A' has a materialized view of the data from database 'B'. If 'B' goes down, the MV can't be refreshed …
0
votes
Checking for the presence of text in a text column efficiently
Similar to Anton Gogolev's response, Oracle does incorporate a text search engine documented here …
1
vote
In Oracle, is it possible to “insert” a column into a table?
Bear in mind that, under the tables, all the data in the table records are glued together. Adding a column to the end of a table [if it is nullable or (in later versions) not null with a default] j …
0
votes
oracle 10g - Monitor large row deletions
"how can i parse the redo log and trap the sql that might have caused a bulk row delete? my scenario is, as soon as a bulk row delete happens"
What sort of delete are you talking about ?
A …
1
vote
Setting up a diverse database testing environment
Oracle does have a free 'Express Edition'. It doesn't have all of Oracle's functionality but then if you are also running against Jet then that shouldn't be an issue.
…
1
vote
More efficient of the two queries?
On the Oracle front, I'd go for option 1. Sort of.
I'd have a unique index enforcing that there is only one default entry for each user, then I'd use the function in that index as part of t …
4
votes
Scripting out Oracle objects
I'd look at something like:
select dbms_metadata.get_ddl(object_type, object_name, owner) from dba_objects.
Stick it in a PL/SQL procedure to write each object's DDL to its own file with UTL_FILE. …
0
votes
how to change a column’s attribute without affecting the values already present?
Mostly agree with Dave Costa.
Might there be a cache that still thinks the data is the old '8' size.
When you say "some not all" values get the extra \0, what is the consistent factor ?
Are they …
0
votes
Oracle lag between commit and select
The code snippet didn't actually include the commit.
If you are assuming/relying on the close connection doing the commit, it may not be synchronous (ie the java may report the connection a …
