1
vote
3answers
42 views
Extract Unique Time Slices in Oracle
I use Oracle 10g and I have a table that stores a snapshot of data on a person for a given day. Every night an outside process adds new rows to the table for any person whose had a …
2
votes
2answers
38 views
Oracle 10g : amount of redo generated for the first insert statement in a transaction
Hi,
I am trying to see the amount of redo generated by different insert statements.
I see that for the first insert in the transaction , the redo size is being shown as zero.
The …
1
vote
1answer
20 views
How to execute a procedure with DBMS_SCHEDULER.CREATE_JOB procedure
I want to create a job that would drop a database object at a given date. The job created all right but the procedure is not executed. Tried executing the procedure alone and it wo …
1
vote
3answers
54 views
Frequent error in Oracle ORA-04068: existing state of packages has been discarded
Hi,
We're getting this error once a day on a script that runs every two hours, but at different times of the day.
ERROR at line 1:
ORA-04068: existing state of packages has been …
1
vote
3answers
59 views
+100
Oracle Lab DB Design (Pipeline Functions?)
Main Goal: Query the database to determine what the lab technician should do next.
What I am trying to accomplish
I am designing a laboratory database where each of the following …
1
vote
2answers
34 views
Any problem with renaming Oracle constraints directly in the user_constraint table?
Using Oracle 10g, I need to rename a bunch of FK constraints which all end in LITE to include an FK prefix.
My thinking was (I've ensured all names are short enough to accommodate …
3
votes
4answers
78 views
Oracle Hierarchical Query
Using Oracle 10g. I have two tables:
User Parent
-------------
1 (null)
2 1
3 1
4 3
Permission User_ID
-------------------
A 1
B 3
Th …
0
votes
1answer
20 views
-1
votes
1answer
40 views
how to uninstall oracle 10g ? i dont see any uninstall tool for this
hi
i want to uninstall oracle 10g (on windows 7)
but i dont see any uninstall tool
thank's in advance
1
vote
3answers
129 views
PL/SQL - Optional conditions in where-clause - without dynamic sql?
I have a query where not all conditions are necessary. Here's an example of what it looks like when all conditions are used:
select num
from (select distinct q.num
from cqq …
0
votes
1answer
37 views
Converting Oracle Forms to Apex - Is it worth considering the Apex Forms migration tool?
Friends,
I am looking at migrating a Oracle Forms (10g) application to APEX (3.2.1) and looking at options that would enable me to get to a stage where I can obtain a "first cut" …
3
votes
3answers
54 views
Oracle REPLACE function - unsure how to use for my scenario
Hi,
I have a column called THE_VALUE in a table TABLE_A, that holds data similar to the following, i.e a few sample rows might be:
tom:harry, sally, jeff
state(vic,nsw), england, …
5
votes
5answers
141 views
Oracle query using ‘like’ on indexed number column, poor performance.
On Query 1 a full table scan is being performed even though the id is an indexed column. Query 2 achieves the same result but much faster. If Query 1 is run returning an indexed co …
0
votes
5answers
80 views
Materialized view with Oracle
Hello !
I have the following line in a script and I don't understand what the "using" part is used for.
I couldn't find anything on google. Anybody familiar with that ?
Thanks a l …
0
votes
1answer
32 views
Splitting data in one column and updating new column with split data
Hello all,
I'm working on Oracle 10g.One of the column's of my table stores data, as sampled below.
1722999340KK000200000
1444210829AB1001EX003
1444300000CD0148EX003
172299 …
