Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
1k views

How to deal with VARRAYs (Oracle 9i) in JDBC?

I am trying to write a small program which has to store and retrieve values from database. The database is object relational. Here're the DDL statements : create or replace type Guy as object (name ...
4
votes
1answer
415 views

Can I slice a PL/SQL collection?

I've got a PL/SQL VArray that I'm filling with a BULK COLLECT query like this: SELECT id BULK COLLECT INTO myarray FROM aTable Now I'd like to pass a slice of this collection into another ...
3
votes
1answer
191 views

How to use SQL 'IN' (or 'ANY') operator with VARRAY in PL/SQL

My .NET code is currently using ODP.NET to call a stored procedure many times to operate on various rows in many tables. The .NET code has an array of the rows to change. Only one parameter changes ...
2
votes
1answer
29 views

How to count the number of elements in all Oracle varrays from table?

I have a table like this: CREATE TABLE spatial_data ( id NUMBER PRIMARY KEY, geometry SDO_GEOMETRY); SDO_GEOMETRY has a field sdo_ordinates with the following type: TYPE SDO_ORDINATE_ARRAY AS ...
2
votes
1answer
99 views

How to define a dictionary like structure in Oracle PL SQL?

How to define in PL/SQL the following structure: A list of strings which contains multiple rows. Example: 'User A' --> (1) --> 1 (2) ...
2
votes
1answer
214 views

Oracle PL/SQL: How to DEREF from a VARRAY of REFs?

I'm new to Oracle Objects and I have a problem. I don't know how to dereference an item from a VARRAY of REFs. Below is some source code that reproduces the problem that I have. The error is: ...
2
votes
2answers
3k views

C# call to Oracle 11g Procedure with VARRAY parameter

How from ASP.NET I can call a stored procedure in an Oracle package that accepts a VArray. The VArray will pass a list of keys that the stored procedure will use to modify appropriate records. I ...
1
vote
1answer
687 views

Pass varray variables into stored procedure - basic

Hello I am a php developer, trying to get going with Oracle. So I need to pass a collection of variables into an Oracle stored procedure. So as a basic try, I am trying to access a procedure which ...
1
vote
1answer
622 views

Hibernate and Oracle VARRAYS/NESTED TABLE

Oracle supports the use of VARRAYS and NESTED TABLE data types, allowing multivalued attributes. (http://www.orafaq.com/wiki/NESTED_TABLE) I am currently using Hibernate 3 as my ORM framework, but I ...
1
vote
1answer
452 views

How to initialize a varray table of {TABLE}%ROWTYPE?

I have a varray defined like: declare TYPE tnr_l IS VARRAY(30) of lve%ROWTYPE; I want this varray to be initialized with a fetch from the database: select * into tnr_l from lve where type = ...
0
votes
1answer
90 views

PLSQL user defined table types and joins

Let's say I have a user defined table type: create or replace type SrcCodeTbl is table of varchar(20); I have a procedure that has a parameter of this type: create or replace procedure ...
0
votes
2answers
116 views

How to insert the comma separated value in table

I have a table like that: columnId1 => "word1,word2,word3" columnId3 => "word4,word5,word6" I want to create a table like that: columnId1 word1 columnId1 word2 columnId1 word3 columnId2 ...
0
votes
1answer
119 views

Retreiving a 2d varray in Java with JDBC

I have the following types: create or replace TYPE mytimestamp AS VARRAY(300) OF TIMESTAMP(6); create or replace TYPE trade_history_dts_array AS VARRAY(300) OF mytimestamp; The ...
0
votes
1answer
290 views

Access a varray type defined inside a package using oci_new_collection

Hello I am trying to pass in varrays from PHP to Oracle. I am using OCI8 and have earlier worked with varrays as arguments in stored procedures, and on compilation the types of those varrays are ...
0
votes
1answer
239 views

How does Oracle VARRAY represent data in Java terms?

Slightly broad question here, but here goes I'm trying to call an Oracle stored procedure, which returns a VARRAY which is of constructed from a ROWTYPE on one of my tables. For simplicity, lets say ...
0
votes
0answers
192 views

Unable to return large result set ORA-22814

I am encountering an issue when I am trying to load a large result set using a range query in Oracle 10g. When I try a smaller range (1 to 100), it works but when I try a larger range(1 and 1000), I ...
0
votes
2answers
164 views

Drawback of large LIMIT of VAR-types

Is there any drawback (except allowing the value or array to grow too large) to setting the max integer size of a VARCHAR or VARRAY to a value significantly larger than actually necessary (or setting ...