0
votes
2answers
27 views

Join Supplier name and Supplier number using two queries

I have a two queries. select a.supplier_nbr from co_global_duns_xref_t a, co_global_duns_t b where a.global_duns_nbr=b.global_duns_nbr(+) and select ...
1
vote
1answer
21 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? UPD: Oracle 10.2+ required ...
0
votes
0answers
26 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
35 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 ...
-3
votes
0answers
38 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
1answer
18 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 ...
1
vote
2answers
38 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
41 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
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
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 ...
0
votes
0answers
33 views

difference between 11g and 12c Oracle db [closed]

We are planning to update our database to oracle 12c. Does anyone have any information as what are the exact difference between 11g and 12c. And what all things need to be consider while doing ...
0
votes
0answers
13 views

Oracle 11g XE import

When I upload a *.cvs file into Oracle Express using the data upload tool, the column mapping changes. I have uploaded the same data before, to test things out. I then deleted all the data in the ...
0
votes
3answers
45 views

Why does the wm_concat not work here?

I have this query : (SELECT OBJECT_ID from cr_object_group_entries_vw where object_group_id IN (SELECT ITEM FROM TABLE(CR_FN_SPLIT_STRING('28,56',',')))) that returns : But when I do : ...
0
votes
0answers
11 views

Change Oracle Entity Framework Provider

I have a program which uses Oracle entity framework provider on visual studio 2008 (32 bit). The provider which I used on VS 2008 is a sample provider which I downloaded from the internet ...
0
votes
0answers
22 views

ORA 12505 error for SQL Developer

I have recently ran into a problem when trying to connect to my Database. The error is stating that it cant find the listener. Status : Failure -Test failed: Listener refused the connection with the ...
2
votes
2answers
94 views

how to perform this step in sql query?

I am currently doing this excel via VBA, but if I can get some help to do it with in query would be really save me lots of time. This is 1 of like 5 things I need to do for this report I am working ...
0
votes
2answers
26 views

Oracle and Powershell return only the first line

I have a problem with powershell and oracle. This is my code Add-Type -Path "C:\app\aasif\product\11.2.0\client_2\odp.net\managed\common\Oracle.ManagedDataAccess.dll" $con = New-Object ...
0
votes
0answers
84 views

Update table values using 2 tables

I have 2 tables as follows: COMMENT TEXT RECORD_ID_FK SORT_ORDER COMMENT_TEXT ----------------------------------------- 101 1 TEST TEXT 101 1 SOME ...
0
votes
1answer
24 views

disabling constraints will affect indexes

I have to migrate records from one db to another db. It involves nearly 200+ tables. For migrating records I use exp/imp feature of oracle. To avoid constraint violation errors I disable all ...
-8
votes
1answer
48 views

C# Connecting to Oracle data base

How to connect to a Oracle Database in C# ? I need a code with comments explaining it. I don't want to add the base throw DataSet in Microsoft visual studio... I need to make calls to server with ...
1
vote
0answers
15 views

Saving PDF using DDE Command

i am trying to open an htm file in adobe and save it as pdf file using dde commands i manged to save a word file but not pdf my code is like this filename varchar2(200) := 'c:\temp\text.htm'; ...
0
votes
1answer
32 views

Process entier DB to fetch data

Look at the query below. DB: ORACLE select table_name, column_name, data_type from all_tab_cols where data_type = 'DATE' and OWNER = 'OWNER_NAME' O/P: TABLE_NAME COLUMN_NAME DATA_TYPE T1 ...
0
votes
2answers
35 views

a query to find duplicates but exclude set

I have a table with following columns Emp_id Work_date element I want a query (modified version of below query) which will return a single row if there are more than 1 row for given work_date and ...
0
votes
2answers
50 views

use of ROLLBACK command in Oracle

I created table SQL>CREATE TABLE Student ( StudID NUMBER(6), StudName VARCHAR2(25), JoinDate DATE ); Table created. SQL>INSERT INTO Student VALUES (123,'JOHN',SYSDATE); ...
1
vote
0answers
15 views

Foo.class.getPackage().getImplementationVersion() returns null when called from Oracle

I'm running into a problem trying to get some version information from a jar when it is called from my oracle 11g stored procedure. I have a helper method in a class contained in the jar: public ...
-2
votes
1answer
50 views

Oracle query - Stored proc

I am running a stored proc : CREATE OR REPLACE MYSP (runDate Date) BEGIN EXECUTE IMMEDIATE 'CREATE TABLE MYTABLE AS (SELECT * FROM DATATABLE WHERE DATADATE = :1' USING runDate); END MYSP; I get ...
0
votes
1answer
47 views

BULK COLLECT into a table of objects

When attempting to use a BULK COLLECT statement I got error ORA-00947: not enough values. An example script: CREATE OR REPLACE TYPE company_t AS OBJECT ( Company VARCHAR2(30), ...
0
votes
1answer
37 views

How to load all images from selected folder

I created database which stores OrdImage types. I created some procedures that insert images to that fields. But I have exactly task to 'load all images from selected folder(to database)'. My question ...
0
votes
1answer
42 views

Alternatife Way to Changing Username In ORACLE DB

Is there a way to change username. I want to make test on a database which is already using by others. So I came up with the idea that i create a new DB and creates all the tables functions ...
0
votes
1answer
28 views

Indexed query along with non index conditions

The following is a query that I'm executing. select col1, col2 from table1 where col1 in (select table2.col1 from table2) and col2 = 'ABC' ; In table1, an index is available on col2, no index is ...
0
votes
0answers
9 views

odi: slowly changing dimension

I'm quite new to odi tool I'm trying to do SCD on my table . my source table contain id, name and address the target table contain id, name, address and a strt_date i choose olap type as scd on my ...
0
votes
0answers
40 views

Code erases previous month record while updating current month record

Using 11gR2, windows 7 client machine. I need to update the table missing_volume (below), where I need to calculate the estimated_missing column. The calculation of estimated_missing column for ...
1
vote
1answer
35 views

Conditionally return column values from a joined table - Oracle

Hi I have a table DataTable as : Name Age Address ---------------- Tom 21 XYZ John 23 X123 Sam 32 Y123 there is another table MappingTable : Name Address ------------- John A12345 ...
1
vote
2answers
56 views

ORA-00907 when quering from my Java application but works fine in SQL Developer

My query that I put into a prepared statement is: select * from ( select seq, audit_ts, message_type from log2 where 1 = 1 and message_type in ('SOURCE', 'DEST') ...
-1
votes
0answers
48 views

Unknown source of performance issue when setting, named parameter = named parameter (crazy, I know, read the details)

I have a java class that is part of a custom framework for making PL/SQL prepared statement querys. The usage of this class within said framework requires that all the prepared SQL statements called ...
0
votes
0answers
29 views

ORA-29540: class PBKDF2HASH does not exist

I tried to invoke a Java class using the function. I get the error ORA-29540: class PBKDF2HASH does not exist. I'm using TOAD. Java Class: CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED ...
0
votes
1answer
41 views

Oracle SQL Merge Statement Issue

I have a sql that looks more or less something like the below one - declare some_Date date; begin select sysdate into some_Date from dual ; merge into (SELECT cola, colb, colc FROM TableA ...
1
vote
2answers
34 views

Why the Oracle procedure not compiling?

CREATE OR REPLACE PROCEDURE ResetVersionNumberValue IS sql_stmt VARCHAR2(2000); BEGIN FOR sql_stmt IN (select 'update '|| table_name || ' set version = 0' ...
1
vote
2answers
62 views

Adding Leading Zeros to a number in Oracle?

I need to add leading zeros to a number if it is less than two digits and combine two such numbers into single one without space between them. My Attempt: select ( extract (year from t.Dt) ...
0
votes
0answers
36 views

MySQL vs Oracle Certification [closed]

This isn't so much of a coding question, as a conceptual question. I am looking into getting a db certification and was wondering whether you would recommend a MySQL certification or an Oracle 1Z0-051 ...
1
vote
0answers
36 views

Oracle - two databases or two schemas? [migrated]

We are currently having one Oracle instance on RAC with one database created. A new requirement came to our database team to temporarily (1-2 months) host a new application that is independent of ...
1
vote
1answer
72 views

PL/SQL Using aliases and functions in the subquery of an insert statement

I'm pretty new to PL/SQL, but I was wondering if there was a way to achieve the following : INSERT INTO aTable ( SELECT FN_TO_VALUE(b.field1, b.field2, b.field3) as alias1, ...
0
votes
4answers
80 views

Oracle: dynamically select script

How do I run a script in SQLPlus whose pathname is passed in a string. Something like the following (fails): SET SERVEROUTPUT ON; DECLARE path VARCHAR2(128); BEGIN path := ...
3
votes
3answers
62 views

oracle sql to get all possible combinations in a table

Hello guys I have a small predicatement that has me a bit stumped. I have a table like the following.(This is a sample of my real table. I use this to explain since the original table has sensitive ...
1
vote
1answer
29 views

Select oracle schema which only contains specific table

I'm looking for a way to select all schema on my oracle server, which only contain the table "mytable" How can i do this ? I already have a query who list all schema in my database. SELECT username ...
0
votes
2answers
36 views

how to update a LOB with PHP in oracle? (OCI_INVALID_HANDLE)

i'm trying to do an update a (C)LOB in the same way i do an insert. (insert is already working). $queryHandle = oci_parse($dbHandle, "update MYTABLE set "MYCLOB" = EMPTY_CLOB() , "OTHERCOL" = :col0 ...
2
votes
1answer
27 views

Appending trailing zeros to a oracle number in Oracle

I need to format the NUMBER data type in Oracle as follows: Problem Statement: -> Append trailing zeros to the ATM_CARD-NUMBER whose length is 14 My Attempt: SELECT ...
0
votes
0answers
20 views

The proposed key is not within the partition defined by owning publisher:Apache JUDDI and OSB

I am trying to publish Oracle Service Bus proxy services to UDDI registry (JUDDI). And I am getting $subject when try to publish a proxy service through OSB. Have anyone came across with such before? ...
1
vote
1answer
20 views

Oracle 11g Reference Partitioning and Indexes

I have a parent table containing the following columns: - PARENT_ID: UUID - EVENT_DATE: TIMESTAMP - DATA_COLUMN1: VARCHAR2(255) - DATA_COLUMN2: VARCHAR2(255) The table is range partitioned ...
0
votes
0answers
35 views

PLS-907 cannot load library unit

Following is my oracle version Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production I was trying to alter a table to add a column but since it took long time, i cancelled it. ...

1 2 3 4 5 39