| Thread | Last Post | Replies |
|
| User-managed incomplete recovery in noarchivelog mode | 30 Jun 2008 21:07 GMT | 4 |
I have two full sets of close database files backup. One on 28 June and another on 29 June. Today, 30 June, I need to restore the whole database by using the backup files on 29 June.
|
| Choosing a surrogate key vs. a composite key - "holy war" issue or clear best practice? | 30 Jun 2008 20:56 GMT | 7 |
Early in my career, I was accustomed to seeing simple, sequence- generated surrogate keys. Seemed clean and logical. Later in my career, I saw seemingly monstrous (to me) composite keys of up to 5 fields. Found them initially repulsive because they made queries
|
| Storing codes vs. human-intelligible values - best practice? | 30 Jun 2008 18:19 GMT | 4 |
In a pre-existing project, many tables reference domain (lookup) tables of the general structure: # COL_NM (column name) -- a primary key containing a human- intelligible value; max varchar length varies by table, but typically
|
| One sequence or many sequences? | 30 Jun 2008 17:56 GMT | 8 |
I have many tables which need sequences.I think there are two solutions.One is that I create each sequence for each table.The other is that I create only one sequence for many tables.Which is the better one(or another solution)?And Why?
|
| Bug with ANSI/92 joins USING clause in Oracle 10g? Can't SELECT on join fields? | 29 Jun 2008 10:26 GMT | 2 |
The following query, using the ON clause, works fine: -- Query #1 select e.employee_id, d.department_id, d.department_name from employees e INNER JOIN departments d
|
| RMAN, Best Practice? | 28 Jun 2008 11:33 GMT | 3 |
10.2.0.4 on AIX if it matters: I think we will end up with n number of databases on various machines, and an RMAN catalog database elsewhere (I'm not concerned with how the RMAN catalog is itself backed up; that is someone else's problem).
|
| Need help: wio rease from 1% to more than 50% after increasing SGA size | 28 Jun 2008 05:24 GMT | 5 |
we met problem with oracle8.1.7(on HP-UX) SGA tuning. The Oracle server runs on HP-UX11i. Previously, the server has 16GB RAM and 20CPU installed. The business data keeps increasing in past year which make us
|
| Standby Asking for archive that is older then standby | 28 Jun 2008 03:10 GMT | 2 |
I restored a cold backup and standby control file from 6/26. When I recover it's asking for an archive file from 6/21 even though the database was restored from a cold backup on 6/26. Our cold backup performs a checkpoint and logfile switch prior to taking the DB down
|
| Attach & detach tablespace | 28 Jun 2008 01:22 GMT | 3 |
In SQLServer I detach from one server and then attach it to another server. Is something like this possible with Oracle ? thanks Sunit
|
| Hash join order | 27 Jun 2008 23:17 GMT | 3 |
We are using Oracle 10.2.0.3.0. I have a simple query like this - select * from large_table, small_table where small_table.col = large_table.col (+)
|
| ROWID, ROWNUM and views | 27 Jun 2008 22:29 GMT | 2 |
Here's some advice for you about the pseudo-columns ROWID, ROWNUM and their behaviour with views. * As a general rule avoid using ROWID espcially with complex views made up of multiple base tables where a DISTINCT clause is used. The
|
| Fine tuning my queries ! | 27 Jun 2008 17:37 GMT | 1 |
My db has three columns : pool id, pool name and pool description 1. Pool id is unique 2. Pool name is always either suffixed by intl or core. But there is not formal constraint or foreign key relationships anywhere
|
| Insert performance and autoextend | 27 Jun 2008 17:27 GMT | 4 |
We have a process that inserts a few million records in a table (It is not a direct path load). In the entire process the max time the process waits is for the event "db file sequential read". The data files in the database are totally full (Space remaining shows
|
| student question: incremental backups (level 0 and level 1) | 27 Jun 2008 16:36 GMT | 13 |
so far my oracle experience has been on 8i with only PL/SQL development on 9 and later. I'm just going through some questions in preparation for a 10g Admin 1 exam and find (among others) a question for which the answer seems to be less than
|
| Problems with Oracle Text (in Oracle 10g) | 27 Jun 2008 16:27 GMT | 4 |
I'm working on a project using Oracle Text, and wondering if it is possible display "relevant" parts of any documents returned by a search (in a similar fashion to Google). Heres a summary of what I have so far:
|