The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
51 views

Another approach to percentiles?

I have a dataset which essentially consists of a list of job batches, the number of jobs contained in each batch, and the duration of each job batch. Here is a sample dataset: CREATE TABLE test_data ...
2
votes
1answer
37 views

Next action using analytic functions

For the need of a cohort analysis, I'm trying to get the next action of each customer (unsubscription, upgrade, downgrade...) I have a monhtly snapshot with the following data : customer | month ...
4
votes
3answers
56 views

Referencing the value of the previous calculcated value in Oracle

How can one reference a calculated value from the previous row in a SQL query? In my case each row is an event that somehow manipulates the same value from the previous row. The raw data looks like ...
2
votes
3answers
97 views

Return a value when a different value changes

I have a query, which returns the following, EXCEPT for the last column, which is what I need to figure out how to create. For each given ObservationID I need to return the date on which the status ...
1
vote
1answer
144 views

Rolling averages in SQL Server 2012 using range

I’m trying to calculate a 3 month rolling average grouped by region and month, as in Region Month Avg(var_a) Avg(var_b) Northland Dec-Jan-Feb 7.1 5.9 Southland ...
3
votes
4answers
156 views

Oracle partition by group into date based sequence

I am trying to use the PARTITION BY OVER to 'group' rows by certain columns. I understand the use of PARTITION somewhat, however I want to 'block' the partitions by date. For example, if we have ...
-2
votes
2answers
244 views

Rank function oracle sql

I am new to sql and working on assignment. There is a question, where I am supposed to use rank function, but I have no idea how to use that. I tried to find some information on the internet, but ...
0
votes
1answer
212 views

Count previous occurences of a value split by date ranges

Here's a simple query we do for ad hoc requests from our Marketing department on the leads we received in the last 90 days. SELECT ID ,FIRST_NAME ,LAST_NAME ,ADDRESS_1 ,ADDRESS_2 ...
3
votes
1answer
647 views

Over clause in SQL Server

I have the following query select * from ( SELECT distinct rx.patid ,rx.fillDate ,rx.scriptEndDate ,MAX(datediff(day, rx.filldate, rx.scriptenddate)) AS ...
0
votes
1answer
173 views

Nested analytic functions in Oracle

Can we use nested analytic function within analytic function? We can use another analytic function within expression or not? Please provide me one example.
2
votes
1answer
57 views

SQL sort that distributes results

Given a table of products like this: ID Name Seller ID Updated at -- ---- --------- ---------- 1 First 3 2012-01-01 12:00:10 2 Second 3 2012-01-01 12:00:09 3 ...
1
vote
1answer
28 views

Eliminating similar row but with specific values

I have user table and user_group table. A single user can be in multiple group. I have two groups admin and user. Admin group has group id 1 and user group has group id 2. As I select from joining ...
0
votes
0answers
35 views

Analytic Functions (like the basic ones supported by RDBMS) support in NoSQL data bases

Some popular RDBMS's provide some or all of the below Analytic Functions out of the box. Wondering which of the NoSQL's provide support for most of these. I understand that most of these are generally ...
1
vote
1answer
65 views

Oracle get first preceding and following rows ordered by time in another table

I have 2 tables each of which have a timestamp column. How do I query for each row in A, the first preceding and following timestamps in B ? I want: A.id A.timestamp first_preceding(B.timestamp) ...
5
votes
2answers
137 views

NoSQL with analytic functions

I'm searching for any NoSQL system (preferably open source) that supports analytic functions (AF for short) like Oracle/SQL Server/Postgre does. I didn't find any with build-in functions. I've read ...
1
vote
1answer
101 views

How does the analytic function FIRST_VALUE work in SQL

I have just started diving in to SQL analytic functions and am a little hung up on FIRST_VALUE, maybe it is just specific to the example query from this site: -- How many days after the first hire ...
1
vote
1answer
98 views

Can I use Oracle analytical function here?

I've got this query: SELECT year, month, week, C.cpg_pk CPG, C.dep_pk ...
1
vote
1answer
231 views

Apply COUNT function on a subgroup of groups

I made up this weird example trying to illustrate what I want to do (it's kind of stupid, but bear with me): Consider the following table: EMPLOYEES married, certified and religious are just ...
5
votes
3answers
543 views

Oracle SQL Analytic query - recursive spreadsheet-like running total

I have the following data, composed of the A value, ordered by MM (month). The B column is computed as GREATEST(current value of A + previous value of B, 0) in a spreadsheet-like fashion. How can I ...
1
vote
1answer
577 views

Oracle SQL Analytics Function FirstValue with 'NULL' Values

I have an issue with the analytics function FirstValue:(Syntax: FIRST_VALUE(TAble1.Column2 IGNORE NULLS) OVER (PARTITION BY Column1 ORDER BY Column3 DESC) Example: Column1 Column2 ...
4
votes
1answer
581 views

Oracle Analytic Rolling Percentile

Is it possible to use windowing with any of the percentile functions? Or do you know a work around to get a rolling percentile value? Easy with moving average: select avg(foo) over (order by ...
0
votes
1answer
138 views

Is there a way to partition a query that has a “group by” clause?

Say we I have a query that displays groups of population by country having the country as its first column, and total population of that country as its the second column. To achieve this I have the ...
7
votes
1answer
9k views

What's the difference between RANK() and DENSE_RANK() functions in oracle?

What's the difference between RANK() and DENSE_RANK() functions?.How to find out nth salary in the emptbl table and mentioned table data also. DEPTNO EMPNAME SAL ------------------------------ 10 ...
0
votes
2answers
68 views

Divide data from other days by data from one particular day

I am a bit stuck on one problem for a few hours now. Let`s say I have a table with the following data: month outstanding 01/05/2012 35 678 956 02/05/2012 33 678 956 03/05/2012 ...
-2
votes
1answer
134 views

How do i prepare my data for future statistical programs? [closed]

I am currently designing a Survey system (where a Survey has many questions, a question has many answers, and a Response belongs_to a user, survey, question and answer). I will have a lot of ...
1
vote
1answer
192 views

Delete a query with analytic function Oracle 10g

Delete the records that have the minimum of records, I have 2 tables person (id, otherID) otherID is a reference of an other person.id and film (id, country, personID) where personID is a foreign key ...
3
votes
2answers
218 views

Ranking/Counting Rows based on Column Value

I have some data in a format described in this sqlfilddle: http://sqlfiddle.com/#!4/b9cdf/2 Basically, a table with a user ID and a time that an event occured. What I'd like to do is count the events ...
0
votes
2answers
104 views

performant query using analytic function to select records with 2 date columns

I'm looking for a perfomant way to write a SQL query. I've got a table with columns (id,fname,lname,accountid,creation_date,update_date) and i have to look for the records in that table that have the ...
3
votes
2answers
10k views

Oracle 'Partition By' and 'Row_Number' keyword

I have a SQL query written by someone else and I'm trying to figure out what it does. Can someone please explain what the Partition By and Row_Number keywords does here and give a simple example of it ...
3
votes
1answer
168 views

How does the FIRST_VALUE() function in Oracle process rows if there is no order by clause?

First_value() definition states that it returns the first value in an ordered data set. It's syntax is First_Value(ColumnName) over ( [Partition By Colum] [Order by Column] ) The Partition By and ...
0
votes
2answers
200 views

Oracle Analytics Window

Given the following table PAYMENT_Date TRANSACTION_TYPE PAYMENT_AMT 1/1/2012 P 184366 1/1/2012 R -5841 1/2/2012 P ...
0
votes
1answer
3k views

SQL - ROW_NUMBER () OVER (ORDER BY) not working

It doesn't matter what I put in the ORDER BY clause, the order of the result set doesn't change. WITH Results AS ( SELECT DISTINCT MessageThreadUsers.threadFK, ...
0
votes
1answer
328 views

Oracle query optimization written on table with partition

I have one table in Oracle consists of around 55 million records with partition on date column. This table stores around 600,000 records for each day based on some position. Now, some analytical ...
0
votes
1answer
415 views

Oracle - Refactor subquery with max()

I have the query below. SOFTWARE_DEVELOPMENT_CYCLE has multiple rows, but I'm interested in the latest. I would like to rewrite the query so that I don't use a subquery. I have attempted it with ...
0
votes
2answers
429 views

Alternative for percentile_cont in sql server 2008

In Oracle it works well ...... Query for oracle is As Follows Select distinct channel_id, position_id,datamonth, percentile_cont(.9) within group (order by TRIM_PRE_ELIG_PAY) over ...
0
votes
3answers
68 views

“line fusion” in oracle

I am trying to do "line fusion" in Oracle, i.e. I want to have a query that returns lines, and each of these lines has, for each column, values that were originally stored in other lines. For ...
0
votes
2answers
736 views

Fetching data only if there are multiple rows in the result

Suppose I have a table abc with columns p_id ,u_id, and comments. I want to fetch the data from this table only if there are multiple rows for a particular p_id value (there is a single row of "junk" ...
3
votes
1answer
869 views

dense_rank() analytic function in oracle

SELECT empno, deptno dense_rank() OVER (PARTITION BY deptno ORDER BY sal NULLS LAST) SRLNO FROM emp WHERE deptno IN (10, 20) group by empno, deptno --,sal ORDER BY deptno, SRLNO; This Query ...
1
vote
4answers
555 views

ORA-00907 Error when using Analytic Function in a Query (PS/Query, Peopletools 8.51.12)

Query's throwing an ORA-00907 Error when I try to paste a list of values into a criteria. Background: I'm not a developer, I'm just an end user that's studied enough to where I can write queries ...
0
votes
2answers
125 views

Not able to retrieve desired data from sql query

SELECT a.alloc_date, p.plan, p.emp_id, a.veh, a.contri_type, a.amount, SUM (a.alloc_qty) AS sum_alloc_qty, -- 1000 funds distributed ...
5
votes
1answer
398 views

Interesting Oracle analytic query challenge

I'm fairly experienced with Oracle analytic functions but this one has stumped me. I'll kick myself if there's an obvious solution :) I have a table, JOURNAL, which records Inserts, Updates and ...
4
votes
1answer
1k views

In which scenarios does SQL Server ROW_NUMBER() not start from 1?

We are using ROW_NUMBER() in our query. It is returning correct results in almost all scenarios. But for 1 user, it is behaving very differently. With #TEST as ( select top 50 ...
0
votes
5answers
880 views

Finding a count of rows in an arbitrary date range using Oracle

The question I need to answer is this "What is the maximum number of page requests we have ever received in a 60 minute period?" I have a table that looks similar to this: date_page_requested ...
6
votes
1answer
1k views

Oracle MIN as analytic function - odd behavior with ORDER BY?

This particular case was distilled from an example where the programmer assumed that for two shipments into a tank car, line #1 would be loaded first. I corrected this to allow for the loading to be ...
3
votes
3answers
1k views

How can I perform linear interpolation using oracle SQL?

I am trying to use Oracle 11g (11.1 in dev, 11.2 in production) for numeric analysis, specifically linear interpolation on a table which has three columns of interest: a timestamp, a deviceid, and ...
0
votes
3answers
609 views

Oracle analytics: using LAG values in calculation?

I have a table that records when tasks were completed. Tasks belong to a workflow, but in this example I'm just trying to get the LAG working. I would like to find information about how long each ...
2
votes
2answers
344 views

Transaction activity running total in SQL

I am working with a transactions table. I want to generate a number of variables to determine the number of transactions performed by the same customer in the last 5 and 30 minutes and 1,2,3 and 4 ...
2
votes
2answers
425 views

How do I calculate a median-to-date variable using Oracle SQL?

I'm working with invoice data in Oracle SQL. I want to create a variable, "median account invoice amount to date", that gives the median invoice amount for an account up to that given invoice date.
2
votes
0answers
131 views

Syntaxic analysis and parser

I want to parse something like that : path.to.variable "path" and "to" are object named "Instance" and variable reference a double. I've got the following grammar : expr ::= ...
1
vote
3answers
1k views

replace NULL values with latest non-NULL value in resultset series (SQL Server 2008 R2)

for SQL Server 2008 R2 I have a resultset that looks like this (note [price] is numeric, NULL below represents a NULL value, the result set is ordered by product_id and timestamp) product ...

1 2