Tagged Questions
The weekend tag has no wiki summary.
7
votes
5answers
6k views
How do I exclude Weekend days in a SQL Server query?
How do I exclude values in a DateTime column that are Saturdays or Sundays?
For example, given the following data:
date_created
'2009-11-26 09:00:00' -- Thursday
'2009-11-27 09:00:00' -- Friday
...
6
votes
2answers
578 views
Hide weekends on WPF toolkit chart
I am making a small app that plots financial price data and since the finance markets are closed on the weekends, I have no data for those days. By default the chart, found in the new WPF Toolkit, ...
3
votes
2answers
790 views
Determine if Oracle date is on a weekend?
Is this the best way to determine if an Oracle date is on a weekend?
select * from mytable
where
TO_CHAR (my_date, 'DY', 'NLS_DATE_LANGUAGE=ENGLISH') IN ('SAT', 'SUN');
3
votes
1answer
1k views
java example to get all weekend dates in a given month
I need to find all the weekend dates for a given month and year, eg: 01(month), 2010(year) . the output should be :- 2,3,9,10,16,17,23,24,30,31. all weekend dates. please any idea.
usman
1
vote
5answers
346 views
java calender weekend of current week
Java using calender i want to get date of current weekend, any quick idea
0
votes
0answers
158 views
Datepicker: How to block weekends, national holidays, the next 10 dasy from wed/9 days from tue etc AND allow multiple select dates
I am a new web designer/developer and mainly work with HTML and the little php knowledge I need with working with WordPress. For this project I needed to implement a jQuery Datepicker and it is ...
0
votes
1answer
284 views
PHP Business days stop at weekends create a new start date on monday
Hi already i'm using this code from another question - which adds two extra days to endday in the case of weekends
function add_business_days($startdate,$buisnessdays,$holidays,$dateformat){
$i=1;
...
0
votes
2answers
250 views
Counting the age of an item in weekdays only
I've been trying to count the age of something in weekdays. I've tried the method detailed in this question, ...