2
votes
1answer
26 views
PostgreSQL and/or MSSQL alternatives to Oracle’s SYS_CONTEXT
Having used an Oracle DB for a while, I got used to using the Oracle DB Application Context to implement access restrictions. To simply put it, upon login a procedure is called that puts the user …
1
vote
4answers
50 views
trigger in oracle stored procedure
Hi
I have a requirement like this: I have to select a certain number of records from an Oracle table using a stored procedure. I will capture the entire resultset in ref cursors, but at the same time …
3
votes
5answers
57 views
Slow performance selecting next message from custom queue
Hi all,
I have a simple table based queue system. In its simplest form, it consist of an id, a queue name, and a status. When reading the next message from a given queue, we need to ensure FIFO …
1
vote
1answer
25 views
Converting Oracle date arithmetic to work in HSQLDB
I'm trying to spot-test an Oracle backed database with hsqldb and dbunit, but I've run into a snag.
The problem is with the following EJB-QL (simplified a bit):
SELECT o
FROM Offer o
WHERE …
3
votes
1answer
39 views
What is the syntax to define an Oracle procedure within an another stored procedure?
After many Google and SO searches, I cannot find a definitive answer to this simple question:
How can I define a procedure inside of another procedure to use?
I know that there are nested blocks and …
2
votes
3answers
28 views
Converting to date with multiple possible masks in Oracle
It so happens that I have to get a date from a varchar2 column in oracle, but it is inconsistent in formatting. Some fields might have '2009.12.31', others '2009/12/32 00:00:00'. Is there any standard …
1
vote
4answers
99 views
Oracle: Check if rows exist in other table
I've got a query joining several tables and returning quite a few columns.
An indexed column of another table references the PK of one of these joined tables. Now I would like to add another column …
0
votes
1answer
29 views
Find a string within the source code (DDL) of a stored procedure in oracle.
Hello, I need to find a string in the source code (DDL) for all stored procedures in Oracle schema.
I use this query to perform the task, but I think can be improved
SELECT T0.OBJECT_NAME
FROM …
0
votes
3answers
36 views
ORACLE capture exception object.
Hi there any way to capture the objects (such as table and column) where an exception was thrown in ORACLE?
I need to determine the object name to customize the error message showing the user the …
2
votes
1answer
62 views
Oracle: Set Query Timeout
Hello, i have a PL/SQL program which do a query to an AS400 database through Transparent Gateway. Sometimes the AS400 not responds to the query (may be network problems )and the PL/SQL program hangs.
…
2
votes
6answers
64 views
Speeding up integration tests that rely on an Oracle DB
We have an Oracle database server specifically for our unit tests to run against. Is there a way to tune Oracle specifically for this kind of purpose? As the data is constantly being thrown away …
2
votes
3answers
72 views
Unit testing with Oracle
Does anyone have any frameworks/apps/methodologies for creating Unit tests with Oracle?. I'm using Oracle 11g.
I also have Team Foundation Server installed, where we do all our other development work …
0
votes
2answers
60 views
generic stored procedure in oracle
I want to write a PLSQL stored procedure that accepts a table name as argument. This table is source table. Now inside my procedure i want to manipulate the fields of that table.
EX: I want to …
0
votes
12answers
185 views
MySQL vs. SQL Server vs. Oracle…
Hi Guys,
I have always only used MySQL and no other database system.
A question came up at a company meeting today and I was embarrassed I did not know:
To a developer, what earth-shaking …
0
votes
3answers
38 views
How to import Oracle (C)LOB into another tablespace.
I'm importing a database dump from one Oracle 10g installation into another. The source has a layout with several tablespaces. The target has one default tablespace for the user I'm importing the dump …
