Oracle is a relational database management system (RDBMS) product. Specific releases of the product are known as Oracle9i, Oracle 10g and Oracle 11g. Generally there are two releases within each major version. Questions tagged "oracle9i" are assumed to be specific to this version or features ...
0
votes
2answers
37 views
Converting integer value from a db column to text in oracle
I have a requirement in db.
1).Table ABC, column: check_amount number number(18,4). This basically contains check amount for eg. 3000.50 to be paid to an employee.
Now a cheque is issued and that ...
0
votes
1answer
20 views
Updating Multiple Columns from another table - Need Oracle format
I have a script that I use in SQL Server but I need to convert it to an Oracle format. Can anyone help?
UPDATE PERSONS P SET
P.JOBTITLE=TE.JOBTITLE,
P.LAST_NAME=TE.LAST_NAME,
...
0
votes
2answers
53 views
SQLPLUS command line with DOS batch file
I want to create a batch file which will open the SQLPLUS [CLI] and will execute some stored sql file and will also store the output to text file.
So I've created this batch file [which does not ...
0
votes
1answer
44 views
How create a procedure from a select query
I have a query that give me access of each user by identified UserID:
My query is :
SELECT A.ACTIONID,A.ACTIONNAME,A.ALLOWWRITE,A.ALLOWREAD
FROM ...
0
votes
3answers
28 views
In oracle SQL, how would you obtain the timestamp representing the start of the week?
I'm using an Oracle 9i database and want to obtain, within a function, the timestamp representing the start of the week, i.e. The most recent monday, at 00:00:00.
I am aware that the timestamp ...
0
votes
3answers
46 views
Fetching Max Date in oracle Query
Hi Can any body please help me out to solve this issues
I am suppose to fetch the latest stud Next Month according to Course ID
Table Name:Course
Stud Id Stud Course Id Stud Curr Month ...
-1
votes
2answers
82 views
error invalid number ORA-01722 in Procedure [closed]
I have a procedure like below, but when I tried to running it using sqlplus its gave me error
BEGIN IB_ARCHIVE_FDS('FDS_LOG', 'TIME_REQUEST', 5, 6); END;
ERROR at line 1: ...
2
votes
4answers
44 views
Need to Sum the Values and then Minus Credit and Debit Note in Oracle
Hi Please help me out i Need to Sum the Values and then Minus Credit and Debit Note in Oracle 9i
ID Acc_TYP Amt
1 CR 100
2 CR 200
3 DB 50
4 DB ...
3
votes
0answers
41 views
unimplemented or unreasonable conversion requested blob storage error [duplicate]
I am trying to insert text,images,audio and video files into an oracle 9i database.The oracle driver used is also supported so no problems with that.It easily uploads files upto 5KB. If my file ...
1
vote
0answers
31 views
Error when creating supertype and subtype objects in apex script file
I have created an object of type person and I want to create a subtype called student typ but I'm getting an error when I try to do this in a script file with the following script:
CREATE TYPE ...
0
votes
0answers
29 views
Procedure Error PLS-00436: implementation restriction: cannot reference fields of BULK In-BIND table of records
I've got a problem here. I want to create a Stored procedure like below, but I encountered error PLS-00436: implementation restriction: cannot reference fields of BULK In-BIND table of records.
...
0
votes
2answers
45 views
Using Oracle 9i comparing 2 years
I have a list of Rainfall data
SELECT * FROM Rainfall
COUNTRY YEAR AMT
-------------- ---- ---
Austria 2000 1.1
Belgium 2000 1.2
France 2000 1.3
Ireland ...
-1
votes
1answer
25 views
How to use distinct in following query
CODE
SELECT T_LEAVEAPPLY.I_EMPID, T_LEAVETYPE_MS.I_LEAVETYPE, T_LEAVEALLOCATION_MS.I_ALLOTTEDDAYS AS OPENINGBALANCE, EXTRACT(DAY
FROM T_LEAVEAPPLY.I_REQDATE) AS Dates, ...
0
votes
1answer
55 views
How to Sum the Values from current date to previous year in oracle
Can any body help me to solve this:
Value Date
1000 01-jan-12
............
1000 01-apr-13
My Aim is to calculate the sum of marks which secured from current month and year APRIL-13 to ...
0
votes
0answers
54 views
Oracle 9i - C# .net windows application
I have Computer A , ex:IP = 10.20.30.40 (that store the Oracle9i Database and Visual studio 2008)
I have another pc B, ex:IP =10.20.30.41 ( ) Both are connected with LAN network.
I wish to execute ...
0
votes
0answers
15 views
Merge two rows to one in Oracle 9i
Want to have the following output for the following Base Data in Oracle 9i using SQL query with group by deptno. Is there any Method?
Base Data:
DEPTNO ENAME
20 SMITH
30 ALLEN
30 ...
2
votes
1answer
64 views
Performing JOIN on more than 1 column oracle query
I have 2 tables, the first one is MASTER_TABLE with fields ID, STATUS_CODE, STATUS_SUBCODE, SUBJECT_CODE, SUBJECT_SUBCODE and the second table is CODE_TABLE which has the unique description for every ...
0
votes
1answer
46 views
how to fix a decode error?
I have follow statement need be correct, when v_variable = 'KP', will go in to error. Any one can help please!
select *
FROM pat_register_org_det prod
where prod.org_code in
...
-2
votes
2answers
63 views
java web security [closed]
Let me explain the problem. So, there is a data base which is pivotal for many app and I need to keep it safe. Also, I do not want to access that data base directly. I think of using materialized ...
0
votes
1answer
50 views
how to match an integer with varchar containing digits separated by commas in oracle
I am facing a strange scenario where I need to match an integer with varchar containing digits separated by commas in oracle
Example:
Table t1:
id integer
key integer
Table t2
id integer,
keys ...
0
votes
5answers
125 views
Is there another command for wm_concat in oracle 9i?
I have a table containing dept id, employee names and date of joining. I want to get a list of all the employees who joined on a given day in a given dept.
wm_concat is not working.
1
vote
0answers
64 views
PLS-00363: expression 'HTP.HTBUF_LEN' cannot be used as an assignment target
I am getting a very strange error when trying to view this procedure via OWT on my browser. I have other schemas connected via wdbsvr.app and all work perfectly. This schema comes from a import we ...
0
votes
3answers
79 views
Multiply a factor by the overlaps between two tables with date ranges
I am using Oracle 9i and have two tables with overlapping intervals:
CREATE TABLE slowdown (startdate DATE, enddate DATE, factor NUMBER);
CREATE TABLE products (prod VARCHAR2(10 BYTE) NOT NULL, ...
0
votes
1answer
37 views
Aggregate similar row
Suppose I've a table like this:
NAME REF1 REF2 DRCT
A (null) Ra D1
A Rb (null) D1
A (null) Rc D2
B Rd (null) D3
B (null) Re D3
I want ...
0
votes
1answer
30 views
Simple way to get a unload of group of tables in a text file in Oracle 9i
I need to get unload of group of tables in oracle 9i.
The unload should be a .txt file or .unl file.
I have googled and found that the script specifying the column names of the table.
As I have huge ...
0
votes
0answers
59 views
How to Handle Oracle Client hang up during sudden loss of connection in the middle of the query
I wrote a very simple C++ application to verify the Oracle Client behavior during the loss of connection in the middle of a query and to I found out that my Client application will hang up. It seems ...
-1
votes
1answer
39 views
I want to get array of rows affected by the $sql.But following code is not working.It gives only first record?
oci_execute($sql);
for($x = 1; $x <= oci_fetch_Array($sql); $x++)
{
$rows[]= oci_fetch_assoc($sql);
}
return $rows;
4
votes
2answers
296 views
Oracle ODP.NET problems calling package procedure with parameters
Problem:
Trying to call a packaged stored procedure, but the call is failing depending on the values of the parameters.
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at line 1
Procedure ...
0
votes
0answers
29 views
Clearing Oracle DB Files
Terminal Environment: Oracle9i Release 9.2.0.6.0 - Production, Windows XP; 40GB Hard; 1GB RAM;
I have been using this terminal solely for my testing purposes. A schedule is performed where dump is ...
1
vote
2answers
70 views
Oracle parameter to a inner query
I'm struggling with an Oracle query. I want to send a value to a inner query but I don't succeed. My query looks as follows:
SELECT * FROM Pro u
LEFT JOIN (SELECT * FROM PROLOG d
WHERE d.Id = ...
-1
votes
1answer
119 views
Invalid month-SQL
for rate in ( select tgt.carrier_code, tgt.tc_code, tgt.exp_date, (TO_date(src.eff_date,'DD/MM/RRRR HH24:MI:SS') - 1/(24*60*60)) eff_date from mira_rate
tgt, mira_rate_dummy src
where ...
1
vote
1answer
28 views
Calling other user In procedure Body of one User
I am using following Query in Oracle 11g Procedures
Open cur_Test FOR
'''Select * from '|| DBUSER ||'.table_name''';
Its raising an error 'Invalid SQL Statement.'
Can we call other user's table ...
0
votes
0answers
45 views
Best way to merge tables for two different aplications
I have two applications say App1 and App2 using almost similar set of tables located in the same schema with same data for the columns.We are working towards removing redundancy by merging the tables ...
2
votes
2answers
2k views
ORA-01017 Invalid Username/Password when connecting to 11g database from 9i client
I'm trying to connect to a schema on an 11g (v11.2.0.1.0) from a PC with a 9i (v9.2.0.1) client. It seems to connect fine to some schemas, but not this one - it comes back with a "ORA-01017 Invalid ...
0
votes
1answer
33 views
not able to use If exists statement in Oracle 9i
I have the below code :
INSERT INTO Table_Delete (name)
SELECT su_name
FROM Student_Data
where class = '12'
MINUS
SELECT name
FROM Students
WHERE roll_num in (select roll_num from RollNumber
...
0
votes
0answers
39 views
difference between methods of registering JDBC drivers
method1:
Class.forName("oracle.jdbc.driver.OracleDriver");
This is the most common approach that use Java's Class.forName( ) method to dynamically load the driver's class file into memory,
which ...
0
votes
1answer
199 views
wrong date insert into the datablock
My problem is related to Date type, I am using below code when I want assign a date to a column.
D_REPORT := to_date(sysdate,'DD/MM/YYYY HH:MI:SS AM');
but sometimes I receive a date like 31/01/0013 ...
0
votes
2answers
193 views
SQL query to obtain customers with more than one ticket
Here is the schema:
tblCustomers{custid,fname,lname,email}
tblTicket{ticketId,custid,numOfPassengers,dateofJourney,totafare,trainId}
The problem query is: display all the customers who have ...
0
votes
0answers
38 views
buffer overflow
I need urgent help in below issue .
I am running one sql file in which I have specified some dbms_output.put_line .
But when I am goint run the file it gives me below error :
DECLARE
*
ERROR at line ...
1
vote
1answer
66 views
Aggregating Data in SQL
When looking at the picture in the link I need the Imploded Units to Average and the Exploded Units to Sum, I will attach my code below the Results shown below. I have been searching for an answer to ...
-1
votes
3answers
487 views
Difference between Oracle versions [closed]
Is a SQL statement that was valid in 9i still valid in 11g?
Are there new features in 11g that were not available in 9i?
Are there behavioral differences between a valid 9i SQL statement and the ...
0
votes
2answers
199 views
Select Statement in oracle procedure
I can't able to create a select statement in oracle procedure. Please help me to create this.
Now I create the insert,update.delete statement in a procedure but i can't create a select statement. ...
0
votes
1answer
56 views
Oracle procedure creation warning message
Am using the below code to create a procedure in oracle.This is compiled with warning message
Warning: compiled but with compilation errors.
I can't able to fix this issue. Please help me to fix ...
0
votes
1answer
73 views
Create trigger for auto incerment id and default unix datetime
Any one help me to create a trigger for auto increment fld_id and Unix datetime. My table field is fld_id(int),fld_date(number),fld_value(varchar2).
My insert query is
insert into table ...
0
votes
0answers
501 views
Oracle ODBC : Driver's SQLAllocHandle on SQL_HANDLE_ENV failed
I have message Oracle ODBC : Driver's SQLAllocHandle on SQL_HANDLE_ENV failed
when try to open oracle connection in excel.
I'm working in virtual machine via citrix.
Could you please give tips why it ...
2
votes
1answer
85 views
ORA-22905 in parameterized query
I have a function, that splits a CSV-list into a table of numbers.:
create or replace function SYC_SplitIds
(IDList in varchar2)
return SYC_IDNRTABLE pipelined ...
where SYC_IDNRTABLE is declared ...
0
votes
1answer
1k views
ora 12560 tns protocol adapter error- while connecting to oracle
I have oracle 9i already installed in my machine. I am trying to connect to the oracle but while connection i am getting "ora 12560 tns protocol adapter error" type of error. i have tried it with the ...
2
votes
1answer
718 views
What is a HASH TABLE when doing HASH JOIN?
In HASH JOIN method of oracle, HASH TABLE will be built on one of the tables and other will be joined depending on the values in the hash table.
Could you please let me know what is Hash table? What ...
0
votes
2answers
84 views
leftouter join in sql
I have two tables initially in the application. They are as
user
------------------------
user_id
column1
column2
..
...
0
votes
2answers
150 views
SQL want to log values before and after update table
I have a problem here.
DB: oracle 9i
I want to save data changes after I execute UPDATE script on my table,
in that log I want to compare old values with new values.
How can i do this.
thanks for ...
