9
votes
3answers
3k views
Oracle “Partition By” Keyword
Can someone please explain what the "partition by" keyword does and give a simple example of it in action, as well as why one would want to use it? I have a SQL query written by someone else and I'm …
7
votes
10answers
3k views
SELECT COUNT(*) vs. fetching twice with an explicit cursor
I have read a book whose title is "Oracle PL SQL Programming" (2nd ed.) by Steven Feuerstein & Bill Pribyl. On page 99, there is a point suggested that
Do not "SELECT COUNT(*)" from a table …
7
votes
2answers
530 views
Find out name of PL/SQL procedure
Can PL/SQL procedure in Oracle know it's own name?
Let me explain:
CREATE OR REPLACE procedure some_procedure is
v_procedure_name varchar2(32);
begin
v_procedure_name := %%something%%;
end;
…
7
votes
4answers
7k views
How to return multiple rows from the stored procedure? (Oracle PL/SQL)
I want to create a stored procedure with one argument which will return different sets of records depending on the argument. What is the way to do this? Can I call it from plain SQL?
6
votes
8answers
5k views
Oracle to Excel - PL/SQL export procedure
Hi,
I’m writing pl/sql procedure that exports data from Oracle to Excel. I need data formatting so I can’t use CSV. I’ve already tried with XML but it generates too large files when I want to export …
6
votes
7answers
10k views
UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY
Hi,
I'm looking for an UPDATE statement where it will update a single duplicate row only and remain the rest (duplicate rows) intact
as is, using ROWID or something else or other elements to utilize …
6
votes
7answers
562 views
Unit testing for PL/SQL
Anyone have any experience or tools for unit testing PL/SQL. The best looking tool I've seen for this seems to be Quests Code Tester, but i'm not sure how well that would integration with continuous …
5
votes
8answers
167 views
Oracle PL/SQL - tips for immediate output / console printing
I have a number of pl/sql procedures that can take several minutes to run. While developing them, I've added a few print statements to help debug and also provide some feedback and progress …
5
votes
3answers
190 views
Does Oracle roll back the transaction on an error?
This feels like a dumb question, but I see the following in the Oracle concepts guide on transaction management:
A transaction ends when any of the
following occurs:
A user issues a COMMIT …
5
votes
3answers
188 views
Oracle PL/SQL: Any benefits in changing PLSQL_CODE_TYPE from interpreted to native ?
Are there are tangible benefits in changing the PLSQL_CODE_TYPE from interpreted to native? Was wondering if there are any case studies on the same.
If benefit justifies the change, how can I go …
5
votes
10answers
664 views
Hidden features of PL/SQL
In light of the "Hidden features of..." series of questions, what little-known features of PL/SQL have become useful to you?
Edit: Features specific to PL/SQL are preferred over features of Oracle's …
5
votes
9answers
1k views
Deleting a LOT of data in Oracle
I am not a database person, exactly, and most of my db work has been with MySQL, so forgive me if something in this question is incredibly naive.
I need to delete 5.5 million rows from an Oracle …
5
votes
7answers
548 views
Any Static Code Analysis Tools for Stored Procedures?
Are there any static code analysis tools for stored procedures written particularly in PL/SQL and T-SQL?
5
votes
5answers
212 views
Recommendations on learning PL/SQL?
I have worked with SQL on Oracle 9, and a bit on SQL Server 2000 for about a year. I need to get a jumpstart on working with PL/SQL in Oracle 9i. I work with a handful of ASP.NET 2.0 sites and some …
5
votes
5answers
2k views
Consuming web services from Oracle PL/SQL
Our application is interfacing with a lot of web services these days. We have our own package that someone wrote a few years back using UTL_HTTP and it generally works, but needs some hard-coding of …
