0
votes
3answers
44 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
2answers
40 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
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
31 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
47 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
90 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
46 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 ...
0
votes
0answers
31 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
48 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 ...
0
votes
1answer
60 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 ...
2
votes
1answer
66 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 ...
0
votes
1answer
54 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
153 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
70 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
84 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, ...
-1
votes
1answer
40 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
299 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
31 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
71 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
126 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
46 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
3k 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
0answers
41 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
209 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
201 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 ...
1
vote
1answer
67 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
509 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
212 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
515 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 ...
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
757 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
157 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 ...
0
votes
1answer
188 views

Questions on SQL* Loader commit range and display

As per my observation, when we load the data to Oracle tables using SQL* Loader, 64 records are committed at once, by default. Could you please let me know if we can change this default limit of ...
2
votes
2answers
283 views

Monitor index usage

Is there a way to find if a a particular Oracle index was ever used by Oracle when executing a query? We have a function based index, which I suspect is not getting used by Oracle and hence some ...
1
vote
1answer
1k views

Oracle - PLS-00103: Encountered the symbol “END” when try to create JOB

i have a problem here, i already have a Stored Procedure called "SP_DEL_TOKEN" and i wanna make a job to run the Stored procedure automatically everyday.. this is my script to make the job VAR jobno ...
0
votes
1answer
162 views

Procedure and function. Return one big string

I writing this procedure and I have question how can I overwrite old value on new Value and return the new line with new big one string with new mails. Procedure split one big email which have got ...
1
vote
1answer
137 views

Time taken for deleting and truncating records in oracle [closed]

How much time will it take to delete and truncate 43GB of data in oracle
0
votes
2answers
1k views

if else in where clause on Oracle

I need a query but I have a criteria depends on situation. As an example : Lets have a table named table1 that has column named column1 and table2 that has column named ...
1
vote
0answers
23 views

Fully Automated Storage Tiering Oracle 9i [closed]

I have a question regarding Oracle 9i storage organization of files. Do you think redo files should be on fastest disks or not? What about fully automated storage tiering for Virtual Pools? Regards, ...
0
votes
3answers
66 views

Oracle SQL: Joining another table with one missing tuple

I have the following two tables, one stores order information, one stores key|value information. There is no CD = D for key COLOR_CD. I would like to join both tables to get all orders irregardless ...
0
votes
1answer
87 views

Oracle Architecture [closed]

Would anyone please help me to let me know about oracle database architecture with details ? I am beginner of oracle world. Want to be a class PL/SQL coder. So i can't realize from where I have to ...
2
votes
1answer
133 views

What is wrong with this merge statement?

I am relatively new to oracle and have written the merge statment below which produces an "ora-00904 error vwe_cpr_info.rin_per_id invalid identifier" message when I run it. I have checked and the ...
1
vote
1answer
39 views

DB strange behaviour

I encountered the following confusing problem: A DB table was updated through CSV file and some KSH script: #!/bin/ksh moduleDir=$ACS_INSTALL/FMC_TER_AM_028/Database ...
2
votes
2answers
351 views

SQL query performance with the joins on multiple tables

When we join more than 2-3 tables in a query, and if we have a common column in all the tables, will there be any difference in the performace when we specify the value to the common columns in all ...

1 2 3 4 5 6