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).
0
votes
0answers
8 views
How to create REST full web service for mobile app on Domino server to access Oracle DB
Now, I'm going to create a system including : Mobile app on mobile devices, RESTful web service on Domino server, Oracle DB on other server.
I understand that, I can
- use the extension ...
0
votes
1answer
11 views
How can I call a function inside a procedure in plsql
I want to call a function inside a procedure and get it's value so I can use within the procedure but I have no idea how to do that ??
Any ideas ??
My function is the following one , this function ...
0
votes
0answers
9 views
by ref argument type mismatch VB 6.0
I have a trouble debugging this program wherein byref argument type mismatch always appear in this module. from the part Initialize, S2_GetTaskIDs, s2_GetAllTasks are fine but when it moves to s2_Sort ...
0
votes
1answer
7 views
column name is not upper case when using ORMLite with Oracle
I'm using the latest ORMLite to query against Oracle database. I create all DAOs in Spring and have @DatabaseField(id = true) annotation for my key field. In Spring configuration my JDBC url is like ...
0
votes
2answers
11 views
Is there a better way to merge data from separate tables
I do reporting out of our General Ledger which has separate tables for actual and budget amounts. I merge data by unioning three queries together in a subquery and summing the results of the ...
0
votes
2answers
14 views
How can I update this function in plsql?
this function check if all employees have their salary between the correct range of maximum and minimum salary. I want to update it so it would return the employees' ids whose salary is out of range ...
1
vote
1answer
15 views
Why non-greedy quantifier sometimes doesn't work in Oracle regex?
IMO, this query should return A=1,B=2,
SELECT regexp_substr('A=1,B=2,C=3,', '.*B=.*?,') as A_and_B FROM dual
But it returns whole string A=1,B=2,C=3, instead. Why?
fiddle
0
votes
1answer
20 views
how to fix this function in pl-sql
I wrote a function in pl-sql to check if all employees have their salary between the correct range of maximum and minimum salary. But it's giving me error like this :
Error(9,3): PL/SQL: Statement ...
0
votes
1answer
16 views
How can I test a function working or not in pl-sql?
I learned the basics of writing a function and procedure in pl-sql but I don't know how to test if it's working , and if not How can I debug it .
Any Ideas please .
thanks all.
Here is the function ...
0
votes
0answers
23 views
Oracle 11g performance
I have a performance issue on the following oracle query:
select tab_a.col1,tab_a.col2,tab_b.col1 etc etc from tab_a,tab_b
where
tab_a.AS_OF = TO_DATE ('10-MAY-2013','DD-MON-YYYY')
and ...
0
votes
2answers
21 views
Oracle using REGEXP_SUBSTR to return values within brackets
We store some application parameters in our database and I am looking for a method via SQL to extract/parse the parameters out. An example of this data would be the following:
...
1
vote
4answers
39 views
Do I need a id column in audit table?
Many table designs I see around has a id column as a primary key. For example log_id in some Logging table, event_id in some event table and so and so. This column would have no dependency on any ...
0
votes
0answers
23 views
How do I call a stored procedure with an out parameter in a select statement [closed]
I need to make an Oracle select query. In the select query I need to manipulate one column by passing it into a stored procedure which returns an out parameter that I need. I cannot figure out how to ...
0
votes
2answers
27 views
Making sure that the query returns null values too in the output
I am just curious on how to make sure that the query returns null values too along with other values.
UPDATE:
The following query is supposed to output a table with a location id, visit date visit ...
0
votes
1answer
36 views
Oracle Function In Package Fails as Part of Select
When I call my function from my package like the following, it works. It is a bit complex but there are a lot of conditional variable.
resultval := TG_PKG_ENTITY_TOTAL.user_entity_total('0012345678',
...
0
votes
0answers
13 views
Oracle VM Virtual Box and Clipboard functionality with host
I am trying to debug/test my application on a Windows 8 64-bit virtual machine running on Oracle VM VirtualBox 4.2.12 (current release as of this post) running on a Windows 7 64-bit host.
Everything ...
0
votes
2answers
33 views
Oracle - Buffer two subquerys before joining they
I am trying to do something like this:
SELECT * FROM
(SUBQUERY A) A
JOIN (SUBQUERY B) B
ON A.FIELD = B.FIELD
Individually, A runs really fast (about 5 seconds) and B runs in about 15 -20 ...
-3
votes
0answers
34 views
PL/SQL statement [closed]
Write an anonymous PL/SQL block to raise the salaries with 5%. Take care of the following:
The employees with the lowest salary receives the salary raise of 5% first. Next the employee with the ...
0
votes
3answers
39 views
11 Left Outer Join in a query and Oracle error
I have to create a sql query for a new report. The problem is that I have to do 11 Left Outer Join !!! Oh yes this is the bad part. When I execute the query Oracle generate this error :
ORA-01652: ...
0
votes
1answer
11 views
Oracle flashback: Is there a way to get the REDO SQL queries?
Within the oracle database 11g the table FLASHBACK_TRANSACTION_QUERY provides the UNDO_SQL column which SQL reverses the modification done by a specific previously executed query.
However, I need the ...
0
votes
3answers
26 views
Select statement inside NVL
I'm trying to run the following query:
select a.*,
case when NVL (SELECT max(b.field1)
FROM b
where b.field2 = a.tbl_a_PK , 'TRUE') = 'TRUE'
then 'has no data in b'
...
1
vote
2answers
36 views
Oracle ORDERED hint cost vs speed
So, a few weeks ago, I asked about Oracle execution plan cost vs speed in relation to the FIRST_ROWS(n) hint. I've run into a similar issue, but this time around the ORDERED hint. When I use the ...
0
votes
1answer
8 views
Does Ab Initio support Oracle Merge statement?
Am attempting to design an Ab Initio load process without any Ab Initio training or documentation. Yeah I know.
A design decision is: for the incoming data files there will be inserts and updates.
...
0
votes
0answers
12 views
ORACLE OTL : using RETURNING INTO to return int
I need to return the value of a sequence from a INSERT
Trying something like
INSERT () () RETURNING uid INTO :uid<int>,
but what I get back in the code is not correct.
I see all examples ...
-5
votes
0answers
20 views
pl \ sql loop with two non-identical tables [closed]
My problem is that I 'two non-identical tables for which I want to display their line one after one, that's why I want to do a for loop with PL \ SQL on both table and display their line.
one of you ...
0
votes
1answer
15 views
Using Oracle PL/SQL table of record with multiple %rowtype fields
how can i populate a table of records wich has more than one field of %rowtype using bulk collect?
my code:
drop table child_table;
drop table parent_table;
/
create table ...
0
votes
0answers
17 views
Oracle: Roles, Tables, Privileges as Matrix
In Oracle there is a view called role_tab_privs
which details table privileges granted to roles.
It has rows like this (not all columns displayed):
Table Role Privilege
table1 ...
0
votes
1answer
39 views
How to only select if 2 record are after another
I don't even don't how to ask this question but I'll show in example what I am trying to achieve.
ID NAME ACTIVITY TIMESTAMP
1 .. book timestamp
1 .. eat timestamp
...
1
vote
1answer
21 views
Hibernate named query re-parsed
We are using hibernate named query as follows :
named_query : Select this_ from TableA this_ where this_.id in( select max(id) from TableA where COLA is null group by COLB ) and rownum=1
...
0
votes
0answers
40 views
Encoding german characters
I need to import with load data some perl - generated files to oracle database.
Perl-script get a webpage and write csv file.
Here a simplified script:
use File::Slurp;
my $c= ( $user ...
0
votes
0answers
9 views
Oracle Eclipse BPEL Designer
Presently I am working on Oracle BPEL with Jdeveloper.Infact,I would like to work with Oracle Eclipse BPEL designer.So, where can I download Oracle eclipse BPEL designer and how to configure it with ...
-2
votes
2answers
23 views
Finding the rows that are not common in two tables in oracle
I have two tables with following values.
tab1 tab2
---- ----
A A
B E
C F
D G
Output should be as ...
-1
votes
1answer
25 views
Oracle SQL Alter Table
I have two tables as below
CREATE TABLE "CLIENT"
("ID" NUMBER(*,0) NOT NULL ENABLE,
"FIRSTNAME" VARCHAR2(255 CHAR),
"LASTNAME" VARCHAR2(255 CHAR),
"TELEPHONE" VARCHAR2(255 CHAR),
CONSTRAINT ...
0
votes
2answers
26 views
Here a pl-sql function with some defintios for new datatypes , can I get an explination for it
I can't really understand what's happening in this code , I want to understand it , I tried but it seems like I'm memorizing it instead of understand it .
create or replace type t_num_table as table ...
1
vote
0answers
11 views
Entity Data Model with edmmapping, without oracleclient
I'm using an EDM (entity framework) for oracle without an oracle client on the client.
This works fine with the following:
1) Extra configuration in the app.config
<system.data>
...
0
votes
0answers
49 views
Execute empty nested sql script
I have a SQL*Plus script that contains several nested scipts, following this schema:
@Script1;
@Script2;
@Script3;
My problem is some of the nested script could be empty,they exist but are blank ...
0
votes
0answers
24 views
Get image from oracle
I have successfully saved the image into oracle table.
I want to retrieve it, and display in the image control of webform(asp.net,c#).
I have he following code
try
{
OdbcConnection ...
0
votes
2answers
37 views
How to find regions where total of their sale exceeded 60%
I have a table interest_summary table with two columns:
int_rate number,
total_balance number
example
10.25 50
10.50 100
10.75 240
11.00 20
My query should return in 2 columns or a string ...
1
vote
2answers
30 views
Oracle Error PLS-00103: Encountered the symbol “(”
I wrote the following Package.
When I compile it I got the following error:
PLS-00103: Encountered the symbol "("
Line 42 Column 66
Which is "PROCEDURE p_fail "
I am helpless. I searched the ...
0
votes
1answer
38 views
Populating values to null column based on value of some another column from another row
My requirement is pick HIST_START value where status="CANCELLED" AND table="OUTCOME_STATUS".
Put this value in HIST_END column where table=("DOC_STATUS" OR "ENTRY_STATUS") AND HIST_END is NULL
Eg. ...
0
votes
1answer
17 views
Creating Enumerator Field in Oracle using values from another table
Greetings Fellow SOFs,
My application has a lot of tables. And each table has 0/n number of Enumerators. Everything was going nice and bubbly, then all of a sudden my client now wants to move his ...
0
votes
1answer
19 views
Create dynamic LOV in oracle apex
Im creating an application. I need to use a multi select list for tabular form.
Below is a screen shot of the tabular form.
In this i created a multi select list, using
...
0
votes
3answers
59 views
How to remove and replace “)” space?
i have problem how to remove space between ")","(" and "/" in the sql. i just want to remove space NOT include the text. How to do that?.
For example:-
Sek. 175 (1) (a)/(b) atau Sek. 187B (1) (a)/(b)
...
0
votes
0answers
18 views
Oracle CHAR_OCTET_LENGTH values
In my oracle database schema, there is table which used to store blob data type. However when I am viewing table meta data information CHAR_OCTET_LENGTH value set to 4000. is this correct values or is ...
-1
votes
1answer
38 views
8 second discrepancy between Oracle SYSTIMESTAMP and .NET DateTime.Now [closed]
For some reason that I don't know, SELECT SYSTIMESTAMP FROM DUAL and System timestamp (including .Net's DateTime.Now) has a slight difference. This causes some bug in my code because part of the ...
-3
votes
0answers
22 views
How to setup a oracle server or any open source server on your PC? [closed]
How to setup a oracle server or any open source server on your PC? (IF ITS POSSIBLE, Coz I am using only a PC, not a server machine with only Windows 7, not a server OS)
Is it possible? I really need ...
0
votes
0answers
18 views
JPA CriteriaBuilder: Predicate with a Serializable field throws an exception
I have an entity with a persistent field declared as Serializable.
I would like to build a query with the CriteriaBuilder, that filters the results by the Serializable field.
The database is Oracle, ...
1
vote
3answers
66 views
SQL Join in Oracle
I have two tables :TAB1 and TAB2.
TAB1 fields : itemid(p) and description
TAB2 fields : itemid(F) and parentitems.
TAB2 is subitems of TAB1 so I want to retrieve the all items from TAB1 and parent ...
-5
votes
0answers
27 views
Regarding the oracle query [closed]
I have the below table as shown below
CREATE TABLE "Temp"."abcfeed"
("ID" NUMBER(32,0) NOT NULL ENABLE,
"VERSION" NUMBER(20,0) DEFAULT 0 NOT NULL ENABLE,
"CREATEDDATE" TIMESTAMP (6),
...
1
vote
3answers
49 views
Dynamic Update query in procedure
I'm trying to create an Dynamic UPDATE query for a column listed out in all tables in DB. However, the query is failing with the error Code: -942 Message: ORA-00942: table or view does not exist ...