active questions tagged plsql - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:34:04Z http://stackoverflow.com/feeds/tag/plsql http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1890223/oracle-shared-memory-error 1 Oracle shared memory error Wade Williams 2009-12-11T19:08:20Z 2009-12-11T20:28:56Z <p>The following query generates the error below in 10g:</p> <pre><code> select DBMS_METADATA.GET_DDL('TABLE','TEST_TABLE','TEST') from dual; </code></pre> <p>Got:</p> <pre><code>ORA-04031: unable to allocate 128 bytes of shared memory ("shared pool","SELECT /*+rule*/ SYS_XMLGEN(...","sql area","qeeOpt: qeesCreateOpt") ORA-06512: at "SYS.DBMS_METADATA", line 1546 ORA-06512: at "SYS.DBMS_METADATA", line 1583 ORA-06512: at "SYS.DBMS_METADATA", line 1901 ORA-06512: at "SYS.DBMS_METADATA", line 2792 ORA-06512: at "SYS.DBMS_METADATA", line 4333 ORA-06512: at line 1 </code></pre> <p>from some reading, it appears this issue can be resolved by adjusting some of the shared memory parameters of Oracle.</p> <p>However, can anyone give a little extra info on possible causes of the error? This is just a single table without about 10 columns, so I'd be surprised if the query itself was the source of the problem. Additionally, Toad can display all my DDL just fine.</p> <p>What things should be I be looking for? Or should I just send this error to my DBA and say, "please fix?"</p> http://stackoverflow.com/questions/1889734/strategy-for-managing-oracle-packages-without-breaking-code 2 Strategy for managing Oracle packages without breaking code Wade Williams 2009-12-11T17:49:32Z 2009-12-11T20:27:04Z <p>I'm curious to find out how people manage their packages in their applications.</p> <p>For example, in our development instance, an application developer may want a change to a stored procedure. However, changing the stored procedure will break the existing Java code until the DAO layer is updated to accommodate for the changes.</p> <p>My typical practice has been to put the new procedure implementation into a "DEV" package. The developer can then change his reference to this package, do his testing and then when we're ready, we can replace the procedure in the "production" package, delete it from DEV and the developer changes his reference back to the production package.</p> <p>However, I'm finding it doesn't work as swimmingly as I'd like. First, if there's a bunch of Java code which depends on the DEV package, then I'm in the same situation as if were editing the production package directly - if I break the package, I'll break a bunch of code.</p> <p>Second, people get busy and we don't get around to moving the package into production as soon we should. Then we have two versions of the stored procedure floating around and it gets difficult to remember what has been moved into production and what hasn't.</p> <p>The goal is to keep the developers working. Yes, it's a development server, but we don't want to be breaking code unexpectedly.</p> <p>Can anyone suggest methodologies that have worked for them to address this issue?</p> http://stackoverflow.com/questions/1860066/post-a-file-to-a-php-page-from-oracle 1 Post a file to a .php page from Oracle basuitdelft 2009-12-07T13:44:30Z 2009-12-11T16:00:11Z <p>On my website I have a .php script to which our customers can post orders. </p> <pre><code> $destname = CreateUniqueOrderFileName(); if (is_uploaded_file($_FILES['file']['tmp_name'])) { if (move_uploaded_file($_FILES['file']['tmp_name'], $destname)) echo "OK"; else echo "ERROR: move"; } </code></pre> <p>So for my clients I wrote an app in C# and if I upload an order I do something like this:</p> <pre><code>var client = new WebClient(); byte[] response = client.UploadFile("http://mywebsite/order.php", "POST", orderFile); </code></pre> <p>But now I have a customer who uses Oracle and wants to post an order using PL/SQL. I try to tell him he has to do a file uploaded via HTTP POST and use multipart/form-data but he does not understand me. Maybe I'm using the wrong vocabulary or not using standards.</p> <p>So does someone have an example of how to post a file to a .php script in PL/SQL or a suggestion where to find more information uploading a file to a .php webpage with an Oracle client.</p> http://stackoverflow.com/questions/242771/oracle-stored-procedure-with-parameters-for-in-clause 3 Oracle stored procedure with parameters for IN clause Robert Mircea 2008-10-28T10:19:53Z 2009-12-11T15:19:18Z <p>How can I create an Oracle stored procedure which accepts a variable number of parameter values used to feed a IN clause?</p> <p>This is what I am trying to achieve. I do not know how to declare in PLSQL for passing a variable list of primary keys of the rows I want to update.</p> <pre><code>FUNCTION EXECUTE_UPDATE ( &lt;parameter_list&gt; value IN int) RETURN int IS BEGIN [...other statements...] update table1 set col1 = col1 - value where id in (&lt;parameter_list&gt;) RETURN SQL%ROWCOUNT ; END; </code></pre> <p>Also, I would like to call this procedure from C#, so it must be compatible with .NET capabilities. </p> <p>Thanks, Robert</p> http://stackoverflow.com/questions/1870670/how-to-loop-accepting-user-input-with-pl-sql 1 how to loop accepting user input with pl/sql? Kyle 2009-12-08T23:40:43Z 2009-12-11T07:06:25Z <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/1884481/poll-oracle-db-for-changes 1 Poll Oracle DB for changes scarpacci 2009-12-10T22:18:08Z 2009-12-11T06:10:53Z <p>Hi,</p> <p>I am trying to figure out how I could poll for changes that are made to an Oracle Table without using a trigger. The only changes I currently care about are new/inserted records. Any suggestions would be greatly appreciated. </p> <p>I also don't really want to have to use other tables to keep track of what has changed.</p> <p>Thanks!</p> <p>S</p> http://stackoverflow.com/questions/1883474/renaming-tags-in-xml-output 1 Renaming tags in XML output FrustratedWithFormsDesigner 2009-12-10T19:45:26Z 2009-12-10T21:44:26Z <p>I have some code that generates XML from some tables. The tables that I'm querying were generated from an XSD file the describes the XML I am supposed to be generating. The problem is that the names of the tables and fields follow a different naming convention than those in the schema - for example, an element named "personID" in the schema would be "PRSN_ID" in the database tables. To generate output, I have code that looks like this:</p> <pre><code>Select xmlelement("person", xmlelement("personID",PRSN_ID), xmlelement("personName",PRSN_NAM), ... </code></pre> <p>As you can imagine, this is starting to get tedious. I am looking for a better solution. I know I can use xmlforest to give tags the same names as a selected column, and I now need a way to translate. For example, if I generated:</p> <pre><code>/*the full long list of columns names can be generated so it's an easy copy-paste:*/ select xmlelement("PRSN", xmlforest(PRSN_ID,PRSN_NAM,... /*produces this:*/ &lt;PRSN&gt; &lt;PRSN_ID&gt;1&lt;PRSN_ID/&gt; &lt;PRSN_NAM&gt;BOB&lt;PRSN_NAM/&gt; ... </code></pre> <p>I would need to translate it into this: </p> <pre><code>&lt;person&gt; &lt;personID&gt;1&lt;/personID&gt; &lt;personName&gt;BOB&lt;/personName&gt; ... </code></pre> <p>How would I go about doing this kind of translation in Oracle PL/SQL? I do have a generated mapping file that tells me that "PRSN_ID" should be translated to "personID", I'm just not sure the best way to proceed with this.</p> http://stackoverflow.com/questions/1882418/plsql-with-oracle-11g 0 PLSQL with Oracle 11g Peter Lang 2009-12-10T17:01:36Z 2009-12-10T17:13:54Z <p>I have quite a few lines of PL/SQL code in Oracle 10g, and we are going to move to 11g. I expect my code to work there too, but:</p> <ul> <li>Are there any pitfalls to expect, any problems you encountered?</li> <li>What new features are you using?</li> </ul> http://stackoverflow.com/questions/1880729/how-to-send-arbitrary-parameters-to-oracle-trigger 4 How to send arbitrary parameters to Oracle trigger? John 2009-12-10T12:39:40Z 2009-12-10T13:27:30Z <p>The purpose is to send extra information to triggers like current user id from a web application. Since a connection pool is used, and same user id is used for all connections how do I pass the original web user id to trigger? This I need to implement without touching application code. It is a java based application.</p> <p>John</p> http://stackoverflow.com/questions/407027/pl-sql-replace-function-isnt-handling-carriage-returns-line-feeds 0 pl/sql REPLACE() function isn't handling carriage-returns & line-feeds Martin Cowie 2009-01-02T15:11:36Z 2009-12-10T11:05:48Z <p>We've a table with a varchar2(100) column, that occasionally contains carriage-return &amp; line-feeds. We should like to remove those characters in the SQL query. We're using ..</p> <pre><code>REPLACE( col_name, CHR(10) ) </code></pre> <p>.. which has <strong>no effect</strong>, however replacing 'CHR(10)' for a more conventional 'letter' character proves that the REPLACE function works otherwise. We have also found that </p> <pre><code>REPLACE( col_name, CHR(10), '_' ) </code></pre> <p>.. finds the <em>location</em> of the new-line, but <em>inserts</em> the underscore after it, rather than replacing it.</p> <p>Running on Oracle8i. Upgrading is not an option.</p> <p>Clues most welcome.</p> http://stackoverflow.com/questions/1876669/evaluation-of-pl-sql-boolean-variables-in-oracle-forms 0 Evaluation of PL/SQL boolean variables in Oracle Forms Adam Paynter 2009-12-09T20:30:16Z 2009-12-10T03:15:20Z <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/1868417/oracle-bug-select-returns-no-dupes-insert-from-select-has-duplicate-rows 2 Oracle bug? SELECT returns no dupes, INSERT from SELECT has duplicate rows Joe Harris 2009-12-08T17:10:04Z 2009-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/1868129/does-anyone-have-a-sample-data-migration-script-oracle-10g-to-oracle-10g-but-di 1 Does anyone have a sample data migration script (Oracle 10g to Oracle 10g, but different schemas)? Theresa 2009-12-08T16:31:03Z 2009-12-08T20:10:42Z <p>I am trying to write a data migration pl/sql script to transfer some of the data in one schema to a different schema on another server. The second database started as a subset of the original database, but we have modified the schema. So I can't just use the following for each table:</p> <pre><code>Insert into DB2.table_name select * from DB1.table_name2; </code></pre> <p>I have tried doing a search for sample scripts that show how to do this, but couldn't find anything.</p> http://stackoverflow.com/questions/297671/select-count-vs-fetching-twice-with-an-explicit-cursor 7 SELECT COUNT(*) vs. fetching twice with an explicit cursor Sambath 2008-11-18T02:22:34Z 2009-12-08T19:56:51Z <p>I have read a book whose title is "Oracle PL SQL Programming" (2nd ed.) by Steven Feuerstein &amp; Bill Pribyl. On page 99, there is a point suggested that </p> <p><strong>Do not "SELECT COUNT(*)" from a table unless you really need to know the total number of "hits." If you only need to know whether there is more than one match, simply fetch twice with an explicit cursor.</strong></p> <p>Could you anyone explain this point more to me by providing example? Thank you.</p> http://stackoverflow.com/questions/1862985/oracle-stored-function-procedure-with-varray-or-user-defined-type-as-in-parameter 0 Oracle stored function/procedure with VARRAY or user-defined type as IN parameter mtim 2009-12-07T21:23:31Z 2009-12-08T11:43:37Z <p>I've defined VARRAY of a user-defined type such as this : </p> <pre><code>CREATE OR REPLACE TYPE TEST_T AS OBJECT (C1 VARCHAR2(20 BYTE), C2 VARCHAR2 (11 Byte)); CREATE OR REPLACE TYPE ARRAY_TEST_T AS VARRAY(200) OF TEST_T; </code></pre> <p>Is it possible to create a java stored function/procedure that accepts VARRAY or user-defined type as IN parameter ? </p> <p>If it is possible what should I replace "??????" with : </p> <pre><code>CREATE OR REPLACE FUNCTION FOOBAR (p1 IN ?????? ) RETURN VARCHAR2 AUTHID CURRENT_USER AS LANGUAGE JAVA NAME 'foobar.FoobarFunction.test_function(?????? array) return java.lang.String'; package foobar; public class FoobarFunction { public static String test_function(?????? array) { return "ok"; } } </code></pre> http://stackoverflow.com/questions/1860789/check-sql-script-valid 0 Check sql script valid Chris R 2009-12-07T15:43:45Z 2009-12-08T09:48:49Z <p>As part of a release we run a load of PL/SQL scripts against a database. Recently someone left the <code>;</code> off the end of a line in one script that was called another script so this meant that script did not get run. Because this did not cause an error, it just didn't get run, it took quite a while to track down what had happened.</p> <p>I want to check the scripts before they are run for lines in them that are missing either a <code>;</code> at the end or a <code>/</code> on the line after. This is made more complicated as 'lines' in the script could actually span more than one line if it is statement or block of code. </p> <p>To me this seems like to do this I'm going to have to parse the scripts then check they meet the above. </p> <p>I've found <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> and wonder if this might be a way to do it since there seem to be <a href="http://www.antlr.org/grammar/1209225566284/PLSQL3.g" rel="nofollow">existing PL/SQL grammars</a> but looks like that's going to be a step learning curve for what's just a simple check.</p> <p>Does anyone know an easy way or any other tools, eclipse plugins etc that I can use to check for lines in the scripts that are missing either a <code>;</code> at the end or a <code>/</code> on the line after?</p> <p><strong>Update</strong> We already do most of the stuff <a href="http://stackoverflow.com/questions/1860789/check-sql-script-valid/1861440#1861440">Tom H suggested</a>. The scripts are run into our test server and we have a version table that gets updated at the end. The problem was that the missing semi-colon in the container script meant one script did not get run but the rest including the one to update the version number ran without errors. Therefore the problem only got picked up quite a way into testing. This needed the database restored before running the scripts with the missing semi-colon added so basically resulted in half a day of testing time being lost. If there was a simple way to check this <strong>before</strong> running the scripts into the test server it could save quite a bit of time.</p> http://stackoverflow.com/questions/1864698/ora-02014-how-do-i-update-a-randomly-selected-row-from-a-table 1 ORA-02014- How do I update a randomly selected row from a table? Azeworai 2009-12-08T04:58:41Z 2009-12-08T08:52:33Z <p>I'm trying to randomly select a card from a table of <code>cards</code> with columns <code>c_value</code> and <code>c_suit</code> using a procedure. After selecting it, the procedure should update that entry's <code>taken</code> field to be 'Y'. </p> <pre><code>create or replace procedure j_prc_sel_card(p_value OUT number, p_suit OUT number) AS CURSOR CUR_GET_RAND_CARD IS SELECT c_value, c_suit FROM (SELECT c_value, c_suit, taken FROM jackson_card ORDER BY dbms_random.value) WHERE rownum = 1 FOR UPDATE OF taken; BEGIN OPEN CUR_GET_RAND_CARD; FETCH CUR_GET_RAND_CARD into p_value, p_suit; UPDATE jackson_card SET taken = 'Y' WHERE c_value = p_value AND c_suit = p_suit; CLOSE CUR_GET_RAND_CARD; END; </code></pre> <p>Then I am trying to get the selected card and output what it is as a start. With this:</p> <pre><code>SET serveroutput on; DECLARE v_value number; v_suit number; BEGIN j_prc_sel_card(p_value =&gt; v_value,p_suit =&gt; v_suit); DBMS_OUTPUT.PUT_LINE(v_value); DBMS_OUTPUT.PUT_LINE(v_suit); END; / </code></pre> <p>However i got the error stated in the title and it seems my way of selecting a random card is stopping me from doing an update. Thanks in advance!</p> http://stackoverflow.com/questions/1861789/oracle-nested-tables-and-column-names 3 Oracle nested tables and column names Wade Williams 2009-12-07T18:03:32Z 2009-12-07T21:22:05Z <p>I'd like to do the following in Oracle 10g (this is a contrived example to show the concepts, not real code)</p> <pre><code> create table orders (order_id NUMBER); insert into table orders values (1); insert into table orders values (2); insert into table orders values (3); TYPE NUMBER_ARRAY_T is TABLE of NUMBER; PROCEDURE VALIDATE_ORDER_IDS(i_orders IN NUMBER_ARRAY_T, o_output OUT SYS_REFCURSOR) IS BEGIN OPEN o_output FOR select ??? from TABLE(i_orders) where ??? NOT IN (select order_id from orders); END VALIDATE_ORDER_IDS; </code></pre> <p>The stored procedure would be called with an array containing (1,2) and we'd expect to get 3 back as a result</p> <p>So, the question is, is there anyway to specify a column name where the ??? are when using a nested table as a table, so the above select statement would work? </p> http://stackoverflow.com/questions/1859290/triggers-in-new-and-old-columns 0 triggers in new and old columns kandukuri-suresh 2009-12-07T10:57:14Z 2009-12-07T18:28:26Z <p>Why can't we use :new and :old columns in a statement level trigger?</p> http://stackoverflow.com/questions/1854427/oracle-stored-procedure-problem 1 oracle stored procedure problem Mr. Flint 2009-12-06T05:07:08Z 2009-12-06T21:57:25Z <p>Hi I am using oracle 10g express edition. It has a nice ui for db developers. But i am facing some problems executing stored procedures. </p> <p>Procedure:</p> <pre><code>create or replace procedure temp_proc is begin DBMS_OUTPUT.PUT_LINE('Test'); end </code></pre> <p>it is created successfully. But when i execute:</p> <p><code>execute temp_proc;</code></p> <p>it shows <strong>ORA-00900: invalid SQL statement</strong> </p> <p>So help needed here</p> http://stackoverflow.com/questions/1850105/how-to-create-a-menu-in-sqlplus-or-pl-sql 2 How to create a menu in SQLPlus or PL/SQL Kyle Goddard 2009-12-04T22:35:09Z 2009-12-05T14:42:16Z <p>I have several scripts that I would like to start from a menu presented to the SQLPlus user. Something like:<br /><br /> Please make a selection:<br /> 1: Do script a<br /> 2: Do script b<br /> 3: Do script c<br /></p> <p>I just need a point in the right direction, not a quick answer.</p> http://stackoverflow.com/questions/1849396/t-sqls-equivalent-of-oracles-type-operator 3 T-SQL's equivalent of Oracle's %TYPE operator? hli 2009-12-04T20:17:04Z 2009-12-04T20:35:37Z <p>When writing a procedure in PL/SQL, I can declare a parameter's type as myTable.myColumn%TYPE so that when I alter myColumn's type from say varchar2(20) to varchar2(50) I don't have to change the procedure's parameter type. Is there something similar in T-SQL?</p> http://stackoverflow.com/questions/1836532/sql-to-create-table-with-weeks-in-period-having-breaks-at-months-end-oracle 1 SQL to create table with weeks in period - having breaks at month's end (Oracle) hihops 2009-12-02T23:08:51Z 2009-12-04T14:42:28Z <p>Hello,</p> <p>I need to create a table with the following structure:</p> <p>calendar week; week start date; week end date</p> <p>which contains all weeks beginning in 2007 until the current week. </p> <p>The special thing is, that when an end of month falls within a week, the week is cut in two slices - one record that has a start date that is the beginning of the week and the end date is the last day of the month, and one record that contains the dates of the rest of the week (start date is first of the new month, end date is last day of the week).</p> <p>Example (beginning of week is monday):<br> <code> calendar week; week start date; week end date;<br> ...<br> 2009 cW48; 23.11.2009; 29.11.2009<br> --"normal" week with 7 days, beginning monday and ending sunday<br> 2009 cW49; 30.11.2009; 30.11.2009<br> --first part of the CW49, which ends at last day of the month<br> 2009 cW49; 01.12.2009; 06.12.2009<br> --second part of the CW49, which begins at fist day of the new month<br> 2009 cW50; 07.12.2009; 13.12.2009<br> --"normal" week, without a monthly break<br> ... </code></p> <p>How to create such a table in Oracle (SQL or PL SQL)?</p> <p>Thank you,<br> Regards<br> Nadine</p> http://stackoverflow.com/questions/1842672/stored-procedure-for-copying-data-from-one-table-to-another 3 Stored Procedure for copying data from one table to another Virat Kadaru 2009-12-03T20:26:22Z 2009-12-03T20:42:43Z <p>I have <strong>pairs of tables</strong> in the format <code>TABLE</code> and <code>TABLE_TWIN</code> now</p> <ul> <li><code>TABLE</code> is the main table with lots of data</li> <li><code>TABLE_TWIN</code> is a table with the exact same fields with a little data (different data)</li> </ul> <p>Now I would like to copy all rows from <code>TABLE_TWIN</code> to <code>TABLE</code> using a stored procedure. I have many such tables and could like the stored procedure to take the table name(s) as parameter(s) so that I can use the same procedure for each table pair. I do not want to write <strong>long <code>INSERT</code></strong> statements because these tables have around 50 attributes each.</p> <p>I am not good with PL/SQL so I need some help here.</p> <p>Thanks!</p> http://stackoverflow.com/questions/414541/session-based-global-variable-in-postgresql-stored-procedure 3 Session based global variable in Postgresql stored procedure? dacracot 2009-01-05T21:09:59Z 2009-12-02T23:32:50Z <p>In Oracle's PL/SQL I can create a session based global variable with the package definition. With Postgresql's PLpg/SQL, it doesn't seem possible since there are no packages, only independent procedures and functions.</p> <p>Here is the syntax for PL/SQL to declare g_spool_key as a global...</p> <pre><code>CREATE OR REPLACE PACKAGE tox IS g_spool_key spool.key%TYPE := NULL; TYPE t_spool IS REF CURSOR RETURN spool%ROWTYPE; PROCEDURE begin_spool; PROCEDURE into_spool ( in_txt IN spool.txt%TYPE ); PROCEDURE reset_spool; FUNCTION end_spool RETURN t_spool; FUNCTION timestamp RETURN VARCHAR2; END tox; </code></pre> <p>How would I implement a session based global variable with PLpg/SQL?</p> http://stackoverflow.com/questions/1068974/getting-the-return-value-of-a-pl-sql-function-via-hibernate 4 Getting the return value of a PL/SQL function via Hibernate Thomas Lötzer 2009-07-01T12:44:21Z 2009-12-02T18:26:09Z <p>I have a PL/SQL function in an Oracle database that I can't change. This function takes a parameter which identifies an entity, creates a copy of that entity and then returns the ID of the copy. This looks something like</p> <p>FUNCTION copy_entity(id IN NUMBER) RETURN NUMBER</p> <p>I need to call this function from Hibernate. I tried creating a named SQL query with something similar to</p> <p>CALL copy_entity(:id)</p> <p>as the query, but from this I can't seem to get the return value of the function. Hibernate's "return-scalar" and similar options require a column name to return and I don't have a column name. This lead me to</p> <p>SELECT copy_entity(:id) AS newEntityId</p> <p>with "return-scalar" using newEntityId as column name, but this also did not work since Oracle then throws an exception that I can't call INSERT (to save the copy) in a SELECT.</p> <p>Is there any way to get the return value of such a PL/SQL function? The function is actually much more complex and still required in other parts of the app, so re-writing it is not really an option.</p> http://stackoverflow.com/questions/1833886/history-records-missing-records-filling-in-the-blanks 1 History records, missing records, filling in the blanks moleboy 2009-12-02T16:03:53Z 2009-12-02T16:47:46Z <p>I have a table that contains a history of costs by location. These are updated on a monthly basis. For example</p> <pre><code>Location1, $500, 01-JAN-2009 Location1, $650, 01-FEB-2009 Location1, $2000, 01-APR-2009 </code></pre> <p>if I query for March 1, I want to return the value for Feb 1, since March 1 does not exist. I've written a query using an oracle analytic, but that takes too much time (it would be fine for a report, but we are using this to allow the user to see the data visually through the front and and switch dates, requerying takes too long as the table is something like 1 million rows). So, the next thought I had was to simply update the table with the missing data. In the case above, I'd simply add in a record identical to 01-FEB-2009 except set the date to 01-MAR-2009.</p> <p>I was wondering if you all had thoughts on how to best do this. My plan had been to simply create a cursor for a location, fetch the first record, then fetch the next, and if the next record was not for the next month, insert a record for the missing month.</p> <p>A little more information:</p> <pre><code>CREATE TABLE MAXIMO.FCIHIST_BY_MONTH ( LOCATION VARCHAR2(8 BYTE), PARKALPHA VARCHAR2(4 BYTE), LO2 VARCHAR2(6 BYTE), FLO3 VARCHAR2(1 BYTE), REGION VARCHAR2(4 BYTE), AVG_DEFCOST NUMBER, AVG_CRV NUMBER, FCIDATE DATE ) </code></pre> <p>And then the query I'm using (the system will pass in the date and the parkalpha). The table is approx 1 million rows, and, again, while it takes a reasonable amount of time for a report, it takes way too long for an interactive display</p> <pre><code>select location, avg_defcost, avg_crv, fcimonth, fciyear,fcidate from (select location, avg_defcost, avg_crv, fcimonth, fciyear, fcidate, max(fcidate) over (partition by location) my_max_date from FCIHIST_BY_MONTH where fcidate &lt;='01-DEC-2008' and parkalpha='SAAN' ) where fcidate=my_max_date; </code></pre> http://stackoverflow.com/questions/1834066/pl-sql-converting-xmltype-to-node 1 pl/sql: converting xmltype to node FrustratedWithFormsDesigner 2009-12-02T16:26:29Z 2009-12-02T16:46:58Z <p>I am trying to put together an XML document from several pieces. To get the data, I had several queries whose results were XMLTypes.</p> <p>I found a function named <code>getNodeFromFragment</code> in the xmldom package that looked like it could take these XMLTypes and return a DOMNode that contained them, but it doesn't seem to work.</p> <p>Simple example here:</p> <pre><code>set serveroutput on; declare node xmldom.DOMNode; node2 xmldom.DOMNode; doc_node xmldom.DOMNode; doc xmldom.DOMDocument; el xmldom.DOMElement; buf varchar2(1000); begin doc := xmldom.newDOMDocument; el := xmldom.createElement(doc =&gt; doc, tagName =&gt; 'test'); node := xmldom.makeNode(elem =&gt; el); xmldom.writeToBuffer(node, buf); dbms_output.put_line('buffer: '||buf); node := dbms_xmldom.getNodeFromFragment(XMLType('&lt;outer&gt;&lt;inner&gt;soemthing&lt;/inner&gt;&lt;inner&gt;somethingelse&lt;/inner&gt;&lt;/outer&gt;')); xmldom.writeToBuffer(node, buf); dbms_output.put_line('buffer: '||buf); end; / </code></pre> <p>Printing the <code>&lt;test/&gt;</code> element works fine, but when I try to print the fragment as a node, nothing is output.</p> <p>Any tips on getNodeFromFragment?</p> http://stackoverflow.com/questions/1379723/sql-query-to-count-multiple-tables 5 SQL Query to Count() multiple tables macleojw 2009-09-04T14:47:12Z 2009-12-02T14:01:09Z <p>I have a table which has several one to many relationships with other tables. Let's say the main table is a person, and the other tables represent pets, cars and children. I would like a query that returns details of the person,the number of pets, cars and children they have e.g.</p> <pre> Person.Name Count(cars) Count(children) Count(pets) John Smith 3 2 4 Bob Brown 1 3 0 </pre> <p>What is the best way to do this?</p> http://stackoverflow.com/questions/1826760/oracle-how-to-avoid-writes-to-undo-redo-log 0 Oracle How to Avoid writes to UNDO / REDO log . Tom 2009-12-01T15:02:29Z 2009-12-01T21:40:10Z <p>Hi</p> <p>I have an Oracle PL / SQL script. It processes about 51 millon registers, and writes results to 5 different tables.</p> <p>The problem is that I left the process running last night, and apparently there was an overflow in the UNDO logs.</p> <p>Particularly, we are not interested in Rollbacking this script, if it fails, we can run it again.</p> <p>Is there any way optimize the usage of the undo / redo logs? Avoid writing them or minimizing those writes? </p> <p>As far as I understand, setting the NOLOGGING attribute the output tables would help, in addition to using the APPEND insert (as said <a href="http://stackoverflow.com/questions/199537/oracle-sql-technique-to-avoid-filling-trans-log">here</a>)</p> <p>Any tips will be appreciated. Thanks in advance.</p>