Oracle is an RDBMS product. Specific releases of the product are known as Oracle9i, Oracle10g and Oracle 11g. Generally there are two releases within each major version. Questions tagged **oracle11g** are assumed to be specific to this version or features introduced in this version.
0
votes
1answer
22 views
ORA - 02287 sequence number not allowed here
I have a table name test which has three columns id, m_id and s_m_id
I am executing below query
select id,test.nextval listagg(m_id || ',' || s_m_id, ';') within group (order by m_id) as merge_ids
...
-1
votes
0answers
14 views
Error while opening Oracle 11g Database [closed]
I have a problem with oracle 11g database,
I have shutdown my computer this morning normally, but in the evening when I tried to connect to my database I fond a problem. I cannot connect as normal ...
1
vote
1answer
20 views
concatenate multiple clobs withing Oracle Procedure
I have an Oracle procedure that is going to accept multiple values within a parameter. Part of the procedure will run a select statement putting the results of the parameter in the where clause and ...
1
vote
1answer
12 views
Cannot use sequence in a spooled UNION Query
I need to spool a query with column headers. The query itself runs correctly on its own, and the dummy header query runs correctly alone. The query uses a sequence to sequentially number the rows ...
0
votes
0answers
16 views
SQL Developer - Retaining data values when exporting data
I'm running a query on a table that has a VARCHAR2 column with alphanumeric values (Ex. 234E0971, 2560D1A3, 38BC912E).
When I export the selected data into Excel, some of the values in that column ...
0
votes
0answers
16 views
Oracle Forms 11g Not work with IE8
I am lunched Oracle Forms 11. Everything is fine except one thing. Internet explorer can not start them. Everything works with IE9, IE10, Chrome, Firefox. The problem is with IE8. We tried changing ...
-2
votes
1answer
34 views
combine multiple rows into a single row in Oracle? [duplicate]
I have 3 column in my test table like
ID | m_id | S_m_id
---------- --------------
1 | 1 | 1
1 | 2 | 3
1 | ...
1
vote
1answer
38 views
Oracle 11g - factorial not working with large numbers
I'm trying to replicate some formulae form an Excel sheet in Oracle. In the Excel sheet the formula is:
LN(FACT(n))
However I found that if you get up to n=170 it returns an error because the ...
1
vote
4answers
34 views
Oracle 11g Aggregating Rows
I am trying to figure out the best way to do aggregate multiple rows together in oracle. We have a table where we log key user events as they go through a process flow. We have the following table ...
0
votes
2answers
33 views
Multiple lines in a column in oracle to a single row
My oracle table is as follows ( Address column having multiple lines):
ID Address
--------------------
1456897 No 61
11th Street
Tatabad Coimbatore - 641012
How ...
0
votes
1answer
48 views
ORACLE - check if time is in between two timestamp
I have a simple query which will return either A or B depending on the projected oven out date and time. If the projected oven out date and time is between 6am and 6pm, A should be returned. Otherwise ...
0
votes
1answer
29 views
Pl/sql bad bind error
Can someone help me with the code below:
I'm not sure why it throws an error
RETURN (salary > min_sal) & (salary <=Max sal) - are these valid?
When I run the code I get a PLS ...
0
votes
0answers
32 views
Insert blob from android to oracle
I'm working with Oracle database. I use PHP for my web service and Android as the client which will send blob data to Oracle DB. I use this code
Bitmap imageUpload = ...
1
vote
0answers
13 views
Why aren't HTTP Headers from Oracle Access Manager passing through to WebSphere from IHS?
I have a IBM HTTP Web Server setup as a reverse proxy for a WebSphere application server. We use Oracle Access Manager for user authentication. There is also a Oracle Webgate running on the IHS server ...
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 ...
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 ...
0
votes
2answers
27 views
Oracle Pivot - converting values into columns
I have table in Oracle 11g with 3 fields:
STUDYID | STUDY_PARAMETER | STUDY_VALUE
5268 | Age Group | ADULT (18-65)
5269 | Age Group | ADULT (18-65)
5270 | Age ...
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
0answers
7 views
invalid host/bind variable warning generated by php code
oci_bind_by_name() work the same way with 'number' data type and 'varchar2' data type?
for example:
oci_bind_by_name($stid, ':price', $price);
oci_bind_by_name($stid, ':owner', $owner);
here ...
0
votes
0answers
16 views
XA error in datasource in weblogic 11g
Facing one issue on production. Please help me out:
Unexpected exception while enlisting XAConnection
java.sql.SQLException: XA error: XAResource.XAER_RMFAIL
start() failed on resource ...
0
votes
1answer
25 views
TimeOut Issue in Oracle Bpel 11g
Getting Timeout issue in bpel faulted instances on Oracle SOA Suite 11g. Please find error:
weblogic.transaction.internal.TimedOutException:Transaction timed out after 300 seconds.
To further ...
1
vote
1answer
26 views
Oracle 11g: shuffling VARCHAR2 column to get random mapping
I have something like that (FIDDLE:
CREATE TABLE COMPANY(
id int primary key,
name varchar2(20)
)
I entered sample data:
+------+----------+
| ID | NAME |
+------+----------+
| 1 ...
0
votes
0answers
9 views
ODP.Net support for ASP.Net projects
I used Oracle ODP.Net in VS 2010 winforms where Toolbox objects like OracleDataAdapter were available via drag & drop to the form, then configure the dataadapter and populate the dataset in ...
0
votes
1answer
21 views
change default location of table space files [closed]
Can anyone tell how to
change the default physical location of table space files ?
in oracle.
Currently it is created under $ORACLE_HOME/dbs folder.My database is oracle 11gr1
0
votes
0answers
65 views
Oracle SQL query: Finding the number of counts of similar objects between parent project and child project
I am stuck on this part.
Also, this is in continuation of, as I don't want the members to get confused.
How to find the child project of a parent project which is passed in the 'WHERE' clause ...
0
votes
1answer
14 views
Oracle database replication strategy [closed]
I would like to replicate an oracle database for a "not really flexible" client. I have read permission on database and further no access to infrastructure => It is not possible to install whatsoever ...
0
votes
0answers
38 views
Oracle11g : DBOCI library conflict with C++
I have a problem on C++ and oracle 11g,i have a generated ODBCI.lib,this lib use the lib and include files of oracle11g.my problem is when i run the compilation i have lnk error ,it's an error of link ...
1
vote
2answers
28 views
Oracle SQL: Hierarchical Query to generate specific sequence
Currently I have something like this:
SELECT TO_CHAR(ROWNUM, '009'), TO_CHAR(L, '009')
FROM ( SELECT L
FROM ( SELECT LEVEL AS L
FROM DUAL
CONNECT BY ...
0
votes
1answer
19 views
Conversion of varchar to Number and make comparasion in oracle
I hvae two columns in table both have datatype as varchar2.
Now i want to get data based on input value and based on this my select query looks like this:
select fromtime, totime from ...
0
votes
0answers
38 views
MATCH_RECOGNIZE Pattern with more than one eventType
i try to make a query in Oracle CQL, which should detect an event (eg. price event) followed by an other event (NOT a price event; eg. inventoryEvent).
I used Esper before.
Here is a short example: ...
0
votes
3answers
52 views
Oracle 11g: only return a value if row is first or last in group
I'm trying to create a report from an Oracle query. The data is like this:
GROUP_ID | COUNT_1 | COUNT_2
1 | 100 | 123
1 | 101 | 123
1 | 283 | 342
1 | ...
-1
votes
2answers
73 views
Need to delete duplicate records from a table with 30 columns [closed]
I need to delete the exact duplicate records from a table with 30 columns.
My data would look something as attached.Advance Thanks!!
-1
votes
0answers
32 views
Procedure that takes two input and inserts a record
I want to create a procedure in oracle that takes a query as a input and compares the query result with a expected output, that too need to be passed as a variable.If that matches it inserts a record ...
0
votes
1answer
32 views
Oracle ODB.NET, Visual Studio 2012 Error
I created an Oracle DB. But when i tried to connect it with my Visual Studio 2012, it gave me the same errors all the time. What can i do about that situation. I looked up all the net.
Thanks for ...
-5
votes
2answers
43 views
How can I delete a particular row from the table in a SQLquery
How can I delete a particular row from the table in a SQLquery. I used primary key and Foreign key in this table. I am using Oracle 11G.
-1
votes
0answers
15 views
how to write the trigger for below query
in my production table when should reach the more than 10000 volume i should get the single alert mail after that it should stop while traffic reached 10001.
Create Or Replace
TRIGGER dhana_trigger
...
0
votes
1answer
20 views
SQL query to get duplicate common values
Table1 | Table2
S1 | S3
S2 | S3
S3 | S9
S4 | S2
| S5
I have these two tables with one column. I want to get their intersection with duplicate ...
-1
votes
1answer
9 views
Is there any another method to export data from oracle server to CSV? [closed]
Is there any another method to export data from oracle server to CSV rather than using export and spool methods?
-1
votes
0answers
22 views
SaaS WebAPP: Which setup is the most efficient in terms of cost of operation? [closed]
For the same application, same number of users, same number of traffic
In the long run which setup would work out to be most efficient in terms of cost?
Application written in C#, running many ...
0
votes
0answers
20 views
inconsistent datatypes when comparing two varrays in where clause
I am trying to filter a SQL query by putting a where clause where the a set of varrays returned is compared to see if it equals a single varray from another select statement, but when I run it I get ...
2
votes
2answers
56 views
Does storing date without time use less bytes?
I saw this link and this:
If you specify a date value without a time component, then the default
time is midnight. If you specify a date value without a date, then the
default date is the ...
0
votes
1answer
33 views
String was not recognized as a valid Boolean. - an Error Related to C#. GridView CheckBoxField
Here is the programming environment.
Framework: ASP.NET Framework 4
Language: Visual C# 2010
Database: Oracle Database 11g
Here is the scenario.
I'm creating a GridView from the HR Sample ...
0
votes
1answer
55 views
how to reduce the Procedure time in oracle which is running based on Cursor for loop?
How can I reduce the time of the procedure? Now it is taking 7 minutes to completed, I am using Cursor for loop in my report to loop around the 400 employees (using Cursor for loop) for 30 days ...
0
votes
0answers
26 views
Oracle trigger error, 10g to 11g export
i am trying to export a 10g database to 11g and receieving error(execution completed with warning) at the row that tries to create the trigger.
...
0
votes
0answers
17 views
How to resolve this error in oracle? [closed]
I have tried this
public ViewResult Index()
{
var allocations = new PagedData<ALLOCATION_M>
{
Data = _db.ALLOCATION_M.OrderBy(a => a.ALLO_ID).Take(PageSize)
...
0
votes
1answer
34 views
Oracle - View function body from a package
I have a function inside of a package in Oracle and am wanting to view the implementation or the body of one of the functions.
I can find the package in the all_source view but cannot find the ...
1
vote
1answer
24 views
SQL Retrieving varray elements of a subobject in Oracle 11g Database
I am building a SQL query of a database where I am trying to retrieve an element of a VARRAY that is a subobject of several objects that is an element of another VARRAY. I can successfully query ...
0
votes
1answer
25 views
Why is the error ORA-01008 appearing?
I´ve got a query in spring integration that it´s mapped but when I run my query I get the error: ORA-01008 not all variables were bind.
Here is my spring integration code:
<bean ...
1
vote
0answers
32 views
ASP Retrieving a trigger-populated field value - worked with earlier version of Oracle
The below sample ASP classic code that I have modified so it can be run via cscript or wscript, communicating with Oracle 8i and using Oracle ODBC Driver 8.01.07.00 running on Windows 2000, returns a ...
0
votes
1answer
44 views
SQL Retrieving an object from VARRAY in Oracle 11g Database
I have a schema RTRD_W built in an Oracle 11g database that contains a table rtrd_pri that has a column NOMNL which is has a type defined as VARRAY(10) OF KPS_ADM.NUMBER_T (an object defined as a ...




