473,395 Members | 1,869 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Patch Windows Pt3 - Calender Schedule Report

I need to create a report that shows in calendar form each patch window, the date and the time they start.

tblPatchWindows includes the following fields:
1. PatchWindow
2. PatchDate
3. PatchStartTime

I would like them to display something like the following in a report: (ignore "-")

------------------------4/1/08--4/2/08--4/3/08
PatchWindow1--12:00a
PatchWindow2--------------3:00a
PatchWindow3-------------------------9:00p

Thats the basics of what I want. What I really want is to show time blocks. Say PatchWindow1 is from 12:00a to 1:00a I want to show that block of time as occupied somehow. If I need to export this to excel somehow thats fine, but I dont know the best way to achieve what I need.

Maybe a better format would be:

------------------------4/1/08---4/2/08---4/3/08
12:00a--------------Patch1
1:00a----------------------------Patch2
2:00a----------------------------------------Patch3
Mar 30 '08 #1
1 1178
NeoPa
32,556 Expert Mod 16PB
How about something like :
Expand|Select|Wrap|Line Numbers
  1. TRANSFORM First(subP.PatchWindow) AS PatchWindow
  2. SELECT subP.PatchDate
  3. FROM (SELECT PatchWindow,
  4.              PatchDate,
  5.              DatePart('h',[PatchStartTime]) AS pHour
  6.       FROM tblPatch) AS subP
  7. GROUP BY subP.PatchDate
  8. PIVOT subP.pHour
Apr 1 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: Martin Bless | last post by:
The good news: Along with Python-2.4 comes really good news to Windows users. Yes, you now CAN build extension modules yourself using the SAME C++ compiler and linker Python is built with...
7
by: PawelR | last post by:
Hello group, Sorry, My English is very little. I have qustion about windows scheduler. My application create report and send this report to users. I want run this application as job in windows...
0
by: Vishnu | last post by:
In a Windows Application How to display a monthly , weekly calender ( Just like the calender in Outlook or the calender display airline websites) .....Also how will the code know if some month and...
12
by: keri | last post by:
Hi everyone, I apologise for repeating a topic that has been discussed many times before but I have searched the archives and googled 2 hours of my life away trying to solve this. I need a...
5
by: Ronald S. Cook | last post by:
I need ideas on how to best design a Windows form for my particular situation. On a cattle feeding yard there will be between about 300 and 600 pens. On my "Pen Feeding Sequence" form, I want...
4
by: Kevin Walzer | last post by:
How long does it take for a patch at the Python SF tracker to be reviewed and/or committed? I am unfamiliar with how the process works. (I originally submitted a bug report, then figured out how...
0
by: Kurt B. Kaiser | last post by:
Patch / Bug Summary ___________________ Patches : 385 open (+21) / 3790 closed (+21) / 4175 total (+42) Bugs : 1029 open (+43) / 6744 closed (+43) / 7773 total (+86) RFE : 262 open...
3
by: archana | last post by:
Hi all, I want to open one page without navigating user to another page. What i am having is having aspx page having calender control.this aspx page i am showing to user when user want to set...
0
by: vamsioracle | last post by:
Hi I have a disoverer report with two parameters. One parameter has a LOV attached. The other paramater is doe entering date. now, we can select multiple values for the first parameter, by...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.