active questions tagged oracle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:29:48Zhttp://stackoverflow.com/feeds/tag/oraclehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1874044/how-to-sortareasize-increase0how to sort_area_size increaseHaid2009-12-09T13:52:37Z2009-12-09T23:24:17Z
<p>how set sort_area_size in oracle 10g and what size should be as i have more than 2.2m rows in single table. and please tell me the suggested size of SORT_AREA_RETAINED_SIZE</p>
<p>as my queries are too much slow they takes more than 1 hours to complete. (mostly)
please suggest me the way by which i can optimize my queries and tune the database oracle 10g</p>
<p>thanks</p>
<p><hr></p>
<h2>updated with query</h2>
<p>the query is </p>
<pre><code>SELECT A.TITLE,C.TOWN_VILL U_R,F.CODE TOWN_CODE,F.CITY_TOWN_MAKE,A.FRM,A.PRD_CODE,A.BR_CODE,A.SIZE_CODE ,B.PRICES,
A.PROJECT_YY,A.PROJECT_MM,d.province ,D.BR_CODE BRANCH_CODE,D.STRATUM,L.LSM_GRP LSM,
SUM(GET_FRAC_FACTOR_ALL_PR_NEW(A.FRM,A.PRD_CODE,A.BR_CODE,A.SIZE_CODE,A.PROJECT_YY,A.PROJECT_MM,A.FRAC_CODE ,B.PRICES,A.QTY_USED,A.VERIF_CODE, A.PACKING_CODE, J.TYPE ,'R') )
* MAX(D.UNIVERSE) / MAX(E.SAMPLE) /1000000 MARKET , D.UNIVERSE ,E.SAMPLE
FROM A2_FOR_CPMARKETS A,
BRAND J,
PRICES B,CP_SAMPLE_ALL_MONTHS C ,
CP_LSM L,
HOUSEHOLD_GL D,
SAMPLE_CP_ALL_MONTHS E ,
City_Town_ALL F
WHERE A.PRD_CODE = B.PRD_CODE
AND A.BR_CODE = B.BR_CODE
AND DECODE(A.SIZE_CODE,NULL,'L',A.SIZE_CODE) = B.SIZE_CODE -- for unbranded loose
AND DECODE(B.VAR_CODE,'X','X',A.VAR_CODE) = B.VAR_CODE
AND DECODE(B.COL_CODE,'X','X',A.COL_CODE) = B.COL_CODE
AND DECODE(B.PACK_CODE,'X','X',A.PACKING_CODE) = B.PACK_CODE
AND A.project_yy||A.project_MM BETWEEN B.START_DATE AND B.END_DATE
AND A.PRD_CODE=J.PRD_CODE
AND A.BR_CODE=J.BR_CODE
AND A.FRM = C.FRM
AND A.PROJECT_YY=L.YEAR
AND A.frm=L.FORM_NO
AND C.TOWN_VILL= D.U_R
AND C.CLASS = D.CLASS
AND D.TOWN=F.GRP
AND D.TOWN = E.TOWN_CODE
AND A.PROJECT_YY = E.PROJECT_YY
AND A.PROJECT_MM = E.PROJECT_MM
AND A.PROJECT_YY = C.PROJECT_YY
AND A.PROJECT_MM = C.PROJECT_MM
-- FOR HOUSEJOLD_GL
AND A.PROJECT_YY = D.YEAR
AND A.PROJECT_MM = D.MONTH
-- END HOUSEHOLD_GL
AND C.TOWN_VILL = E.TOWN_VILL
AND C.CLASS = E.CLASS
AND C.TOWN_VILL = F.TOWN_VILL
AND C.TOWN_CODE=F.CODE
AND (DECODE(e.PROJECT_YY,'1997','1','1998','1','1999','1','2000','1','2001','1','2002','1','2') = F.TYP )
GROUP BY A.TITLE,C.TOWN_VILL,F.CODE ,F.CITY_TOWN_MAKE,A.FRM,A.PRD_CODE,A.BR_CODE,A.SIZE_CODE ,B.PRICES,
A.PROJECT_YY,A.PROJECT_MM,d.province,D.BR_CODE ,D.STRATUM,L.LSM_GRP ,
UNIVERSE ,E.SAMPLE
</code></pre>
<p>![alt text][1]</p>
<p>[1]: <a href="http://C" rel="nofollow">http://C</a>:\Documents and Settings\Hussain\My Documents\My Pictures\explain plan.jpg</p>
http://stackoverflow.com/questions/1877537/sqlldr-escape-reserved-name-using-nullif0sqlldr escape reserved name using NULLIFBrian Sullivan2009-12-09T23:03:26Z2009-12-09T23:21:11Z
<p>I have a table with a field called [SEQUENCE] and another called [REFERENCE]</p>
<p>I can define the field in SQLLDR as</p>
<pre><code>SEQUENCE NULLIF ( SEQUENCE=" ")
</code></pre>
<p>It complains that SEQUENCE is A SQLLDR reserved word.</p>
<p>I have tried </p>
<pre><code>"SEQUENCE"
[SEQUENCE]
\"SEQUENCE\"
</code></pre>
<p>None seem to work</p>
<p>Would prefer not to call SQL, because that would preclude direct path loads.</p>
http://stackoverflow.com/questions/1875311/oracle-10g-temp-tables0Oracle 10g temp tablesDragos Toader2009-12-09T17:01:51Z2009-12-09T23:18:13Z
<p>I'm trying to convert the permanent tables used in a stored procedure to<br>
global temp tables. I've looked at the stats on these permanent tables<br>
and some have tens of millions of rows of data and are on the order if<br>
gigabytes in size (up to 10 GB). </p>
<p>So, </p>
<p><code>CREATE TABLE my_table (<br>
</code> column1 NUMBER,<br>
<code> column2 NUMBER,<br>
</code> etc...<br>
<code>)<br>
</code>TABLESPACE BIGTABLESPACE<br>
<code>NOLOGGING<br>
</code>NOCOMPRESS<br>
<code>NOCACHE<br>
</code>NOPARALLEL<br>
`MONITORING; </p>
<p>should become </p>
<p><code>CREATE GLOBAL TEMPORARY TABLE my_table (<br>
</code> column1 NUMBER,<br>
<code> column2 NUMBER,<br>
</code> etc..<br>
<code>)<br>
</code>ON COMMIT PRESERVE ROWS; </p>
<p>I'm creating an equivalent global temporary table with rows that should be<br>
preserved until the end of the session for each existing permanent table.<br>
This global temp table will be used in the procedure instead of the permanent table.<br>
(EXEC IMMEDIATE TRUNCATE at the start, and INSERT /*+ APPEND */ INTO at some later point) </p>
<p>All of the permanent tables have been created in a big tablespace<br>
BIGTABLESPACE </p>
<p>The Oracle docs state that the global temporary table will be created in<br>
the user's temp tablespace (I assume this is TEMP).<br>
The problem with this is that the TEMP tablespace is small and the<br>
extents are not set to grow to the size I need them to grow during the<br>
procedure. </p>
<p>The TEMP tablespace was created during the database creation </p>
<p><code>
create database "$oracle_sid"<br>
user sys identified by "$sys_password"<br>
user system identified by "$system_password"<br>
set default bigfile tablespace<br>
controlfile reuse<br>
maxdatafiles 256<br>
maxinstances $maxinstances<br>
maxlogfiles 16<br>
maxlogmembers 3<br>
maxloghistory 1600<br>
noarchivelog<br>
character set WE8MSWIN1252<br>
national character set AL16UTF16<br>
datafile<br>
'$oracle_home/oradata/$oracle_sid/system01.dbf' size 512M<br>
logfile<br>
'$oracle_home/oradata/$oracle_sid/redo01.log' size 1G,<br>
'$oracle_home/oradata/$oracle_sid/redo02.log' size 1G,<br>
'$oracle_home/oradata/$oracle_sid/redo03.log' size 1G<br>
sysaux datafile<br>
'$oracle_home/oradata/$oracle_sid/sysaux01.dbf' size 256M<br>
default temporary tablespace temp tempfile<br>
'$oracle_home/oradata/$oracle_sid/temp01.dbf' size 5G<br>
undo tablespace "UNDOTBS1" datafile<br>
'$oracle_home/oradata/$oracle_sid/undotbs01.dbf' size 5G;<br>
</code></p>
<p>The permanent tables (that I'm planning to replace) were originally<br>
created in tablespace BIGTABLESPACE </p>
<p><code>
-- 50G bigfile datafile size<br>
create bigfile tablespace "BIGTABLESPACE"<br>
datafile '$oracle_home/oradata/$oracle_sid/bts01.dbf' size 50G<br>
extent management local<br>
segment space management auto;<br>
</code></p>
<p>The permanent table indexes were originally created in tablespace<br>
BIGTABLESPACE </p>
<p><code>
-- 20G bigfile datafile size<br>
create bigfile tablespace "BIGINDXSPACE"<br>
datafile '$oracle_home/oradata/$oracle_sid/btsindx01.dbf' size 20G<br>
extent management local<br>
segment space management auto;<br>
</code></p>
<p>Is replacing these permanent tables with global temporary tables feasable?<br>
The TEMP tablespace will run into a problem extending the TEMP tablespace.
Is there a way to create global temporary tables and their indexes in tablespaces BIGTABLESPACE and BIGINDXSPACE?
If not, how can I make the TEMP tablespace behave like a bigfile tablespace and
achieve index/table separation?
Can I create two TEMP bigfile tablespaces and create indexes into one and tables into another?</p>
<p>I want to use global temporary tables, but the volume of data I am handling in the procedure would seem to be above and beyond the indended design of global temporary tables.
Any suggestions?</p>
http://stackoverflow.com/questions/1876669/evaluation-of-pl-sql-boolean-variables-in-oracle-forms0Evaluation of PL/SQL boolean variables in Oracle FormsAdam Paynter2009-12-09T20:30:16Z2009-12-09T21:46:48Z
<p>Suppose I have a <code>BOOLEAN</code> variable within a PL/SQL block in an Oracle Form:</p>
<pre><code>DECLARE
is_viewable BOOLEAN;
BEGIN
is_viewable := ...;
IF NOT is_viewable THEN
raise_my_error(); // pseudo-code
END IF;
END;
</code></pre>
<p>After stepping through this code several times with a debugger, I have determined that <code>raise_my_error()</code> <strong>never</strong> gets called. To clarify:</p>
<ul>
<li><code>raise_my_error()</code> does <strong>not</strong> get called if <code>is_viewable = TRUE</code></li>
<li><code>raise_my_error()</code> does <strong>not</strong> get called if <code>is_viewable = FALSE</code></li>
</ul>
<p>Initial tests suggest that this behavior is limited to PL/SQL code run within Oracle Forms and not PL/SQL code run directly within the database (although I could be wrong).</p>
<p>I can get around this by explicitly comparing <code>is_viewable</code> to <code>FALSE</code>:</p>
<pre><code>IF is_viewable = FALSE THEN
raise_my_error();
END IF;
</code></pre>
<p>I am still curious why <code>NOT is_viewable</code> never evaluates to <code>TRUE</code>.</p>
http://stackoverflow.com/questions/1782797/how-to-specify-html-doctype-in-oracle-sqlplus-html-report1How to specify HTML doctype in Oracle SQL*Plus HTML report?Umber Ferrule2009-11-23T12:14:56Z2009-12-09T21:34:09Z
<p>I'm producing an HTML report from a query using:</p>
<blockquote>
<pre><code>set markup html on table "WIDTH='100%' BORDER='1'
cellpadding='2px' cellspacing='0px'";
</code></pre>
</blockquote>
<p>Is there a way of including a doctype declaration such as:</p>
<blockquote>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
</code></pre>
</blockquote>
<p>I've searched but I can't see an obvious way of doing this.</p>
<p><strong>UPDATE:</strong> Simply adding a prompt with a doctype produces the following (which produces another validation error!):</p>
<blockquote>
<pre><code><html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<style type="text/css">pre{background-color:white;font-family:"Courier New";font-size:16;color:black;}</style>
</head>
<body>
<pre>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1877029/sqlplus-handle-is-invalid-error0Sqlplus "Handle is invalid" error?Marcus Leon2009-12-09T21:30:27Z2009-12-09T21:30:27Z
<p>I have the following batch script:</p>
<pre><code>sqlplus ms/ms@orcl < drop.sql
sqlplus ms/ms@orcl < create.1.0.sql
</code></pre>
<p>This works fine when I double click on the bat file in Windows Explorer and run it. </p>
<p>But when I type the command name from the DOS prompt I get an error:</p>
<pre><code>C:\>create.bat
C:\>sqlplus ms/ms@orcl 0<drop.sql
The handle is invalid.
C:\>sqlplus ms/ms@orcl 0<create.1.0.sql
The handle is invalid
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1876643/how-to-put-the-order-by-in-sql-union-so-totals-will-show-up-always-as-last-row0How to put the Order BY in SQL UNION so TOTALS will show up always as last row?Roman Kagan2009-12-09T20:26:50Z2009-12-09T20:45:11Z
<p>I have SQL UNION where second part of that statement is the row that represents TOTALS. How can I ORDER BY where TOTALS will ALWAYS will show up as the last row?</p>
http://stackoverflow.com/questions/1863112/how-to-resolve-oracle-error-ora-017901How to resolve Oracle error ORA-01790?Roman Kagan2009-12-07T21:42:24Z2009-12-09T20:22:28Z
<p>I have two select statements joined by "union". While executing that statement I've got:</p>
<p>Error report:
SQL Error: ORA-01790: expression must have same datatype as corresponding expression
01790. 00000 - "expression must have same datatype as corresponding expression"</p>
<p>Maybe you can give me an advise on how to diagnose this problem?</p>
http://stackoverflow.com/questions/1875536/connecting-excel-to-an-oracle-db2connecting excel to an oracle DBIIIIIIIIIIllllIlIlIlIlllllllII2009-12-09T17:32:57Z2009-12-09T18:15:05Z
<p>how do i connect excel to an oracle DB?</p>
http://stackoverflow.com/questions/1875212/web-form-insert-and-trigger-before-insert0web form insert and trigger before insertMr. Flint2009-12-09T16:49:38Z2009-12-09T17:31:07Z
<p>I have a oracle table called:</p>
<pre><code>create table InsertHere(
generate_id varchar2(10),
name varchar2(100)
);
</code></pre>
<p>I have to insert data in this table from a web from. In the web form there are two
elements: </p>
<blockquote>
<p>type and name</p>
</blockquote>
<p>. I have to generate 'generate_id' from the type user has selected.</p>
<blockquote>
<p>Task :</p>
</blockquote>
<p>Before insert into the InsertHere table i have to generate the <strong>generate_id</strong>. Then i have to insert
'generate_id' and 'name' into the InsertHere table. BUT THE GENERATION OF ID MUST BE DONE INSIDE THE
DATABASE(may be with a procedure).</p>
<p>Question:</p>
<p>How this thing can be done effectively?</p>
<p>I need suggestions.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1870760/filtering-objects-with-many-to-many-relationships0Filtering objects with many to many relationshipsrochan2009-12-09T00:03:48Z2009-12-09T16:19:47Z
<p>I have a two tables one for documents one for mapping to categories.</p>
<pre><code>Documents
id | document_name
1 | somename.doc
2 | anothername.doc
Documents_to_categories
cat_id | doc_id
10 | 1
10 | 2
11 | 3
12 | 1
</code></pre>
<p>Some documents can map to multiple categories. What I want is to be able to select documents that belong in multiple categories, like in a filtering scheme.</p>
<p>Basically in the script I have an array of document id's that were a result from a search. I need to filter those documents down based on categories.</p>
<p>This is what something like what I'm aiming for (I know it doesn't work but for example).</p>
<pre><code>SELECT *
FROM Documents_to_categories A
JOIN Documents B ON A.doc_id = B.id
WHERE B.id IN (6703,6614,2286)
AND A.cat_id = :ID0
AND A.cat_id = :ID1
</code></pre>
<p>Edit: Sorry for all those who answered, my first time posting, was unclear with question. Hopefully this is more clear on what I want.</p>
http://stackoverflow.com/questions/1874985/export-import-long-between-heterogeneous-dbs0Export-import LONG between heterogeneous DBsLluis Martinez2009-12-09T16:15:48Z2009-12-09T16:15:48Z
<p>Hi,</p>
<p>I need to export application metadata stored in Oracle LONGs , and then import these contents in SQL Server (not sure which datatype). As SQL scripts are out of the question, the only way is either 1) build a custom exporter-importer or (2) use a tool (open source or not) to do the task. Which one do you recommend ?</p>
http://stackoverflow.com/questions/1831136/nhibernate-component-with-mapped-class-problem0Nhibernate component with mapped class problemNetSide2009-12-02T07:06:10Z2009-12-09T15:42:13Z
<p>I am working with oracle and nhibernate. I can select list of an
object from db table (all items in table) as Iquerable, but when I try
to select an item from the list using "linq where clause" it sends
nonsense query to oracle db. And it gets invalid identifier error.</p>
<p>I can get whole list without any error in query, it happens when I use
where clause.</p>
<p>(Some information about query and mapping document is as below)
query :</p>
<pre><code>SELECT this_.ID as ID33_0_,
this_.BUNDLEID.........................Where bundleitem1_.ID = :p0
</code></pre>
<p>(bundleitem1_.ID is invalid)</p>
<p>related mapping part :</p>
<pre><code><component name="BundleItem"
class="PromissoryNotes.Server.Data.Bundle,
PromissoryNotes.Server.Data">
<property name="Id" column="BUNDLEID" type="decimal"></property>
</code></pre>
<p>Copmponent "Bundle" has a mapping seperatly in another xml document, I realized that, when I change the Bundle class to another unmapped class, it works. Problem is about component with mapped classes as Bundle. What is the solution, any idea?</p>
http://stackoverflow.com/questions/1871921/how-to-read-xml-respone-using-in-oracle-sql0How to read xml respone using in oracle sqlRam2009-12-09T06:17:25Z2009-12-09T15:26:35Z
<p>How to read xml respone using in oracle sql(I have one node status. I want read the status node and insert into a table)</p>
<p>plz help me</p>
<p>regards
ram</p>
http://stackoverflow.com/questions/1869879/odp-net-stored-procedure-performance-issues-on-large-datasets0ODP.Net Stored Procedure performance issues on large datasets.mattdlong2009-12-08T21:12:24Z2009-12-09T14:06:05Z
<p>Hey guys,</p>
<p>We are having some major performance issues with SELECT queries out one of our databases. Please see the simple procedure and associated code below. </p>
<p>In the code the ExecuteReader() method is executing in around 10 seconds on a query returning 30K records. Iterating the Reader takes 2 minutes (even when I am not pumping the data into any other object). 2 minutes for a 30k row data set is unacceptable for us as we are expecting datasets in the millions. </p>
<p>Is there anything here that stands out to any of you? Hoping that your experience with ODP.NET and PL/SQL might help out.</p>
<pre><code> create or replace PROCEDURE TRACKING_FETCH (
p_tracking_id IN NUMBER,
p_parent_id IN NUMBER,
p_media_id IN NUMBER,
p_custodian_id IN NUMBER,
p_return_cursor OUT SYS_REFCURSOR)
AS
BEGIN
OPEN p_return_cursor FOR
SELECT
*
FROM
tracking
WHERE
(tracking_id = p_tracking_id OR p_tracking_id = 0)
AND (parent_id = p_parent_id OR p_parent_id = 0)
AND (media_id = p_media_id OR p_media_id = 0)
AND (custodian_id = p_custodian_id OR p_custodian_id = 0);
END TRACKING_FETCH;
</code></pre>
<p>--</p>
<pre><code>using (DataFactory command
= new DataFactory(dbConnection,
DatabaseType.Oracle,
CommandType.StoredProcedure,
"TRACKING_FETCH"))
{
command.AddInParameter("p_tracking_id", DbType.Int32, trackingid);
command.AddInParameter("p_parent_id", DbType.Int32, parentid);
command.AddInParameter("p_media_id", DbType.Int32, mediaid);
command.AddInParameter("p_custodian_id", DbType.Int32, custodianid);
using (var dr = command.ExecuteReader())
{
while (dr.Read())
{
//Do Things...
}
}
}
</code></pre>
<p>Any guidance will be greatly appreciated.</p>
http://stackoverflow.com/questions/1874010/can-a-net-2-0-winforms-client-app-connect-to-a-windows-server-net-3-5-wcf-servi1Can a .Net 2.0 winforms client app connect to a Windows Server .Net 3.5 WCF service? - architectural advice neededm3ntat2009-12-09T13:46:53Z2009-12-09T14:00:14Z
<p>In the bank I work <strong>all client workstations have .Net 2</strong> installed it is outside my control to influence or get a newer version of the framework installed at the client end. On the server end I have more control and can write a .Net 3.5 WCF service if I choose. </p>
<p>I've an existing fat client that I'd like to refactor and shift it's data access code (Oracle Odp.net) to the server behind a service (to remove the client workstation dependency on the Oralce 10g client).</p>
<p><strong>My question is if I put this data layer behind a WCF service can I access this from a .Net 2.0 GUI app on the client? or does the client workstation also need .net 3.0/3.5?</strong></p>
<p>I've not used WCF much other than a few prototype apps on my dev machine connecting to a Windows 2003 Server which has .Net 3.5 SP1 so I am looking for advice.</p>
<p>Another consideration is that <strong>IIS is considered a red light technology (banned without dispensation) in this bank</strong> so if I can do this with <strong>WCF NetTcpBindings would be my best bet I think?</strong></p>
http://stackoverflow.com/questions/1872065/select-query-causing-exception0Select query causing exceptionSachin Chourasiya2009-12-09T06:52:06Z2009-12-09T13:57:28Z
<p>When does the below sql function can cause an exception other than NO DATA FOUND?
v_ExchangeRate is of type float.</p>
<pre><code>BEGIN
SELECT rate
INTO v_ExchangeRate
FROM exchange_rate
WHERE currency_code = CurrencyCode
AND status = 'A';
</code></pre>
<p>The data type of exchange_rate in database is NUMBER(14,10)</p>
<p><strong>Edit</strong>
Multiple rows cannot be returned by the where clause as the currency_code is the primary key.</p>
http://stackoverflow.com/questions/1873561/update-based-on-subquery-fails0Update based on subquery failsObiWanKenobi2009-12-09T12:22:21Z2009-12-09T13:41:23Z
<p>I am trying to do the following update in Oracle 10gR2:</p>
<pre><code>update
(select voyage_port_id, voyage_id, arrival_date, port_seq,
row_number() over (partition by voyage_id order by arrival_date) as new_seq
from voyage_port) t
set t.port_seq = t.new_seq
</code></pre>
<p>Voyage_port_id is the primary key, voyage_id is a foreign key. I'm trying to assign a sequence number based on the dates within each voyage.</p>
<p>However, the above fails with <strong>ORA-01732: data manipulation operation not legal on this view</strong></p>
<p>What is the problem and how can I avoid it ?</p>
http://stackoverflow.com/questions/1865168/how-can-i-send-an-anonymous-block-to-oracle-and-get-result-from-oracle-in-coldfu0how can i send an anonymous block to oracle and get result from oracle in coldfusionYousui2009-12-08T07:09:45Z2009-12-09T13:03:09Z
<p>Hi guys,
In coldfusion, how can I send an anonymous block to oracle and get some response from oracle?
I tried <strong><em>cfquery</em></strong>, but it doesn't work.
Great thanks.</p>
<p><hr></p>
<p>@Antony,
I know i can write anonymous block in cfquery. Such as:</p>
<pre><code><cfquery name="queryName" datasource="oracle11ghr" result="queryName_meta">
BEGIN
INSERT INTO npr_t_reservation(reservation_id) VALUES(33);
INSERT INTO npr_t_reservation(reservation_id) VALUES(34);
UPDATE npr_t_reservation set reservation_id=35 WHERE reservation_id=34;
COMMIT;
END;
</cfquery>
</code></pre>
<p>In fact what i did not know is how can i get some return value from sending <strong><em>anonymous block</em></strong> to oracle.</p>
<p>@Antony, Hi Antony, the upper code is just a demonstration. In fact what I want to get from anomynous is of simple datatype, not collections or object type instance. Such as VARCHAR2, NUMBER etc.</p>
<p><hr></p>
<p>@APC,
I don't use some kind of stored program because I'm not allowed to save it into the database. So why I want to use an anonymous block to do the database work? Because I need to do a lot of database related work. If I do these work in coldfusion it will be complicated and trivial.</p>
http://stackoverflow.com/questions/1868417/oracle-bug-select-returns-no-dupes-insert-from-select-has-duplicate-rows2Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rowsJoe Harris2009-12-08T17:10:04Z2009-12-09T11:43:28Z
<p>I'm getting some strange behaviour from an Oracle instance I'm working on. This is 11gR1 on Itanium, no RAC, nothing fancy. Ultimately I'm moving data from one Oracle instance to another in a data warehouse scenario.</p>
<p>I have a semi-complex view running over a DB link; 4 inner joins over large-ish tables and 5 left joins over mid-size tables.</p>
<p>Here's the problem: when I test the view in SQL Developer (or SQL*Plus) it seems fine, no duplication whatsoever. However, when I actually use the view to insert data into a table I get a large number of dupes.</p>
<p>EDIT: - The data is going into an empty table. All of the tables in the query are on the database link. The only thing passed into the query is a date (e.g. INSERT INTO target SELECT * FROM view WHERE view.datecol = dQueryDate) - </p>
<p>I've tried adding a ROW_NUMBER() function to the select statement, partitioned by the PK for the view. All rows come back numbered as 1. Again though, the same statement run as an insert generates the same dupes as before and now conveniently numbered. The number of duped rows is not the same per key. Some records exist 4 times some only exist once.</p>
<p>I find this to behaviour to be extremely perplexing. :) It reminds me of working with Teradata where you have SET tables (unique rows only) and MULTISET tables (duplicate rows allowed) but Oracle has no such functionality.</p>
<p>A select that returns rows to the client should behave identically to one that inserts those rows to another location. I can't imagine a legitimate reason for this to happen, but maybe I'm suffering from a failure of imagination. ;)</p>
<p>I wonder if anyone else has experienced this or if it's a bug on this platform.</p>
<p><strong>SOLUTION</strong></p>
<p>Thanks to @Gary, I was able to get to the bottom of this by using "EXPLAIN PLAN FOR {my query};" and "SELECT * FROM TABLE(dbms_xplan.display);". The explain that <em>actually gets used</em> for the INSERT is very different from the SELECT.</p>
<p>For the SELECT most of the plan operations are 'TABLE ACCESS BY INDEX ROWID' and 'INDEX UNIQUE SCAN'. The 'Predicate Information' block contains all of the joins and filters from the query. At the end it says <strong>"Note - fully remote statement"</strong>. </p>
<p>For the INSERT there is no reference to the indexes. The 'Predicate Information' block is just three lines and a new 'Remote SQL' block shows <strong>9</strong> small SQL statements. </p>
<p>The database has split my query into 9 subqueries and then attempts to join them locally. By running the smaller selects I've located the source of the duplicates. </p>
<p><strong>I believe this is bug in the Oracle compiler around remote links.</strong> It creates logical flaws when re-writing the SQL. Basically the compiler is not properly applying the WHERE clause. I was just testing it and gave it an IN list of 5 keys to bring back. SELECT brings back 5 rows. INSERT puts 77,000+ rows into the target and <strong>totally ignores the IN list.</strong></p>
<p><em>{Still looking for a way to force the correct behaviour, I may have to ask for the view to be created on the remote database although that is not ideal from a development viewpoint. I'll edit this when I've got it working…}</em></p>
http://stackoverflow.com/questions/1870670/how-to-loop-accepting-user-input-with-pl-sql1how to loop accepting user input with pl/sql?Kyle2009-12-08T23:40:43Z2009-12-09T10:36:38Z
<p>I want to be able to insert a variable number of rows into a table based on user input? eg.</p>
<pre><code>Please enter value, enter "done" when no more values: value 1
Please enter value, enter "done" when no more values: value 2
Please enter value, enter "done" when no more values: done
2 Rows inserted successfully.
</code></pre>
<p>I'm not sure how to store the rows temporarily and I'm not sure how to ask the user multiple times to insert data. Does pl/sql have arrays?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1870057/net-oracle-ora-24338-statement-handle-not-executed-error-and-some-error-in-one0.Net Oracle ORA-24338 'statement handle not executed' error and some error in one stored ProcedureLimo Wan Kenobi2009-12-08T21:43:57Z2009-12-09T10:34:17Z
<p>Hi,<br>
I have the following Stored Procedures </p>
<pre><code>create or replace PROCEDURE WEB_AC
(
v_iDocid IN NUMBER DEFAULT NULL ,
v_valor IN VARCHAR2 DEFAULT NULL ,
v_campo IN VARCHAR2 DEFAULT NULL ,
v_error OUT NUMBER
)
AS
v_campoid NUMBER(5,0);
v_tipodato VARCHAR2(50);
v_DOCTYPE NUMBER;
v_tabla VARCHAR2(50);
v_procedure VARCHAR2(70);
BEGIN
v_error:= 0;
IF v_valor IS NULL
OR v_valor IS NULL
OR LENGTH(TRIM(v_valor)) = 0 THEN
BEGIN
v_error:= 3;
END;
else
Begin
bEGIN
SELECT campoid,
doctype,
tipodato
INTO v_campoid,
v_DOCTYPE,
v_tipodato
FROM TiposDocumento t
, DIGITALIZAMAIN d
, CatCamposDocumento c
where
c.tabla=t.tabla and
nombre=v_campo and
doctype = TipoDocumentoID and
docid = v_iDocid AND
Mostrar = 1;
EXCEPTION
WHEN OTHERS THEN
v_campoid := 0;
END;
--select @campoid
IF v_campoid != 0 THEN
Begin
EXECUTE IMMEDIATE 'BEGIN ABANCE3.WEB_UPDOC' || TRIM(TO_CHAR(v_DOCTYPE )) || 'C' || TRIM(TO_CHAR(v_campoid)) ||'(' ||
TO_CHAR (v_iDocid)||' , '||CHR(39)||v_valor||CHR(39)||',:2);END;'
USING out v_error;
END;
END IF;
end;
end if;
END;
</code></pre>
<p>And </p>
<pre><code> create or replace PROCEDURE WEB_UPDOC1C6(v_idreg NUMBER,v_valor VARCHAR2,v_temp OUT NUMBER)
AS
v_sys_error NUMBER := 0;
BEGIN
BEGIN
SELECT count(*)
INTO v_sys_error
FROM DOC1
where DOCID = v_idreg;
EXCEPTION WHEN OTHERS THEN v_sys_error:=0;
END;
IF v_sys_error > 0 THEN
BEGIN
BEGIN
UPDATE DOC1
SET DESCRIPCION = v_valor
WHERE DOCID = v_idreg;
EXCEPTION WHEN OTHERS THEN v_sys_error:=0;
END;
IF v_sys_error = 0 THEN v_temp:=0 ;
ELSE v_temp:=1 ;
END IF;
END;
END IF;
END;
</code></pre>
<p>and I'm calling them from an Application with this code: </p>
<pre><code> Friend Function ActualizaCampos(ByVal iDocID As Long, ByVal valor As String, ByVal Campo As String, ByVal ProyectoID As Integer) As String
Dim mstrCS as String = "Here goes the connection String to my server"
Dim db As Database
Dim dbCW As DbCommand
Dim iValor As String = "0"
Select Case Me.TipoBD
Case GlobalDef.eTipoBD.Oracle
db = New OracleDatabase(mstrCS)
dbCW = db.GetStoredProcCommand(WEB_AC, iDocid, valor, Campo, 0)
db.ExecuteNonQuery(dbCW)
Case GlobalDef.eTipoBD.SQLServer
db = New SqlDatabase(mstrCS)
dbCW = db.GetStoredProcCommand(WEB_AC, iDocid, valor, Campo)
iValor = db.ExecuteScalar(dbCW).ToString()
End Select
Return iValor
End Function
</code></pre>
<p>In this example the <code>WEB_AC SP</code> always execute the sp <code>WEB_UPDOC1C6</code></p>
<p>I have two problems with this. </p>
<p><b>First one:</b> At some point in the application I have the <code>valor</code> parameter (of the visual Basic Function) as a string with spaces that is something like <em>"some string with spaces"</em>. When this happens, the stored procedure don't update the table. If I execute the SP directly in the DB (with SQL Developer) all works fine. I know it has something to do with the string missing some quotes(') but I haven't make it work yet. Some ideas on this?</p>
<p><b>Second problem:</b> Sometimes, when debuging the application, if I interrupt the execution, I start getting the <em>ORA-24338 'statement handle not executed' error</em> for hours every time I try to execute it again. I believe it has something to do with an open transaction. But honestly, as I'm new in working with Oracle, I really have no idea what the problem could be.</p>
<p>Can you help me?</p>
<p><b>UPDATE:</b> I have found the ORA-24338 real reason. It was another SP that was causing the error. When i found the solution to my other problem I'll post it all here.</p>
http://stackoverflow.com/questions/1872856/sql-server-compatible-queries-for-given-oracle-queries1sql server compatible queries for given oracle queriesunknown (google)2009-12-09T10:03:51Z2009-12-09T10:17:04Z
<p>I want Microsoft SQL server queries corresponding to the following Oracle queries</p>
<pre><code>//get schema of a table
desc tablename;
//get the names of all tables
select * from tab;
</code></pre>
http://stackoverflow.com/questions/1831723/tool-for-monitoring-sql-query-results-needed1Tool for monitoring SQL query results neededKamil Zadora2009-12-02T09:26:11Z2009-12-09T09:47:01Z
<p>Hi,</p>
<p>I am looking for a tool to monitor results of a periodically run sql query and raise a notification based on the fact that the query returns any results. (any other filters are welcome)</p>
<p>I need to watch a transaction table for errors, and it would be great if my sql query could run in background, refresh itself periodically and show a notification when there are any results.</p>
<p>I need to connect to Oracle DB and I currently use PL/SQL Developer or Oracle SQL Developer.</p>
<p>Free, OS and lightweight solutions preferred :)</p>
<p>UPDATE:</p>
<p>Preferably I would like to not create/modify any database objects. We would like to use this on our clients databases too and not all of them have license to modify the DBs where their Oracle Apps run.</p>
<p>Thank you in advance</p>
http://stackoverflow.com/questions/660743/what-orm-would-you-recommend1What ORM would you recommend?Nathan Roe2009-03-19T01:16:29Z2009-12-09T09:41:57Z
<p>Here's my reqiurements:</p>
<ol>
<li>Supports C#</li>
<li>Supports Oracle</li>
<li>Supports LINQ</li>
<li>Has ability to map business objects to database tables (not necessarily a 1-to-1 mapping)</li>
</ol>
<p>I know an Oracle Entity Framework provider would support all these, but I've been told that making the custom mappings is not very easy. </p>
<p>What would you suggest?</p>
http://stackoverflow.com/questions/1867162/scalability-of-oracle-forms2Scalability of Oracle Formsdeissenb2009-12-08T14:02:33Z2009-12-09T09:11:32Z
<p>What is your experience regarding the scalability of Oracle Forms? What's the maximum number of application users you would use Oracle Forms for: 100, 1000, 10000, 50000?</p>
<p>I know that this question lacks many detail information for a well-founded answer. However, I am interested in the gut feeling of seasoned Forms developers.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1872471/dictionary-data-insert-or-select-oracle-java0dictionary data insert or select (oracle, java)Chris2009-12-09T08:48:25Z2009-12-09T08:59:31Z
<p>Hello,</p>
<p>I have an table (in ORADB) containing two columns: VARCHAR unique key and NUMBER unique key generated from an sequence.</p>
<p>I need my Java code to constantly (and in parallel) add records to this column whenever a new VARCHAR key it gets, returning the newly generated NUMBER key. Or returns the existing NUMBER key when it gets an existing VARCHAR (it doesn't insert it then, that would throw an exception of course due to the uniq key violation).</p>
<p>Such procedure would be executed from many (Java) clients working in parallel.</p>
<p>Hope my English is understandable :)</p>
<p>What is the best (maybe using PL/SQL block instead of Java code...) way to do it?</p>
http://stackoverflow.com/questions/301366/how-to-read-the-parameters-of-url-in-oracle-form0How to read the parameters of URL in oracle formpkamble2008-11-19T09:21:18Z2009-12-09T07:25:38Z
<p>Hi,</p>
<p>I am using Oracle form 10
I want to know how can I access the parameters of URL in oracle form </p>
<p>Ex:
whenever I run the form it opens in a browser and the URL for the same is</p>
<p><a href="http://112.10.0.10:7778/forms/frmservlet?config=pkamble" rel="nofollow">http://112.10.0.10:7778/forms/frmservlet?config=pkamble</a></p>
<p>I just want to know how can I access the value of 'config' parameter inside oracle form code.</p>
<p>when we run oracle form using 10g then </p>
<p>I will appreciate the help !! </p>
http://stackoverflow.com/questions/1871066/trying-to-connect-to-oracle-error-keyword-not-supported-unicode0Trying to connect to Oracle error - Keyword not supported: 'unicode'.Ryan Smith2009-12-09T01:26:12Z2009-12-09T01:57:56Z
<p>I have a project in ASP.NET that connects to an Oracle database.</p>
<p>One of the page uses a series of table adapters to perform simple scalar lookups. The same dataset with the scalar lookups also has some table adapters that fill datasets.</p>
<p>The datasets fill fine on both the production server(Server 2003) and my local development machine, however, the adapters that are just pulling scalar values are tossing the error:</p>
<p>Keyword not supported: 'unicode'.</p>
<p>On the production server only. It works fine from my local machine and they're both connecting to the same database. The connection strings of both the scalar adapters and the table adapters are the same, so I can't see how it would be a connection string issue.</p>
<p>Does anyone know why this would happen? Is it possible I have an older Oracle client on the server that doesn't handle scalar queries?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1824572/how-to-shrink-temp-tablespace-in-oracle0How to shrink temp tablespace in oracle?P Sharma2009-12-01T07:33:38Z2009-12-09T01:26:11Z
<p>How can we shrink temp tablespace in oracle? And why it is increasing so much like upto 25 GB since there is only one schema in the database for the application and data table space size is 2 GB and index table space size is 1 GB used.</p>