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 [tag:oracle10g] are assumed to be specific to this version or features introduced in this version.
-2
votes
1answer
20 views
How to remove rows related by name in Oracle
I have the following records in a database table
ID NAME REF
-----------------------
1 ar.chik 33
4 ar.chik.rt 33
5 dy.i.op 35
9 dy.i
Which statement can remove ...
0
votes
0answers
25 views
'imp' is not recognized as an internal or external command, operable program or batch file - Oracle
when trying to import the database dump file "schema.dmp" into the "rdata" user created, i'm getting the following error. Kindly assist. I'm trying this from my client machine (oracle 11g) whereas my ...
0
votes
1answer
27 views
Need explanation of following query for deleting duplicate records
Can anyone explain how lead works here?
DELETE table_name
WHERE rowid IN
( SELECT LEAD(rowid) OVER
(PARTITION BY key_values ORDER BY NULL)
FROM table_name );
Also ...
1
vote
3answers
28 views
Oracle query runs very slow when used sub-query. Can this be rectified?
I have the following query to be executed for my project:
SELECT fcr.request_id,
DECODE
(fcpt.user_concurrent_program_name,
'Report Set', ...
-1
votes
2answers
42 views
Update a column with comma separated string
I want to update a single column within my table with multiple values.
Update Table_cust
Set Cust_Value=('1','2','3')
where cust_id in ('ABC','XYZ')
When I run this I get an error saying right ...
2
votes
1answer
29 views
why does Oracle take another execution path on a view
We are using a view on a oracle 10g database to provide data to a .NET application. The nice part of this is that we need a number(12) in the view so the .NET apllication sees this as an integer. So ...
0
votes
1answer
19 views
How to share DB link with another schema?
I have access to two schema. Only one of them has previleges to create a DB link. I want the other schema also to use this DB link. Also I do not have intentions of creating a public DB link. Is this ...
-1
votes
1answer
28 views
How to create a function in oracle in which i don't know the count of input parameters
I want to create a function which calculates non-zero avg of columns (in a row). But i don't know how to have columns passed as parameter to that function since i don't know the count of parameters, ...
0
votes
0answers
6 views
Oracle JDBC Connection Not Closing After Upgrade to JDK7
In my application I need to connect to an Oracle 10 database and run a simple query. Because, that's all I need to do, instead of using JPA entities etc. I have a class that creates a JDBC connection ...
-2
votes
0answers
10 views
How to connect to Oracle 10g which is in server system in LAN using ODBC from client system [closed]
I want to connect to Oracle 10g which is present in server system using ODBC connection from client system.
Please provide me steps.
0
votes
1answer
57 views
Replace string values with LINQ
I have the following string containing column names:
string colsToSelect;
This string contains column names (e.g: col1+col2+col3+col4+col5 or col1+col3) and in those columns there are numerical ...
0
votes
1answer
24 views
How to find host string?
I have just installed Oracle - DevSuitehome2, Oracle Database 10g Express Edition and Oracle Developer Suit - DevSuiteHome2.
I am new to this Oracle forms, Oracle Reports, etc. During installation, ...
0
votes
3answers
18 views
Update multiple rows on second table based on first table data
I have 2 tables
TBL_HEADER
----------
HEADER_ID
COST_CENTER
TBL_RESULTS
-----------
WEEK_NO
COST_CENTER
HEADER_ID_FK
I have a requirement to copy all of the COST_CENTER_CODES from TBL_HEADER ...
0
votes
0answers
6 views
Unable to connect to oracle database using os authentication?
I am trying to connect to oracle database using os authentication through jdbc.
I have oracle 10g installed on solaris sparc 32 bit.
Following is the code for jdbc connection :-
String url = ...
0
votes
5answers
38 views
How to update a column dynamically with the current value of another column?
I'm looking to write an update statement something like below:
update table set
comments = NVL (null, acknowledgement_status),
acknowledgement_status = 'Acknowledge',
alert_updated_time = sysdate,
...
0
votes
0answers
12 views
Error while connecting oracle10g via java code using ojdbc14 jar
Error while connecting oracle10g via java code using ojdbc14 jar. Iam getting the following error
org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized ...
0
votes
1answer
17 views
Mach-o to Ubuntu Executable for Oracle 10g ProC
I've got a series of Unix Executable Files that I need to convert into a Ubuntu Executable; when running file <filename> I'm told that it is a Mach-O 64-bit executable. I am running this on a ...
2
votes
1answer
48 views
replace double quotes within double quoted strings
We have some GUI issues that converted all our xml entities to their character format and stored in our Oracle DB.
The biggest problem is with " being converted to " within quoted xml ...
0
votes
0answers
8 views
php's iconv() not displaying proper strings anymore
I have been using iconv to convert data from my company's database (windows-1250) to UTF8. It all worked fine until recently.
I'm not really sure what happened, as I've noticed the change only ...
0
votes
3answers
34 views
Check Values in sys_refcursor
I have the following code in a function
CREATE OR REPLACE FUNCTION my_func (
v_dt events.raised_date%TYPE
)
RETURN SYS_REFCURSOR
IS
p_events ...
0
votes
1answer
27 views
Insert sequential numbers into Oracle PL/SQL database
I'm trying to insert a sequence of numbers into a DB. This is my code but its not working:
DECLARE
j number(10) ;
BEGIN
FOR j IN 1001020930..1001021930
LOOP
INSERT INTO ...
0
votes
0answers
15 views
C#: How to execute this Oracle 10g Procedure?
Here is my procedure:
PROCEDURE JOBGEN (nCustomerorderID CUSTOMERORDER.CustomerorderID%TYPE,
pErrCode OUT INT,
pErrMsg OUT VARCHAR2)
Here is my C# code:
...
0
votes
1answer
78 views
Missing right parenthesis in function [closed]
I am new to this forum. i got an error
ERROR - ORA-00907: missing right parenthesis
when i try to run my query, Please do help me out in solving this problem,Please do find the query below ...
-1
votes
4answers
54 views
How to do Oracle date ranking?
I have a table about members subscriptions which has four main columns :
1-member_id
2-subscription_no
3-subscription_start_date
4-subscription_end_Date
And every member(has an unique member ...
0
votes
2answers
41 views
Procedure with VARRAY created with compilation errors
I am trying to create a procedure which will accept a VARRAY as an argument and will delete some records from the table. Below are the steps I followed:
Step1
Created the VARRAY inside a package:
...
-4
votes
2answers
32 views
What would be the query for this
I have an employee table. I want to find the THIRD LETTER of the employee name having last letter as 'H'. What would be the query? Please help me out. By the way, I am using oracle 10g.
1
vote
2answers
30 views
RECORD TYPE too many values error in Oracle 10g
Below is the structure of my emp table:
Name Null? Type
------------------ -------- ------------
EMP_ID NOT NULL NUMBER
EMP_NAME VARCHAR2(20)
DEPT_ID ...
0
votes
2answers
48 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;
...
0
votes
1answer
20 views
Cannot connect to oracle server from c#
I have oracle 10g Express Edition installed and I'm trying to connect to it from C#.
I've created a ODBC Data Source called MyOracle from ODBC Data Source Administrator.
I'm using Windows XP and ...
0
votes
1answer
43 views
Recursive function to select a hierarchy for a table without using connect by. PL SQL
I need to select all the tables that have references to my table in a recursive manner.
So, lets say I need to perform this task for the book_author table.
A query like this one:
select distinct ...
2
votes
1answer
38 views
Using Groovy to run Oracle SQL with a multi-pass query
any idea on how to choose the correct table when writing to file on a multi-pass sql query. i have had success when doing it with a single pass query. have any of you had similar experience.
1
vote
1answer
26 views
Convert sys timestamp to UTC
I have a requirement to convert my systimestamp to UTC time. I found below sql through google.
Will it work for every possible scenario? For example my oracle server is following EST time.
Will this ...
0
votes
1answer
52 views
referential actions with trigger
I have this task to emulate a referential action with a trigger. The task itself is: Give an example of how to use a trigger to emulate a referential action.
I know hot to use triggers and ...
1
vote
2answers
19 views
Update Table A which has unique records is referenced to table B which do not have unique records on join
As the title suggests, I am trying to update a hierarchy tableA for lower level .one column a1 which is from tableA from a column b1 in another tableB which has assignments of the lower level.
The ...
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
1answer
47 views
Trying to tie the information from three different tables into one with a join query
So I have three queries I'm trying to join all on the department name field, but I don't know how to do a join on them. Each of my queries below give me some or part of the info I'm looking, but I ...
0
votes
1answer
26 views
Trying to distill my sql query down so I get one table result
So I'm trying to do a query on 3 different tables. One is a department table, one is a branch table, and another is the employee table. I have 4 different branches, and 3 different departments and ...
0
votes
0answers
15 views
Working with EF for Oracle database. “Schema specified is not valid”
The field in Oracle database is of NUMBER(5), and when I generate EF models from the oracle database, it converts the field into "Int16".
There are some of the rows for that field having values such ...
0
votes
0answers
29 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.
...
1
vote
2answers
50 views
Get alias names form stored procedure in Oracle
Is there any way to get only the alias name that is used in a select statement of an stored procedure? I want to create entities using that select statement.
Example:
procedure Getnames(namerecords ...
0
votes
1answer
18 views
Connect to Oracle with PHP using oci8 module and a dynamic connection string
I would like to connect to an Oracle DB from PHP using the oci8 module (oci_connect). I know how to do this, but the problem is I would like to do it dynamically based on a connection string of type
...
1
vote
1answer
32 views
Find programs whose schedule is lost/skipped/missed
I have around 350 concurrent programs which run with different schedules in Oracle varying from once in a week to once every minute. In the 350 programs, few programs have more than one schedule with ...
0
votes
2answers
30 views
How to catch error in cursor declaration?
I have a need to write PL SQL that fetches data from another database over a DB link and perform some actions on it.
DECLARE
CURSOR cur_progs
IS
SELECT *
FROM ...
-1
votes
1answer
31 views
ORA-00984: column not allowed here [duplicate]
I am doing a simple Oracle INSERT and I keep getting this error:
[Err] ORA-00984: column not allowed here
INSERT INTO MY.LOGFILE
(id,severity,category,logdate,appendername,message,extrainfo)
VALUES
(
...
1
vote
1answer
45 views
Strange behaviour with € (euro character) in my JSP webpage
I'm developing a spring web application with Apache tomcat 6, Java, JSP and Oracle.
In the website you can upload some files. These files could have special characters in their name (as á, Ó, € (euro ...
0
votes
0answers
16 views
ERROR: ORA-12154: TNS:could not resolve the connect identifier specified
Trying to connect database using command prompt: sqlplus abnuser/abnuser123@abntest got below error.
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified.
How resolve this ...
0
votes
0answers
12 views
How to manage concurrency while updating Oracle View through EF in an MVC project?
My MVC 4 application is using Entity Framework 5 as its ORM.
And an Oracle 10 database is used as its back-end.
MVC Views are displaying data from Oracle DB Views, and I have no control over database ...
-1
votes
0answers
16 views
connect php to oracle 10g on xubuntu [closed]
I can't connect to oracle database 10g with php (I'm using xampp).
I used this guide to set it all up, and everything seemed to be OK but when I tried to connect I got this error:
oci_connect(): ...
1
vote
1answer
59 views
Oracle caches CLOB to Temporary Table
I have two custom types in my Oracle DB
TYPE SETTING IS OBJECT (
SETT_NAME VARCHAR2(32767),
SETT_VALUE CLOB,
);
TYPE SETTINGS_SET IS TABLE OF SETTING;
And I have simple function that ...
1
vote
1answer
32 views
Reset global database username and password
I have a global database name - ABN, Username - ABNTEST and password - abntest123.
This password expired and all system default password have also expired. Some username and passwords for the system ...



