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).
1
vote
2answers
56 views
sql min date returning more than 1 record
I am trying to return 1 record per customer, along with the first record from another table (product). The tables are joined with an intersection table, and the date that I am using the min (date) on ...
2
votes
1answer
41 views
Select statement REF oracle
I need some help with creating a select statement that will use a ref.
I managed to insert the values fine but when i try to extract the values with a where statement the output is either that the ...
6
votes
1answer
75 views
select records for range comparison
I am suck in this one. Wish I could do it in pure sql, but at this point any solution will do.
I have ta and tb tables, containing lists of events that occurred approximately at the same time. The ...
1
vote
1answer
15 views
What is the role of JavaEE jar in Oracle java stored procedure in 11g when using MQ
I need to write an Oracle Java Stored Procedure to write messages to MQ using the stored procedure. I followed the directions from this link and it worked. According to the link, it requires JavaEE ...
0
votes
1answer
34 views
Oracle: Inheritance in triggers
I'm working with two objects Paper and Internal_Paper. Internal_Paper inherits from Paper and has one additional attribute.
I've only one table to insert both objects Paper_Table.
The thing is I've ...
0
votes
1answer
21 views
How to construct .NET connection string to Oracle without TNS?
I have a Sharepoint 2010 .NET 3.5 system running on my local Windows 7 machine with IIS. I have been unable to connect to our corporate Oracle database via Oracle.DataAccess.dll. The error message I ...
0
votes
1answer
27 views
How run two or more instances of an oracle job in the same time?
I have defined a function that when it is called it will define an oracle job with
dbms_scheduler.create_job
that runs a store_procedure with arguments
my Function
Begin
job created and ...
1
vote
1answer
36 views
How to print text from PL SQL using Visual Studio
I am using Visual Studio for PL/SQL. It does not let me print. How can I print any text and test my methods? It just says "PL/SQL procedure successfully completed".
for this block It just says ...
0
votes
2answers
46 views
Using ROWTYPE in PL/SQL VARRAY giving compilation errors
If I try out the below code then it works fine:
declare
type v_varray is varray(50) of emp%rowtype;
v_emp_details v_varray;
begin
select * bulk collect into v_emp_details from emp where dept_id = 1;
...
2
votes
1answer
15 views
Oracle Pro*C installs handlers for SIGSEGV/SIGABRT and friends - why, and how to disable?
When using Pro*C (a embedded SQL preprocessor from Oracle for C-Code) I noticed that the connect routine installs some signal handler.
That means before a
EXEC SQL CONNECT :username IDENTIFIED BY ...
0
votes
1answer
28 views
transform oracle's xml to html using xslt?
I need to transform xml (to html using xslt) file which I made by downloading a dataset from oracle sqldeveloper HR schema! Please help me to write xsl file which will transform the downloaded data ...
2
votes
2answers
35 views
Why doesn't oracle ignore referential integrity constraint for direct-path insert
According to,
http://docs.oracle.com/cd/B10500_01/server.920/a96524/c21dlins.htm#10778
During direct-path INSERT operations, Oracle appends the inserted data after existing data in the table. Data ...
0
votes
0answers
20 views
x86 / x64 issue with Enterprise Library 5 Oracle connection string in .NET 4.0 ASP.NET web application project
My goal is to be able to read from an Oracle database, using a connection string in my web.config file for an ASP.NET application which is running on Windows Server 2008 in IIS 7. Note, that I'm ...
0
votes
1answer
15 views
polygon based on perimeter points - oracle spatial
I've a table with points. I would like to create polygon based on this points and then return only these points which are on perimeter(exclude points which are inside a polygon) . Is there any easy ...
0
votes
1answer
23 views
Oracle error : ORA-00905: Missing keyword on ALTER TABLE
I'm getting the error ORA-00905: Missing keyword with line:
ALTER TABLE Z_Paper_ObjTable ADD SCOPE FOR (institute) IN Z_Institute_ObjTable;
Table Z_Paper_ObjTable has an attribute institute REF ...
0
votes
2answers
31 views
Error in Oracle procedure, object is invalid
Where is the bug? Compilation ends with errors and I have no idea where I'm going wrong.
create or replace
PROCEDURE make_payoff(user_id_argument number)
is
begin
payoff_amount:= 0;
CURSOR Clicks IS
...
2
votes
4answers
47 views
how to sort sql result
I have a sql query in which I want to get name of colors depending upon the search parameter. (Database: Oracle10, Frontend: Java)
Table (table1)
ID COLORNAME
--- --------------------
1 Blue
2 ...
0
votes
2answers
80 views
How to eliminate non-working hours in Oracle
I have two columns of DateTime type. The first one stores the DateTime when a process it started, the other one stores the DateTime when that process is finished. I want to calculate the total working ...
2
votes
5answers
56 views
SQL. How to combine subquery and join correctly?
I need to list the customer name(s) and their project title(s) that has employee GLC working on a task but not employee CAC working on a task.**
I tried the following, but got an empty set:
select
...
-4
votes
0answers
33 views
Oracle Plsql Stored Procedure or Stored Function [closed]
Thanks for the quick reply. My requirement is... I have to develop either a stored procedure or Function just to calculate sum(order_items.quantity*items.price) and store the aggregated value as ...
0
votes
3answers
56 views
Trying to figure out how to use UPDATE in SQL
I'm just learning SQL so I still have a long way to go to figure everything out. I'm trying to write an UPDATE in a customer table that shows any customer 30 days delinquent on their account and will ...
-2
votes
1answer
28 views
Creating Oracle Stored Procedure with joining multiple tables [closed]
I have 2 tables order_items and items. I have to get quantity(Column data) from order_items and price from items. Now I have to calculate Profit as derived column(quantity*price). The whole work ...
0
votes
0answers
17 views
How to get execution details in Oracle Data Integrator
I have written a code using procedure to send an email in Jython. Now I have put my procedure inside a package and I am running the package.
However, what I need to get is the package name, start ...
3
votes
2answers
57 views
Oracle JDBC driver conflict
JBoss EAP 6.1 standlone server
Application deployed as a war file throws a runtime exception
java.lang.ClassCastException: oracle.sql.ARRAY cannot be cast to oracle.sql.ARRAY
at line
...
0
votes
0answers
19 views
Unable to connect to oracle database from rhel5
I have an instance of OBIEE 11g installed on a RHEL5 machine. When I try to run an Analysis. I receive the following error
Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
State: HY000. Code: 10058. ...
0
votes
1answer
54 views
Update multiple columns in MERGE statement ORACLE
I want to update multiple columns in MERGE statement,but for each column the conditions are different.How can I achieve it.
I have more than 1 million rows in both the tables.All columns are ...
-2
votes
0answers
9 views
VM Ware vSphere Configuration - Meaning of 1 Socket 1 Core [closed]
I have a question about what actually happens when I select 1 socket, 1 core inside of vSphere.
I have a production Oracle Enterprise server running on Windows 2008 R2 inside of a managed data ...
0
votes
3answers
18 views
How to filter data from 1 table using another while getting information from second table
I have 2 tables
TABLE1:
C1 | MORECOLUMNS
----------------
aa | info1
aa | info2
bb | info3
bb | info4
cc | info5
TABLE2:
C1 | C2 | C3
------------
aa | 31 | x
cc | 46 | y
I need to get all rows ...
0
votes
1answer
23 views
SQL like command failing in Oracle
I have the following code, which i want to compare two strings (varchars).
If item.item_name contains the string equipment_type anywhere, i want it to return the record.
But i recieved a error, ...
0
votes
1answer
31 views
How to get n rows with highest value for a column without ordering them
i have a sql table:
C1 | C2 | C3
aa | bb | 21
gg | hh | 53
dd | yy | 37
I want the the top 5000 rows with highest value in C3 but I want my data to be ordered by C1
How can I do this? Thanks.
5
votes
1answer
277 views
2 Outer Joins on Same Table?
Here is a question which has been boggling me for few days now, and I searched and searched but couldn't find any convincing answer !
Simple question, why is it restricted to have 2 Outer Joins in ...
0
votes
2answers
32 views
SQL fiscal periods over multiple years
I am writing a command for Crystal reports in Oracle SQL Dev and i have ran into a problem. My User wants to have parameters that allow them to use a starting year/period in the format 'yyyymm' and ...
3
votes
1answer
29 views
Complex select statement in oracle
I have a table that holds Client_ID and Communication_Date I would like to produce below table. Table should list previous and last communication dates.Is there any way to write a query for it? Any ...
0
votes
0answers
26 views
Configuring property name of intermediate table for many to many relationship, EF 5.0
Title of question might not be self-explanatory but I will try to explain it more.
I'm using Model first approach for designing model and specifically trying to setup many to many association between ...
1
vote
1answer
25 views
Difference between DBMS_METADATA and right click 'view'
Something strange happened to me today ,my friends(developers) said its probably a bug ... Usually when I want to see the DDL of a table in PL/SQL , I right-click on the table and then I click on view ...
1
vote
1answer
22 views
Calling Oracle Stored Procedure From Classic ASP
here is a snippet of my code:
Set cmd = Server.CreateObject("ADODB.Command")
cmd.ActiveConnection = objCon
cmd.CommandType = 4
cmd.CommandText = "SP_USERLOGIN"
...
0
votes
0answers
19 views
Why would batch update consistently return an array of SUCCESS_NO_INFO?
When executed individually, each update statement correctly returns the update count. But when executed in batch using java.sql.PreparedStatement.executeBatch(), the driver consistently returns an ...
0
votes
2answers
50 views
SQL counting in a group by
I have a table like the following
C1 | C2 | C3
aa | bb | cc
aa | dd | tt
jj | uu | yy
aa | bb | cc
jj | rr | pp
C1 and C2 may may apear in any combination and may repeat values. Each C3 value is ...
0
votes
3answers
40 views
SELECT When child record doesn't exist
I have two tables parent and children. The parent.mopid and children.mopid is the connection between the two tables. How would I write a SELECT that would end result show me just the parent records ...
0
votes
2answers
24 views
How to filter 1 table using other
I have two tables:
TABLE1
----------------
query | info
aa | info
bb | info
aa | info
cc | info
cc | info
TABLE2:
----------------
query | info
aa | inf
cc | inf
...
1
vote
0answers
26 views
Oracle DBF import brings me to a weird situation [migrated]
I have a big problem .
One of my client send me some files to install them to his Oracle server but as a new user in oracle I am not sure how to do that. What I've recieved are this files :
...
-1
votes
0answers
17 views
with group having intersect minus order start union where
I have a query using inner join ,i can paste into the sql of the oracle report builder, but when compile it in plsql editor
it gave me error counter the symbol inner
'with group having intersect ...
2
votes
1answer
35 views
Unexpected result of multiset mapping in Oracle SQL
Please help me to confirm is that behavior explained below is a bug, or clearly explain why it's right.
There are a high probability that I misunderstood some concept, but now for me it looks like a ...
0
votes
1answer
15 views
Watching state of OracleConnection
I'm using ODP on my Oracle DB application.I registered to OracleConnection.StateChange event for watching the state of the connection. When i disconnect the db connection the event fires but for ...
0
votes
1answer
23 views
Oracle Insert Data Into Object Table
What is the most per-formant manner to insert data into an object table?
Create Type R_Emp Is Object
(Emp_Id number, Last_Name varchar(50));
create type T_Emp is table of R_Emp;
Then given ...
0
votes
1answer
38 views
Error while calling java stored procedure in oracle database
I have created a RunnableJar (a jar containing other third party jars like iText.jar, java classes, etc...) and I have upload that RunnableJar.jar in Oracle database using loadjava. In the jar i have ...
-1
votes
3answers
60 views
ORACLE doesn't save time of date. Why? [closed]
I'm trying to insert date and time in oracle using this query:
insert into table_name
(date_field)
values
(to_date('2003/05/03 21:02:44', 'yyyy/mm/dd hh24:mi:ss'))
But if I check the entry the date ...
0
votes
2answers
35 views
SQL (Oracle) nested select parameters
I'm trying to do something like:
select fred.name
, fred.emp_num
from fred
, joe
, (select * from
(select yr_bonus
, 1 grade
from mark
where mark.department = ...
1
vote
1answer
21 views
Multi-schema select statement doesn't work in PL/SQL procedure?
I'm trying to create a procedure to run multiple PL/SQL statements, but I haven't gotten very far. The select statement works fine if I run it out of a procedure, but if I try to execute it inside one ...
0
votes
1answer
38 views
Oracle error: Application failover does not support non-single-SELECT statement
We are getting the following error using Oracle:
[Oracle JDBC Driver]Application failover does not support non-single-SELECT statement
The error occurs when we try to make a delete or insert over a ...




