Search Results

1
vote

How do I limit the global memory resources of Oracle 10g database

You don't say how much memory your machine actually has (and whether all of it is available to the Oracle instance). There are two types of memory used by Oracle. The first is the shared memory (SG …
1
vote

Is it possible to kill a single query in oracle without killing the session?

You could look at Resource Limits: "If a user exceeds a call-level resource limit, then Oracle halts the processing of the statement, rolls back the statement, and returns an error. However …
1
vote

Slow deletes from table with CLOB fields in Oracle 10g

Trace it, with waits enabled http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_monitor.htm#i1003679 Find the trace file in the UDUMP directory. TKP …
1
vote

Oracle Database 10g VIEW performance

Are you talking the creation or replacement of an existing view (ie executing the CREATE OR REPLACE VIEW... statement) or selecting from a view. In the former case, it is probably that some …
0
votes

Inserts are 4x slower if table has lots of record (400K) vs. if it’s empty

You don't say which columns are indexed. If you had indexes on fax, phone or email, you would have had a LOT of duplicates (ie every row). Oracle 'pretends' to have non-unique indexes. In reality e …
1
vote

Why are Oracle table/column/index names limited to 30 characters?

Constraint violations get reported in SQLERRM which is limited to 255 characters, and which most clients use to make errors visible. I suspect increasing the allowable size of constraint names sign …
2
votes

Can a rowid be invalidated right after being inserted in Oracle?

A couple of other things may be happening. Firstly, the INSERT may be failing. Are you checking for errors/exceptions ? If not, maybe the value in the variable is junk. Secondly, you could …
1
vote

how to know if between 2 date’s it past 5 days - Oracle 10g ?

First decide whether your date format is DD/MM/YYYY or MM/DD/YYYY …