Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
7k views

Generating a report by date range in rails

How would you go about producing reports by user selected date ranges in a rails app? What are the best date range pickers? edit in response to patrick : I am looking for a bit of both widget and ...
9
votes
2answers
705 views

MySQL: Matching records that have x consecutive dates available between two dates

Background / Application I have a MySQL database containing a table of rentable properties and a table of bookings for these properties. There is also a search feature for finding available ...
7
votes
3answers
298 views

Mark non-contiguous date ranges

Background (Input) The Global Historical Climatology Network has flagged invalid or erroneous data in its collection of weather measurements. After removing these elements, there are swaths of data ...
7
votes
10answers
2k views

How do you store Date ranges, which are actually timestamps

Java & Oracle both have a timestamp type called Date. Developers tend to manipulate these as if they were calendar dates, which I've seen cause nasty one-off bugs. For a basic date quantity you ...
5
votes
4answers
168 views

How to fast filter objects that satisfy date range condition

I have a large collection of objects public class Restriction { // which days this restriction applies to public DateTime From { get; set; } public DateTime To { get; set; } // valid ...
5
votes
4answers
521 views

Fastest way to split overlapping date ranges

I have date range data in SQL DB table that has these three (only relevant) columns: ID (int identity) RangeFrom (date only) RangeTo (date only) For any given date range, there may be an arbitrary ...
4
votes
2answers
140 views

How to extract every Monday and every fortnightly Monday from a range of two dates in PHP?

I'm using the infamous jQuery UI's Datepicker, and in my form I select a range of two dates. First represents the starting date and the other represents the end date. What I need now is the ...
4
votes
2answers
391 views

Ruby's range step method causes very slow execution?

I've got this block of code: date_counter = Time.mktime(2011,01,01,00,00,00,"+05:00") @weeks = Array.new (date_counter..Time.now).step(1.week) do |week| logger.debug "WEEK: " + week.inspect ...
4
votes
2answers
1k views

Prevent inserting overlapping date ranges using a SQL trigger

I have a table that simplified looks like this: create table Test ( ValidFrom date not null, ValidTo date not null, check (ValidTo > ValidFrom) ) I would like to write a trigger that prevents ...
4
votes
1answer
1k views

ORACLE SQL Date range intersections

I have a table T1, it contains a NAME value (not unique), and a date range (D1 and D2 which are dates) When NAME are the same, we make a union of the date ranges (e.g. B). But as a result (X), we ...
4
votes
7answers
9k views

How to check if a date is in a given range?

If you have a $start_date and $end_date, how can you check if a date given by the user falls within that range? e.g. $start_date = '2009-06-17'; $end_date = '2009-09-05'; $date_from_user = ...
4
votes
6answers
3k views

Getting Dates between a range of dates

I need to get all the dates present in the date range using SQL Server 2005
3
votes
1answer
369 views

jQuery UI Datepicker - Date range - Highlight days in between

I'm looking for a way of highlighting the days in between the date range of 2 inputs on mouse over. This example is nearly doing what I want to achieve: ...
3
votes
2answers
89 views

Mathematica - Select Range of SQLDateTimes

table = {{ID1, SQLDateTime[{1978, 1, 10, 0, 0, 0.`}]}, {ID2, SQLDateTime[{1999, 1, 10, 0, 0, 0.`}]}, {ID3, SQLDateTime[{2010, 9, 10, 0, 0, 0.`}]}, {ID4, SQLDateTime[{2011, 1, 10, 0, 0, 0.`}]}} ...
3
votes
2answers
1k views

How Do I Loop Through a Date Range in Reverse?

I have a date range that I would like to be able to loop through in reverse. Give the following, how would I accomplish this, the standard Range operator doesn't seem t be working properly. >> ...
3
votes
3answers
733 views

SQL CHECK constraint to prevent date overlap

I have a table that describes which software versions were installed on a machine at various times: machine_id::integer, version::text, datefrom::timestamp, dateto::timestamp I'd like to do a ...
3
votes
5answers
4k views

SQL join against date ranges?

Consider two tables: Transactions, with amounts in a foreign currency: Date Amount ========= ======= 1/2/2009 1500 2/4/2009 2300 3/15/2009 300 4/17/2009 2200 etc. ...
2
votes
2answers
81 views

Date Range Intersections

I have a BreakdownLog table with the following columns: EquipmentID, ProblemID, BreakdownDate, IssueFixedDate Each equipment can have multiple breakdowns, and more importantly, there could be ...
2
votes
1answer
118 views

SQL Server query performance on longer date range

I am trying to query a table which has a column that stores the transaction data that is in XML. My filer option is actually 1 of the node in my XML data. So below is my query SELECT eRefNo, ...
2
votes
2answers
279 views

Guava's Ranges.asSet outputting infinite list

I am trying to get a date range using Guava's new Range functionality, via Range<Date> dateRange = Ranges.range(start, BoundType.CLOSED, end, BoundType.CLOSED); My goal is to get the hours in ...
2
votes
2answers
411 views

jQuery alertnative to 'Timeframe' (date range picker)

I'm trying to find a date ranger picker for jQuery. First I found the jQuery Tools solution which looked absolutely perfect, but unfortunately does not work in IE6 which is by far the most commonly ...
2
votes
2answers
258 views

date range in drupal-6 view arguments?

I have a view which loads certain goods elements on the view based upon start date and end date, what i need is a date range. Unfortunately in drupal arguments there is no range and filtering option. ...
2
votes
1answer
478 views

Querying with nHibernate where todays date is between publishDate and Expiry date

I am trying to figure out how to best query in NHibernate so that the returned results are between for entries where todays time is >= PublishDateTime and <=ExpiryDateTime The expiry date can be ...
2
votes
5answers
534 views

PHP: Return all dates between two dates in an array

Expected Input: getDatesFromRange( '2010-10-01', '2010-10-05' ); Expected Output: Array( '2010-10-01', '2010-10-02', '2010-10-03', '2010-10-04', '2010-10-05' )
2
votes
2answers
974 views

Selecting a date range where date is not null with Propel

Using Propel I would like to find records which have a date field which is not null and also between a specific range. N.B. Unfortunately, as this is part of a larger query, I cannot utilise a custom ...
2
votes
3answers
172 views

How do I improve this design for dealing with intersecting date ranges and resolving date range conflicts?

I am working on some code that deals with date ranges. I have pricing activities that have a starting-date and an end-date to set a certain price for that range. There are multiple pricing activities ...
2
votes
2answers
276 views

Obtain a date range from a single date

I can do this myself of course, but is there built-in functionality in Ruby, or a library, that would let me do something like this date = Time.now sunday = date.week.first_day saturday = ...
2
votes
2answers
2k views

Date Range Intersection Splitting in SQL

I have a SQL Server 2005 database which contains a table called Memberships. The table schema is: PersonID int, Surname nvarchar(30), FirstName nvarchar(30), Description nvarchar(100), StartDate ...
2
votes
1answer
405 views

Find if a given date is in a list of date ranges

I have a list of events that need processing on a constant basis. The process takes care of the event for some time, whereupon it needs processing again. This means that I end up, for each event, with ...
2
votes
5answers
3k views

SQL Date Range Split

Can you please let me know the SQL to split date ranges when they overlap? Data (sample data with a date range and possibly other columns): Col1 FromDate ToDate 1. 1 1/1/2008 31/12/2010 2. ...
1
vote
3answers
127 views

SQL group by frequency within a date range

I have a requirement to write a stored procedure that accepts a start date, end date and a frequency (day, week, month, quarter, year) and outputs a result set based on those parameters. Obviously, ...
1
vote
3answers
95 views

Entity Framework: Best way to query for a set of dates using Linq

I have a set of unique DateTimes (without time portion) that the user can select from the user interface. This is not only a range like "LastWeek" or "LastMonth". The user can selcet every single day ...
1
vote
1answer
68 views

Number of absent rows in daterange

I have a table with following structure transaction_id user_id date_column 1 1 01-08-2011 2 2 01-08-2011 3 ...
1
vote
3answers
57 views

Generate a range of dates when those dates are not present in the data

Here is my table structure: CREATE TABLE EVENT ( EventID INT(11) NOT NULL AUTO_INCREMENT, EventDate DATETIME DEFAULT NULL, Description VARCHAR(50) DEFAULT NULL, PRIMARY KEY (EventID) ); And ...
1
vote
3answers
83 views

date range in mysql view cause slowness

I have a table in mysql table with this structure id (primary index) title, date (datetime) publicready (boolen) and I create view like this CREATE view FROM SELECT * FROM tablename WHERE ...
1
vote
1answer
126 views

Detect overlapping ranges and correct then in oracle

Googling it a bit I found this to be an interesting question. Would like you guys shots. Having my table USER | MAP | STARTDAY | ENDDAY 1 | A | 20110101 | 20110105 1 ...
1
vote
1answer
105 views

Python range() builtin function, erm… malfunctioning with Django

What, if anything, is wrong with this line of python code: daterange = [begin + timedelta(n) for n in range((end - begin).days)] Where begin and end are datetime.date objects with valid values. ...
1
vote
1answer
144 views

Grouping Values into weeks in a adate rang with Linq to SQL or plain SQL

I have a table that is of the form: StartDate[date], EndDate[date], HoursPerWeek[int] and is filled a bit like this: StartDate | EndDate | HoursPerWeek 01/01/2010 | 31/12/2010 | 37 01/01/2010 ...
1
vote
2answers
229 views

Ruby on Rails timstamp comparing in timestamp range?

I currently have 2 timestamp fields in my RubyOnRails database defined as: starttime:timestamp endtime:timestamp I want to write a simple function in my controller which will take the current time ...
1
vote
1answer
231 views

Django model timerange filtering method

I saw the next two method on old question here but it is not clear for me what is the difference between: {'date_time_field__range': (datetime.datetime.combine(date, datetime.time.min), ...
1
vote
1answer
86 views

How Do I Find Common Dates in Two Ranges

I have 2 date ranges, start_date1..end_date1 and start_date2..end_date2, is there an easy "ruby" way to find all the dates that are in both ranges?
1
vote
3answers
165 views

Complex query with two tables and multilpe data and price ranges

Let's suppose that I have these tables: [ properties ] id (INT, PK) name (VARCHAR) [ properties_prices ] id (INT, PK) property_id (INT, FK) date_begin (DATE) date_end (DATE) price_per_day ...
1
vote
4answers
1k views

SQL - Query range between two dates (NON-VBA)

I see various topics on this around stack overflow but none that fit the contect of MS-Access... Given a starting date and an ending date, is there a way through SQL to return records for each given ...
1
vote
1answer
555 views

T-SQL query to find missing IDs for a date range

Given these tables table Channel -------------- ChannelID int IDENTITY <other irrelevant stuff> table Program -------------- ProgramID int IDENTITY ChannelID int AiringDate datetime ...
0
votes
0answers
9 views

LibreOffice, Calc and sumif with date range

I have some data in that form | A | DATE | VALUE | | 1 | 1/1/12 | 10 | | 2 | 1/2/12 | 18 | | 3 | 1/3/12 | 12 | | 4 | 1/4/12 | 19 | | 5 | 1/5/12 | 15 ...
0
votes
4answers
38 views

mysql query help - check if date is between date1 and date2

I'm trying to write a query that will check today's date against my table columns date1 and date2 in mysql/php.. This is what I'm after: 'events' table: date1 = start date (XXXX-XX-XX) date2 = end ...
0
votes
2answers
72 views

How do I find breaks in multiple date ranges with Ruby

Let's say I have the following date ranges in Ruby: Sat, 01 Jan 2011..Tue, 01 Feb 2011 Wed, 05 Jan 2011..Thu, 17 Feb 2011 Wed, 02 Feb 2011..Tue, 01 Mar 2011 Sun, 01 Jan 2012..Thu, ...
0
votes
1answer
31 views

Deriving dates from only day(1,2,3..31), based on Current Date

Hello SOF community: I have a table like this InvoicingActivityStartDay InvoicingActivityEndDay 27 26 27 26 01 NULL --NULL ...
0
votes
0answers
31 views

rangevalidator validating after pclicking other control / post back

I have a range validtor for dates. it is working well except that when I click other btn that makes the page refresh or reloads the whole page, it validates the date. then gives error that the date is ...
0
votes
4answers
88 views

Java Generate all dates between x and y

I attempted to generate the date range between date x and date y but failed. I have the same method in c# so I tried to modify it as much as I can but failed to get result. Any idea what I could fix? ...

1 2