0
votes
0answers
46 views

formatting data that comes multiple lines into one line

i have following problem my data come like following format and i have 2 lookup file that provides me which C is child of which B which B is child of which A and i know that if C comes in col2 ...
1
vote
2answers
111 views

Oracle SQL correlated subquery to fetch exactly one row

In an Oracle SQL correlated subquery, I require to have a condition on the subquery to fetch exactly one row(if there are more rows, it shouldn't fetch any rows). And the below query works just ...
1
vote
3answers
200 views

How to fetch consecutive pairs of records in Oracle

Can somebody give me a clue about a tricky SQL problem. I searched similar problems, the closest approach seemed this, but it is not the solution to my problem: Oracle - grouping between pairs of ...
0
votes
1answer
41 views

How to Model Last Values for Missing Weekend Data

I'm trying to create a query that will carry data forward to null rows. This is a fairly simple query with analytic functions LAG and LEAD The query works when there is no partition by window and ...
-8
votes
1answer
234 views

How to import data from .dmp files into R [closed]

I am trying to import data from .dmp files into R. I have imported the files into the Oracle server. Since I use a lot of R for analytics it would be nice to import data directly from .dmp into R as a ...
1
vote
1answer
53 views

How to assign random codes to columns to determine sort order?

Question: How can I assign a code such as CC=1 and WP=2 and make that part of the the query to get desired results? If there are multiple transactions on the same transaction date then apply the ...
2
votes
1answer
2k views

Eliminate Duplicates Using Oracle LISTAGG Function [duplicate]

Possible Duplicate: LISTAGG in oracle to return distinct values I am using oracle LISTAGG function but within my list of returned names I actually would like to eliminate duplicates and ...
0
votes
1answer
160 views

Create timeline from overlapping dates

Given this table: CREATE TABLE positions ( "EMP_ID" CHAR(10 BYTE), "GTYPE" NUMBER, "AMT" NUMBER, "START_DATE" DATE, "STOP_DATE" DATE ) and this data: Insert Into ...
0
votes
2answers
205 views

Oracle Analytic Preceding Returns wrong/unanticipated results [closed]

Writing a SQL query that should return the average charges for a preceding 91 day window. I truncate the date down to the first day of the week and expect the 91 day average to be the 91 days prior to ...
4
votes
2answers
205 views

How do I determine the distribution of a column's value in Oracle?

For example, if I have a column that represent a Y or N flag, what percentage is a Y and what percentage is an N? I know I can write a query to find each of these numbers and then calculate the ...
1
vote
1answer
356 views

oracle scalar subquery?

I have such a table: name value1 value2 value3 --------------------------- name1 1 1 1 name2 1 1 2 name3 2 2 11 name4 2 12 2 name5 3 3 ...
1
vote
2answers
41 views

Oracle - help making a query

I have source of data in the following format: Event Type| Date 1 | 2011-07-14 09:00 1 | 2011-07-14 09:01 1 | 2011-07-14 09:02 2 | 2011-07-14 09:30 2 | ...
0
votes
1answer
233 views

Oracle query returning records for a change in sequence of a field value

Given the following set of records, I'd like to return the first occurrence of 'changed' record. Given (relevant fields): ID STATE REF DATE 1 state_1 x 2010-12-01 2 ...
2
votes
3answers
180 views

How can I check for a certain value in all aggregated rows?

Suppose I have three tables: user, group and xref, a table that gives them many-to-many RI. I might want to see how groups each user belongs to: select user.user_id, user.user_name, ...
1
vote
2answers
1k views

What does PARTITION BY 1 mean?

For a pair of cursors where the total number of rows in the resultset is required immediately after the first FETCH, ( after some trial-and-error ) I came up with the query below SELECT col_a, ...
4
votes
1answer
349 views

rank on two dates - each date iteratively

How to query for rank over 'value' for each day in the below table? Ex: IT should list out the 'mydate', 'value', 'rank' for all values on 20th and then do a fresh rank() for all values on 21st? ...
1
vote
4answers
311 views

Use analytic functions to group a set of records when timestamps in rows is less or equal than a value

I have a table in an Oracle Database that has, among others, a DATE column that is loaded with the insertion timestamp of each row. I need to use existing data in such table to analyze the correlation ...
2
votes
5answers
1k views

Oracle - correlated subquery problems

I have this query: select acc_num from (select distinct ac_outer.acc_num, ac_outer.owner from ac_tab ac_outer where (ac_outer.owner = '1234567') and ac_outer.owner = ...
0
votes
2answers
392 views

Oracle - grouping between pairs of records

I have a logging table that contains data that looks like this: ID MSG DATE --------------------------------------------- 1 TEst 2010-01-01 09:00:00 2 Job ...
1
vote
5answers
262 views

Oracle SQL: Joining at most one associated entity

I have tables Building and Address, where each Building is associated with 0..n Addresses. I'd like to list Buildings with an associated Address. If a Building has several entrances, and thus several ...
-1
votes
2answers
212 views

oracle sql to copy rows through to down below, excel like coping [closed]

http://pastebin.com/m24c4f508 --any help would be appreciated
1
vote
3answers
89 views

Finding runs of a particular value

I have a table in Oracle 10 that is defined like this: LOCATION HOUR STATUS -------------------------------------- 10 12/10/09 5:00PM 1 10 12/10/09 6:00PM 1 ...
1
vote
4answers
319 views

Update based on subquery fails

I am trying to do the following update in Oracle 10gR2: update (select voyage_port_id, voyage_id, arrival_date, port_seq, row_number() over (partition by voyage_id order by arrival_date) as ...
8
votes
8answers
829 views

SQL query challenge

So here's yet another 'write a query to X' challenge. I'm monitoring a number of networked vending machines. Each machine has a number of parts, e.g. bank note acceptor, coin system, printer and so ...
1
vote
2answers
551 views

Oracle Analytics inside Cursor

I'm wondering why my "analytics" line inside a "cursor" in Oracle Forms generates an error. This is how it's written: CURSOR READ_C1_REC IS SELECT DISTINCT MACH, TCODE, COUNT(ALL ...
6
votes
4answers
435 views

Oracle Analytic Question

Given a function zipdistance(zipfrom,zipto) which calculates the distance (in miles) between two zip codes and the following tables: create table zips_required( zip varchar2(5) ); create table ...
2
votes
3answers
363 views

Oracle SQL Query (Analytics?)

I am trying to build a query such that some column are built up from a previous matching row. For example with the following data: CREATE TABLE TEST (SEQ NUMBER, LVL NUMBER, DESCR VARCHAR2(10)); ...
2
votes
3answers
2k views

Oracle SYS_CONNECT_BY_PATH hitting 4000 character limit

I'd like to run a query like the one below against an Oracle 9i database from Java (an example table structure and example data are below). SELECT deptno , SUBSTR(comma_list, 2) comma_list ...
2
votes
2answers
1k views

Is there a PostgreSQL equivalent to Oracle's analytics?

On another thread I saw a answer to a sql problem using Oracle's analytics. Is there a equivalent in PostgreSQL or generic SQL?
1
vote
3answers
6k views

Any difference between “current row” and “0 preceding/following” in windowing clause of Oracle analytic functions?

Some of Oracle's analytic functions allow for a windowing clause to specify a subset of the current partition, using keywords like "unbounded preceding/following", "current row", or "value_expr ...