Oracle Server is a relational DBMS (Database Management System) created by Oracle Corporation. Do NOT use this tag for other DBMS servers owned by Oracle (for instance MySQL, TimesTen and Berkeley DB).
6
votes
0answers
641 views
Oracle User definied aggregate function for varray of varchar
I am trying to write some aggregate function for the varray and I get this error code when I'm trying to use it with data from the DB:
ORA-00600 internal error code, arguments: [kodpunp1], [], [], ...
4
votes
0answers
323 views
cannot query SQL Server system tables over db link created using DG4MSQL
I am trying to create db link from Oracle 11g to SQL Server 2005 using DG4MSQL gateway.
After creating db link I am not able to query SQL Server system views (sys.services or sys.objects) using JDBC ...
4
votes
0answers
182 views
how to cache XMLTYPE table in a TimesTen DB?
I have an XMLType table in an oracle database which I want to cache in a timesten cache group. But because the constraint that the table definition in the cache group must be the same as in the ...
3
votes
0answers
80 views
Converting Negative numbers with TADOQuery
I have a huge problem with TADOQuery:
This is my SQL:
select cast(-10 as number(9)) foo, -10 bar
from dual
Instead of TBCDField, a TIntegerField will be created when you add the "foo" field, ...
3
votes
0answers
44 views
Is it possible to change a Nuget package reference based on the targeted platform?
I am creating an application that uses the Oracle Data Provider for .Net. Some of my clients will be running the application in a 32 bit environment, and others on a 64 bit architecture, so I need to ...
3
votes
0answers
105 views
SQL Developer stripping inline hints
I'm using SQL Developer 3.1.07. I ran a query to Oracle with an inline hint --+ hint in it but SQL Developer seems to have stripped the hint before submitting it to the database. Multi-line hints ...
3
votes
0answers
78 views
Change materialized view to on commit
I have a materialized view I would like to alter to on commit (from on demand) using fast refresh.
However I constantly get
ora-32337 cannot alter materialized view with pending changes refresh on ...
3
votes
0answers
39 views
Java Typical Way to Access TCKs
I wanted to start implementing a specific JSR to start learning about different aspects that might be involved when doing so. To also get the satisfaction of knowing whether I succeeded, I'd need a ...
3
votes
0answers
557 views
workaround for ORA-03113: end-of-file on communication channel
The call to TEST_FUNCTION below fails with "ORA-03113: end-of-file on communication channel". A workaround is presented in TEST_FUNCTION2. I boiled down the code as my actual function is far more ...
3
votes
0answers
169 views
PL/ SQL MENU doubts after following the code in LINK
I used the same code, but instead of running the scripts in options 1, and 2, the script asks for this
This is the link I used: How to make a menu in SQLPlus or PL/SQL?
PROMPT 1: Make a sales ...
3
votes
0answers
223 views
Error saving the XML data in an ORACLE database warning and fatal error
help to understand what is wrong.
The point is:
Include buffering, create the XML data:
ob_start();
header("Content-Type: text/xml");
header("Expires: Thu, 19 Feb 1998 13:24:18 GMT");
...
3
votes
0answers
178 views
EF migration to Oracle
Is it possible to migrate EF/NHibernate entities to Oracle database with free provider(No Devart)?
I've got this message:
No MigrationSqlGenerator found for provider 'Oracle.DataAccess.Client'. ...
3
votes
0answers
329 views
EntityFramework / WCF RIA Services / Oracle / Custom number mapping
this post is intended as (not optimal) solution for everyone that has to struggle with the same problem and there is only few to no answer in the net atm...
(of cousrse this post will contain ...
3
votes
0answers
690 views
Oracle SqlError: Protocol Violation / OALL8 is in an inconsistant state
I'm getting Protocol Violation and OALL8 is an inconsistant state exceptions trying to execute SELECT queries, but only on SOME of my tables. I first noticed this in a test application that I wrote ...
3
votes
0answers
382 views
Executing an Oracle stored procedure returning a REF CURSOR using SqlAlchemy
I have a stored procedure that I have defined in Oracle. In that procedure I need to return a recordset. To do this, I am using the SYS_REFCURSOR, which works great inside of Oracle (and with ...
3
votes
0answers
230 views
generate identity for an Oracle database through Entity framework using an exisiting storeprocedure
How to automatically generate identity for an Oracle database through Entity framework.
I have function that i could call and generate the column which is not in the context how do i explicitly call ...
3
votes
0answers
168 views
JDBC Caching using result_cache hint
I want to do JDBC Caching, I am using Oracle 11 as database. Using result_cache hint can help me here. But I have found it is not working with big resultset (around few thousand records) even though I ...
3
votes
0answers
338 views
Does Oracle provide public Symbol Files (PDB) for OCCI/OCI?
OTN Thread: Does Oracle provide public Symbol Files (PDB) for OCCI/OCI ?
When debugging an application under Windows (with Visual Studio or WinDBG) that makes use of OC[C]I it would often be ...
3
votes
0answers
3k views
“ORA-31011: XML parsing failed” when inserting an XML document into a table with XMLType column using Hibernate
I want to store XML data in an Oracle XMLType column with registered XML schema file. Both XML files and the XSD schema are valid and XMLs conform to the schema. To get Hibernate work with XMLType, I ...
3
votes
0answers
990 views
need help with jasperserver deploy in glassfish
i've been trying to deploy jasperserver 4 in glassfish 3 and using oracle 10g express edition for repository with no luck. i've tried following the install guide and making some changes since the ...
3
votes
0answers
641 views
Entity Framework - Why does EF use LEFT OUTER JOIN's in a 1-to-1 relationship?
Why does .NET Entity Framework produce SQL that uses a subquery and left outer join on a simple 1-to-1 relationship? I expected to see a simple join on the two tables. I'm using Devart Dotconnect for ...
3
votes
0answers
513 views
Getting Connection timeout in OCCI
I need to test the connectivity if the Oracle::OCCI::Connection, and how can i get and set the connection timeout value? i read the documentation of Oracle OCCI but i can't find the required ...
2
votes
0answers
70 views
PHP calling ORA stored procedure: ORA-01722 invalid number
I have this ORA stored procedure:
procedure calc(code in number, extLoan in number, loan in number, payment in number, duration in number, saleId in number, resultBlob out clob);
(currently only ...
2
votes
0answers
37 views
Running Jena Adapter on Oracle's 11g JVM
We are trying to develop java stored procedures within Oracle 11g r2 using the Jena Adapter. Our main purpose for using java stored procedures with the Jena Adapter is to be able to emit SPARQL 1.1 ...
2
votes
0answers
27 views
ruby oracle-enhanced stuck connection after sleep
Thank you for your attention. We got a bit stuck with stuck connections with after some idle period and would appreciate any help or things to try.
We're using v1.4.1 of ...
2
votes
0answers
35 views
Declaring a table of type object where the object contains two nested tables
I am creating staff object who can teach on 1 or many modules. I have a nested table that contains refs to the module table. I was also going to create another to show the modules that the staff ...
2
votes
0answers
152 views
Applet Java 7 update 21: Cannot set AWTKeyListener on default Toolkit
In my self-signed applet (that may possibly become a CA-signed applet in near future) in which I have a fairly complex Swing GUI, I need to detect whenever the user has the SHIFT- or CONTROL-key ...
2
votes
0answers
69 views
Concatenate rows into CLOB
There are many similar questions on this subject, but I can't find any with solutions that keep into account anything with an end result too large for varchar2.
So what I'm trying to do is change ...
2
votes
0answers
110 views
ORA-00922: missing or invalid option when using CREATE TABLE
I keep getting this error when I attempt to create tables. This is what I have so far:
CREATE TABLE Club
( Club_ID NUMBER(7) NOT NULL
, Club_Name VARCHAR2(35) NOT ...
2
votes
0answers
78 views
Set LD_BIND_NOW variable to solve TNS Linux Error: 29: Illegal seek error
I faced issue while starting TNS Listener for my Oracle XE DB on my Linux box using bash shell:
LSNRCTL> start
Starting /oracle/product/11.2.0/xe/bin/tnslsnr: please wait...
TNS-12537: ...
2
votes
0answers
104 views
Unicode Parameter on Oracle Connectionstring
Why does not Oracle ODP recognize the parameter Unicode=true and Devart's Provider does?
WHen I have data containing the string : "ñãõ,éóúý" , my asp.net application shows "???,????" if I'm using ...
2
votes
0answers
132 views
Entity Framework & Oracle: Cannot Insert VARCHAR2 > 1,999 Characters
I created a 4,000-character VARCHAR2 field in an Oracle table. I am inserting string values into the field using LINQ to Entities with Visual Studio 2010, .NET Framework 4, and ODAC 11.2 Release 4 and ...
2
votes
0answers
106 views
complete refresh to a materialized view every minute
i am creating a mv with the next sentence:
create materialized view Vinculaciones_Activas_dos
REFRESH COMPLETE
START WITH (SYSDATE) NEXT (SYSDATE + (1/1440)) WITH ROWID
as
select bla,bla,bal
...
2
votes
0answers
48 views
Django and Oracle nested table support
Can Django support Oracle nested tables or varrays or collections in some manner? Asking just for completeness as our project is reworking the data model, attempting to move away from EAV ...
2
votes
0answers
125 views
Validating Long RAW column in oracle with SQL Server after migration using SSMA
I have an oracle 11g source which I hae migrated to SQL Server 2008 using SQL Server Migration assistant tool from microsoft. The oracle source had a table that contained a long raw column. The type ...
2
votes
0answers
341 views
Oracle XE 11g homepage not displaying
I have been searching for a solution to my problem for a while now but none seems to be working, this is my last attempt before I go for re-installation.
I today installed Oracle XE 11g Release 2 ...
2
votes
0answers
499 views
Need to combining two column's data into one column in SQL?
I am providing one example here to make you all understand what i actually need:
I have a table like this:
Name Null? Type
...
2
votes
0answers
54 views
VS2010 build order affects whether or not my build succeeds
I have an application written in Pro*C (C with embedded Oracle SQL) that I had building in VS2008 using custom build files to do the preprocessing. The source is in .m4 format (for legacy reasons - I ...
2
votes
0answers
43 views
MSMQ integrated with Oracle Database
I have a WCF MSMQ service-client application. The client will sending data to service over WCF via MSMQ. I try to integrate the application with an oracle database. When the service gets data from the ...
2
votes
0answers
46 views
How to add Oracle Column comment in Japanese?
I'm trying to add comment in Table Column in Oracle, but they don't display in Japanese as what I've typed. (Just ¿¿¿¿¿¿¿¿¿(¿¿¿')
Any one help me...
Thanks in advance
2
votes
0answers
265 views
Oracle stored procedure needs recompilation to fetch table data
Problem: To get results from my SP I need to recompile every time.
Purpose of the SP: to construct XML out of each row in a table.
Description: After running the SP for the first time post ...
2
votes
0answers
86 views
Display the content of a PDF File in a Text Field
I am newbie in Oracle Forms. I have stored a PDF file in an Oracle database; now I want to read that PDF file and display the content in text field in Oracle Forms.
How should I go about doing this?
2
votes
0answers
49 views
Is there a way to use EJB authentication data to connect to persistent storage?
There are a few users which have (1) username, (2) password and (3) role attributes.
I want to use credentials of a user to authenticate and authorize for EJB service operations (WebLogic 12c App ...
2
votes
0answers
143 views
C# Equivalent in Java for adding associative arrays to command parameter
I am using bind variables in a merge statement and it contains associative arrays. What would be the equivalent Java code. I tried using PreparedStatement and callable statement but they won't work ...
2
votes
0answers
109 views
can I use Entity Framework when the DBMS-type is not known at build time?
I'm developing an application (CRUD WS) that connects to single database that can be Oracle or SQL server and the type is read from configuration file. Can I use EF to implement DAL? Some ...
2
votes
0answers
184 views
Unable to create objects with db link; ORA - 0251: another session or branch in same transaction failed or finalized
I have a Heterogeneous Link between Oracle 11.2.0.3 and SQL Server 2008. When I attempt to create views, or procedures that reference the Heterogeneous Services views for system tables, I get 4 errors ...
2
votes
0answers
240 views
Dynamically Creating Radio Button Groups in OAF
My use case is:
Create a questionnaire page with Yes/No questions. The questions will be fnd messages from the database and there can be multiple set of questions. I should be able to display radio ...
2
votes
0answers
636 views
IO exception: Size Data Unit (SDU) mismatch. Vendor code 17002
I am connecting through VPN to school site to access DB.
I use SQL developer 3.0.04 to connect this database. But if I try to connect it this exception is thrown: "IO exception: Size Data Unit (SDU) ...
2
votes
0answers
387 views
Failure trying to get a pooled connection. java.sql.SQLException: Protocol violation
I'm administering a web-based application that is set-up to pull in data from a variety of databases; SQL, Oracle, Mainframe, etc.
I was given credentials to access an Oracle DB, and am establishing ...
2
votes
0answers
343 views
Accessing types defined inside package from java
My procedure in oracle is defined under a package, which has in and out parameters of table of records.
I can call the procedure using packagename.procname using the callable statement from java. ...

