Full YR calendar & row generators -probs with mnths that have 28/29/30 days

Hello,
With Rod West's advice i've been able to build an absence calendar report using Row Generators, see the learndiscoverer blog (http://learndiscoverer.blogspot.com/2008/10/row-generators.html) for more details on row generators.
I have hit a problem with using dates as a data point (or the basis of a datapoint) in crosstabs.
I'm building a crosstab that needs to look at a years worth of absence for a person. Using 2 row generators, 1 producing 12 months (last day of each month as a date, formatted to fmMonth) down the side and the other with 31 rows running along the top for the days in that month.
The data point is a calculation that inserts the absence category on each day that a person is absent. This works brilliantly for one month. However the datapoint is a derivative of the month/year and the 31 days created by the row generator, which causes problems for certain months.
If, for example, I need to produce the report for January and February 2008 it will produce an error saying not a valid date for month. This is because there are 31 days running along the top and the datapoint is using 31 days in both Jan & Feb. As there were only 29 days during Feb in 2008 the error occurs when the datapoint creates 30-Feb-2008 & 31-Feb-2008.
I have tried to make the datapoint calculation return NULL for these dates but it won't allow it because the datapoint is must be some sort of date. I have tried to convert these erroneous dates to 01-Jan-1900 and then omit them from the report with a condition, i think this may be the solution, but i'm not getting anywhere with it.
If anyone knows a better way of doing this i'd be really grateful if you could let me know.
Also, just one other thing. Does anyone know how to format a date to a day in the format Mon, Tues, Wed etc. I can get the full day but need narrower columns.
Thanks,
Lloyd Thomas

Hi Rod,
This is brilliant! I'm sorry about the confusion I caused over the dates in the generator.
There is a problem here though. I've got to_date('01-JAN-'||:pyear)+n-1 along the top. Down the side of the cross tab I have LAST_DAY(TO_DATE('01-JAN-'||:pyear)+( Days in Year-1 )), formatted to FmMonth.
The data point is MAX(CASE WHEN "Dates in the Year" BETWEEN Date Start AND Absence Finish THEN Absence Category ELSE '' END).
The multiple absences over the year are causing duplicate rows. Once converted to a table i can see that each day of the year brings in duplicate rows for every absence a person has had. The MAX statement works in terms of identifying the correct row but I cannot get rid of the other rows. I can't do an IS NOT NULL condition because it will also remove days where people where not absent.
I think the problem with the LAST_DAY(TO_DATE('01-JAN-'||:pyear)+( Days in Year-1 )) calculation but i'm trying to make it return one month.
Any help appreciated.
Thanks,
Lloyd

Similar Messages

  • I have an apogee ensemble that I am using with Logic that was working fine 2 days ago but now it is seeing the apogee but giving me a conflict era and I can't get sound through my mixing board. What could be causing it, I haven't changed any settings

    I have an apogee ensemble that I am using with Logic that was working fine 2 days ago but now it is seeing the apogee but giving me a conflict era and I can't get sound through my mixing board. What could be causing it, I haven't changed any settings

    OK, but in my ipad, the apple id i have in itues is already the one  iwant to have, but th one i used to sin in for i-coud is the other one. Any tip as to how to change the apple id for icloud and any idea how to know what apps i bought with the other apple id so as to delete them from my ipad to avoid being asked to enter another apple id every time they get updated? thanks!

  • [svn:fx-4.0.0] 13714: updating the AIR kits with versions that have the fx4 swc recompiled using SDK 13653

    Revision: 13714
    Revision: 13714
    Author:   [email protected]
    Date:     2010-01-22 08:12:15 -0800 (Fri, 22 Jan 2010)
    Log Message:
    updating the AIR kits with versions that have the fx4 swc recompiled using SDK 13653
    Modified Paths:
        flex/sdk/branches/4.0.0/in/air/mac/AIR Integration Kit.tbz2
        flex/sdk/branches/4.0.0/in/air/win/AIR Integration Kit.zip

    Thanks dude, you saved my ***!
    This is my platformOptions.xml file now:
    <platform xmlns="http://ns.adobe.com/air/extension/3.5">
        <sdkVersion>6.0</sdkVersion>
        <linkerOptions>
            <!-- to link with the libicucore.dylib -->
            <option>-licucore</option>
            <option>-framework GameKit</option>
            <option>-framework CoreData</option>
            <option>-framework StoreKit</option>
            <option>-framework iAd</option>
            <option>-framework MessageUI</option>
         </linkerOptions>
    </platform>
    And it works!
    I looked into including the 2 .a files
        <packagedDependencies>
            <packagedDependency>libWebp.a</packagedDependency>
            <packagedDependency>libFlurryAnalytics.a</packagedDependency>
        </packagedDependencies>
    I put the 2 files into my ane build folder and into my adt command line, but when I try to build the app I get an duplicate symbol error... so i took them out.
    \o/

  • How to improve Oracle Veridata Compair pair performance with tables that have big (30-40MB)CLOB/BLOB fileds ?

    How to improve Oracle Veridata Compair pair performance with tables that have big (30-40MB)CLOB/BLOB fileds ?

    Can you use insert .. returning .. so you do not have to select the empty_clob back out.
    [I have a similar problem but I do not know the primary key to select on, I am really looking for an atomic insert and fill clob mechanism, somone said you can create a clob fill it and use that in the insert, but I have not seen an example yet.]

  • How do I select rows from the same table that have multiple occurances

    Hi Everybody,
    I am trying to select records from a detail table by grouping it. The table has more than 1 million records and the query is not performing well. The basic question is how to select a distinct record from a table which matches all values in one column and any in the other.
    desc SCV
    ID NUMBER PK (ID + SCRID)
    SCRID NUMBER FK(SC)
    ID SCRID
    1 1
    2 1
    3 1
    4 2
    5 2
    6 3
    7 4
    8 4
    desc PROJECTS
    ID NUMBER PK
    NAME VARCHAR2(100)
    ID NAME
    1 PROJECT1
    2 PROJECT2
    3 PROJECT3
    4 PROJECT4
    desc PJS
    ID NUMBER
    PROID NUMBER FK (PROJECTS)
    SCRID NUMBER FK (SCV(SCRID + SCVID)
    SCVID NUMBER
    ID PROID SCRID SCVID
    1 1 1 1
    2 1 1 2
    3 1 2 5
    4 1 3 6
    5 1 4 7
    6 2 1 3
    7 2 2 4
    8 2 2 5
    9 2 4 7
    There are over 1 million records in PJS.
    desc TBP
    SCRID NUMBER
    SCVID NUMBER
    SCRID SCVID
    1 1
    1 2
    1 3
    2 4
    2 5
    3 6
    4 7
    4 8
    The requirement is to select projects that have matching SCRID, SCVID from TBP such that
    all distinct SCRID should match and within that and any SCVID match will do. (A "AND" between each SCRID and an "OR" for each SCVID in that SCRID like 'SCRID = 1 AND (SCVID = 1 OR SCVID = 2 OR SCVID = 3) AND SCRID = 2 AND (SCVID =....)
    So, for the sample data it should return us PROID = 1
    I have few queries written for this:
    SELECT PROID FROM PJS,TBP WHERE TBP.SCVID = PJS.SCVID AND TBP.SCRID = 1
    INTERSECT
    SELECT PROID FROM PJS,TBP WHERE TBP.SCVID = PJS.SCVID AND TBP.SCRID = 2
    INTERSECT
    SELECT PROID FROM PJS,TBP WHERE TBP.SCVID = PJS.SCVID AND TBP.SCRID = 3
    INTERSECT
    SELECT PROID FROM PJS,TBP WHERE TBP.SCVID = PJS.SCVID AND TBP.SCRID = 4
    This query performs well but the cost is very high, hardcoding, sorting.
    The 2nd option is to:
    SELECT pjs.PROID proid
    FROM TBP tbp,
    PJS pjs
    WHERE pjs.SCVID = tbp.SCVID
    AND pjs.SCRID = tbp.SCRID
    GROUP BY pjs.PROID
    HAVING COUNT(DISTINCT pjs.SCRID) = (SELECT COUNT(DISTINCT SCRID ) FROM TBP)
    This has a low cost but runs slowly.
    One more way I tried was with the IN operator like
    SELECT DISTINCT PROID FROM PJS A,TBP T WHERE T.SCRID = 1 AND T.SCVID = A.SCVID
    AND PROID IN (SELECT PROID FROM PJS A,TBP T WHERE T.SCRID = 2 AND T.SCVID = A.SCVID
    AND PROID IN (...SO ON with each DISTINCT SCRID.
    Again this involves too much of sorting.
    Any help will be appriciated.
    Thanks in advance.

    Hi Andrew,
    Use DELETE t_itab statement inside the loop.
    I have modified your code. It is perfectly working.See bellow  -
    LOOP AT it_zmember01 INTO wa_zmember01.
    WRITE: / wa_zmember01-mnumber UNDER 'NUMBER',
    wa_zmember01-mname UNDER 'NAME',
    wa_zmember01-mdob UNDER 'DOB'.
    WRITE / '-----------------------------------------------------------------'.
    DELETE it_zmember01.               " Modified
    ENDLOOP.
    DELETE it_zmember01. statement inside the loop will delete the current row of the table.
    Regards
    Pinaki

  • Edit code for change drive letters in paths for links, to also work with Fonts that have been moved.

    I have the following code that looks through my links and changes all of the drive letters to the new locations where they exist.  So if something stays in the same folder structure, but moves to a new drive E: and InDesign can not longer find it, you can run the code and have it fix them all.
    Well I want to do the same but for fonts that have also moved.
    Thank you in advance for any and all help!
    if (app.documents.length == 0) {
        err("No open document. Please open a document and try again.", true);
    if (File.fs != "Windows") {
        err("This script is for Windows only.");
    var myDoc = app.activeDocument;
    var myLinks = myDoc.links;
    var myCounter = 0;
    if (myLinks.length == 0) {
        err("This document doesn't contain any links.", true);
    var mySettings = CreateDialog();
    for (i = myLinks.length-1; i >= 0 ; i--) {
        var myLink = myLinks[i];
        if ( myLink.status == LinkStatus.LINK_MISSING || (myLink.status != LinkStatus.LINK_MISSING && mySettings[2] == false) ) {
            var myOldPath = myLink.filePath;
            var myNewPath = myOldPath.replace(mySettings[0] + ":\\", mySettings[1] + ":\\");
            var myNewFile = new File(myNewPath);
            if (myNewFile.exists) {
                myLink.relink(myNewFile);
                try {
                    myLink.update();
                catch(e) {}
                myCounter++;
    if (myCounter == 1) {
        alert("One file has been relinked.", "Finished");
    else if  (myCounter > 1) {
        alert(myCounter + " files have been relinked.", "Finished");
    else {
        alert("Nothing has been relinked.", "Finished");
    function err(e, icon){
        alert(e, "Change drive letter in path", icon);
        exit();
    function CreateDialog() {
        var myDrives = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "y", "Z"];
        var myDialog = new Window("dialog", "Change drive letter in path");
        var myPanel = myDialog.add("panel", undefined, "");
        myPanel.orientation = "column";
        myPanel.alignChildren = "left";
        var myGroup = myPanel.add("group");
        myGroup.orientation = "row";
        var myStText1 = myGroup.add("statictext", undefined, "Change ");
        var myDropDownList1 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1") != "") {
            myDropDownList1.selection = myDropDownList1.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1")];
        else {
            myDropDownList1.selection = myDropDownList1.items[2];
        var myStText2 = myGroup.add("statictext", undefined, " to ");
        var myDropDownList2 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2") != "") {
            myDropDownList2.selection = myDropDownList2.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2")];
        else {
            myDropDownList2.selection = myDropDownList2.items[3];
        var myCheckBox = myPanel.add("checkbox", undefined, "relink only missing links");
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox") != "") {
            myCheckBox.value = eval(app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox"));
        else {
            myCheckBox.value = true;
        var myButtonsGrp = myDialog.add("group");
        var myOkBtn = myButtonsGrp.add("button", undefined, "Ok", {name:"ok"});
        var myCancelBtn = myButtonsGrp.add("button", undefined, "Cancel", {name:"cancel"});
        myOkBtn.onClick = function() {
            if (myDropDownList1.selection.index == myDropDownList2.selection.index) {
                alert("Both drive letters should not be the same.", "Change drive letter in path");
            else {
                myDialog.close(1);
        var myDialogResult = myDialog.show();
        if (myDialogResult == 1) {
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1", myDropDownList1.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2", myDropDownList2.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox", myCheckBox.value + "");
            return [ myDropDownList1.selection.text, myDropDownList2.selection.text, myCheckBox.value ];
        else {
            exit();

    ok, so I have discovered where the issue came from...
    The code you helped me with before, were I removed all links and my link character styles that I had (found here: http://forums.adobe.com/message/5881440#5881440)
    Well it set all the items I was finding/replacing to unknown fonts that my machine doesn't have (Like Helvetic Neue Bold, instead of just Helvetica Bold, etc).
    Is there an easy way of fixing this?
    The only way I know to fix it right now is:
    Go to Package >> go to Fonts >> Select the the font that says it's missing >> Select Find First >> CLOSE ALL OF THIS, then use the eye-dropper to select the text around that font which copies the formatting and then apply it to the text who's formatting got messed up.  And then start the process all over again for the next occurence of that word whose formatting got stripped.

  • Auto adjustment of page orientation causes printing issues with documents that have a page width greater than its page height.

    Hi,
    Since an upgrade from Word 2003 to Word 2010, we are experiencing printing issues with certain
    documents that have a page width greater than its page height.
    In Word 2003, it was no problem to set the page width greater than the page height while setting the page orientation to "portrait".
    In Word 2010, this seems impossible: despite leaving the page orientation to "portrait", if one changes the page width/height as stated,
    Word 2010 automatically adjusts the orientation to "landscape". Resetting the orientation to "portrait" will flip the page's width/heigth settings.
    This behaviour causes printing problems: the page prints out 90° rotated.
    I do not believe this is a printer driver issue: I tried several different printer drivers, and all give the same (bad) result. Setting the printer driver's page orientation settings (before printing) makes no difference, as
    Word 2010 seems to force the page orientation settings.
    Inserting the documents 90° rotated is not an option, since it causes problems with the printing margins.
    This is very annoying, since we have to print official documents of a municipality (driver's licences).
    Is there a workaround for this issue?
    Regards,
    Laurent Grandgaignage
    Sysadmin Gemeentebestuur Stabroek, Belgium

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, we can follow these steps to test this issue
    Step 1: Repair Office 2010
    1.      
    Click
    Start, and then click Control Panel.
    2.      
    Click
    Programs and Features.
    3.      
    Click the
    Office 2010 program that you want to repair, and then click
    Change.
    4.      
    Click
    Repair, and then click Continue. You might need to restart your computer after the repair is complete.
    Step 2:
    Rename the global template (Normal.dotm)Follow the steps for the operating system that you are using:
    Windows Vista and Windows 7
    a)      
    Exit Word 2010
    b)      
    Click
    Start.
    c)       
    In the
    Start Search box, type the following text, and then press
    ENTER:
    1.      
    %userprofile%\appdata\roaming\microsoft\templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    Microsoft Windows XP
    a)      
    Exit Word 2010
    b)      
    Click
    Start, and then click Run.
    c)       
    In the
    Open box, type the following text, and then press ENTER:
    %userprofile%\Application Data\Microsoft\Templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    f)       
    Close Windows Explorer.
    How to troubleshoot print failures in Word 2010, Word 2007, and Word 2003
    http://support.microsoft.com/kb/826845
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

  • I have 2 itune account and only 1 shows up with songs that have been purchased

    I HAVE TO I TUNES ACCOUNT AND ONLY 1 SHOWS UP WITH SONGS THAT I HAVE PURCHASED.  HOW DO I GET TO THE OTHER ACCOUNT

    If u purchase something with one apple  id account everything stay there you can not move ur purchase history to another account

  • HR-TM: Two Holiday Calendars That Have Different Non-working Days?

    Dear All,
    Please help me on the predicament below:
    I need to create two holiday calendars.
    Holiday Calendar 1 will have Saturday and Sunday as non-working days.
    Holiday Calendar 2 will have Friday and Saturday as non-working days.
    And both holiday calendars are used in the same country.
    Then, there is one holiday which is assigned to both holiday calendars such as New Year Day.
    How can I configure so that
    1) if New Year Day falls on the first non-working day of each week of each holiday calendar, the holiday will be moved to the previous day?
    2) if New Year Day falls on the second non-working day of each week of each holiday calendar, the holiday will be moved to the following day?
    Should I create two lines of data for New Year Day so that each of them assigned to different holiday calendar?
    Or I can just use one New Year Day in both holiday calendars?
    Thanks.

    I've got my answer.
    First calendar, i use fixed date and floating date for the public holiday based on the real situation.
    Second calendar, i use floating date for all the public holiday, then set the date every year once.

  • Cannot get Shockwave playver 12 to work with users that have basic security

    Good Day,
    I've pushed out Shockwave player 12 to 2 test units that are Win 7 and IE 10.. I can log in with my account (ADmin access ) and 2 other accounts (1 Student and 1 Teacher) that have basic security access  and run a web page that will play properly.. I ran the testy and it came back as everything is ok...
    I created 2 other accounts with same access as the teacher and Student (basic domain access) and logged in to the same unit.. and the web page won't play... I ran the Adobe test and it tells me The Version 12 Shockwave is installed incorectly..
    As a test, I removed the 2 working profiles from a PC..., then re logged in, it worked...
    Tried removing shockwave player and re-installing, still fails for the 2 student and teacher (and all other accounts).. I've verified IE settings (as they are controlled via group policy..) everything is the same...
    Searched the WEB and seems to be acomon issue, any ideas?

    Hello,
    It was sorted out.. (somewhat)..  the fix for a specific website was to add it to the trusted list of sites..
    Could never figure out the blocking though… of IE10 and settings..
    Ron

  • HT201210 trying to update - get the message "the disc you are attempting to use is full" i am unable to proceed with update and have deleted files from my computer?

    Tried to transfer a playlist - unable to do so - prompted to update my daughters ipod software - attempt to do so and receive message the disc you are attempting to use is full
    Unable to proceed with update is this causing the issue with transferring the playlist?

    You need to delete some files from your computer's c drive. Do not forget to empty the recycle bin.
    It sounds like you clicked on update.

  • Netstat not reporting input errors with packets that have bad checksums ?

    Greetings,
    Is netstat not reporting any checksum errors ? I have a number of Macs reporting checksum errors when sniffing the local net. I would think that these should be reported by netstat as input errors, or collisions right ?
    But it doesn't currently. See below for sample, its occurring across protocols, tcp, and udp. Usually this error is a bad ethernet port or cabling, and sometimes a sw issue. Working on eliminating the switches, router, and dsl modem by doing more testing.
    But is netstat broke ? I havent seen any errors from netstat since @ 3yrs ago.
    length 64, bad cksum 0 (->f9fe)!)
    One other question, can one monitor firewire 400/800 ports or usb with netstat ? Its not listed with man pages or netstat -h
    Thanks in advance

    Im am using two commands to view the data;
    netstat -I en0 2;
    (no errors in or out)
    and tcpdump with the verbose -v argument
    ( reports the cksum ( these are CRC's right, not IP header checksum ? )
    At the very bottom is the netstat -s output, otherwise a snippet of tcpdump ; replaced the IP's with xxxx's to protect the innocent
    Thanks for your help.....
    ===========================
    18:13:37.101690 IP (tos 0x0, ttl 64, id 8134, offset 0, flags [DF], proto TCP (6), length 957, *bad cksum 0 (->68d8)!)* xxxxxxxxxx > xxxxxxxxxxxxxxx: P 8689:9594(905) ack 1 win 65535 <nop,nop,timestamp 1438111158 3084046213>
    18:13:37.136653 IP (tos 0x0, ttl 57, id 26778, offset 0, flags [DF], proto TCP (6), length 52) xxxxxxxxxx > xxxxxxxxxxxxxxx: ., cksum 0xd4bc (correct), ack 5793 win 17376 <nop,nop,timestamp 3084046248 1438111158>
    18:13:37.172381 IP (tos 0x0, ttl 57, id 26779, offset 0, flags [DF], proto TCP (6), length 52) xxxxxxxxxx > xxxxxxxxxxxxxxx: ., cksum 0xc3a0 (correct), ack 7241 win 20272 <nop,nop,timestamp 3084046284 1438111158>
    18:13:37.207358 IP (tos 0x0, ttl 57, id 26780, offset 0, flags [DF], proto TCP (6), length 52) xxxxxxxxxx > xxxxxxxxxxxxxxx: ., cksum 0xb285 (correct), ack 8689 win 23168 <nop,nop,timestamp 3084046319 1438111158>
    18:13:37.230968 IP (tos 0x0, ttl 57, id 26781, offset 0, flags [DF], proto TCP (6), length 52) xxxxxxxxxx > xxxxxxxxxxxxxxx: ., cksum 0xa395 (correct), ack 9594 win 26064 <nop,nop,timestamp 3084046342 1438111158>
    18:13:37.313545 IP (tos 0x0, ttl 57, id 26782, offset 0, flags [DF], proto TCP (6), length 1500) xxxxxxxxxx > xxxxxxxxxxxxxxx: . 1:1449(1448) ack 9594 win 26064 <nop,nop,timestamp 3084046415 1438111158>
    18:13:37.322422 IP (tos 0x0, ttl 57, id 26783, offset 0, flags [DF], proto TCP (6), length 1500) xxxxxxxxxx > xxxxxxxxxxxxxxx: . 1449:2897(1448) ack 9594 win 26064 <nop,nop,timestamp 3084046415 1438111158>
    18:13:37.322440 IP (tos 0x0, ttl 64, id 8135, offset 0, flags [DF], proto TCP (6), length 52, *bad cksum 0 (->6c60)!)* xxxxxxxxxx > xxxxxxxxxxxxxxx ., *cksum 0xaec3 (incorrect (-> 0xff42)*, ack 2897 win 65160 <nop,nop,timestamp 1438111159 3084046415>
    18:13:37.331285 IP (tos 0x0, ttl 57, id 26784, offset 0, flags [DF], proto TCP (6), length 1500) xxxxxxxxxx > xxxxxxxxxxxxxxx: . 2897:4345(1448) ack 9594 win 26064 <nop,nop,timestamp 3084046415 1438111158>
    18:13:37.334407 IP (tos 0x0, ttl 57, id 26785, offset 0, flags [DF], proto TCP (6), length 646) xxxxxxxxxx > xxxxxxxxxxxxxxx: P 4345:4939(594) ack 9594 win 26064 <nop,nop,timestamp 3084046415 1438111158>
    18:13:37.334421 IP (tos 0x0, ttl 64, id 8136, offset 0, flags [DF], proto TCP (6), length 52, *bad cksum 0 (->6c5f)!*) xxxxxxxxxx > xxxxxxxxxxxxxxx: ., *cksum 0xaec3 (incorrect (-> 0xf5d1)*, ack 4939 win 65535 <nop,nop,timestamp 1438111159 3084046415>
    ===============================
    netstat -s
    tcp:
    7470 packets sent
    2868 data packets (671900 bytes)
    0 data packets (0 bytes) retransmitted
    0 resends initiated by MTU discovery
    3534 ack-only packets (101 delayed)
    0 URG only packets
    0 window probe packets
    657 window update packets
    411 control packets
    7918 packets received
    3225 acks (for 672008 bytes)
    185 duplicate acks
    0 acks for unsent data
    4489 packets (2652174 bytes) received in-sequence
    7 completely duplicate packets (7347 bytes)
    0 old duplicate packets
    0 packets with some dup. data (0 bytes duped)
    291 out-of-order packets (412273 bytes)
    0 packets (0 bytes) of data after window
    0 window probes
    1 window update packet
    1 packet received after close
    0 discarded for bad checksums
    0 discarded for bad header offset fields
    0 discarded because packet too short
    207 connection requests
    12 connection accepts
    0 bad connection attempts
    0 listen queue overflows
    219 connections established (including accepts)
    231 connections closed (including 9 drops)
    2 connections updated cached RTT on close
    2 connections updated cached RTT variance on close
    0 connections updated cached ssthresh on close
    0 embryonic connections dropped
    3222 segments updated rtt (of 3193 attempts)
    2 retransmit timeouts
    0 connections dropped by rexmit timeout
    0 persist timeouts
    0 connections dropped by persist timeout
    0 keepalive timeouts
    0 keepalive probes sent
    0 connections dropped by keepalive
    2199 correct ACK header predictions
    4128 correct data packet header predictions
    0 SACK recovery episodes
    0 segment rexmits in SACK recovery episodes
    0 byte rexmits in SACK recovery episodes
    0 SACK options (SACK blocks) received
    275 SACK options (SACK blocks) sent
    0 SACK scoreboard overflow
    udp:
    360 datagrams received
    0 with incomplete header
    0 with bad data length field
    0 with bad checksum
    21 dropped due to no socket
    65 broadcast/multicast datagrams dropped due to no socket
    0 dropped due to full socket buffers
    0 not for hashed pcb
    274 delivered
    390 datagrams output
    ip:
    8278 total packets received
    0 bad header checksums
    0 with size smaller than minimum
    0 with data size < data length
    0 with ip length > max ip packet size
    0 with header length < data size
    0 with data length < header length
    0 with bad options
    0 with incorrect version number
    0 fragments received
    0 fragments dropped (dup or out of space)
    0 fragments dropped after timeout
    0 packets reassembled ok
    8278 packets for this host
    0 packets for unknown/unsupported protocol
    0 packets forwarded (0 packets fast forwarded)
    0 packets not forwardable
    0 packets received for unknown multicast group
    0 redirects sent
    7869 packets sent from this host
    0 packets sent with fabricated ip header
    0 output packets dropped due to no bufs, etc.
    8 output packets discarded due to no route
    0 output datagrams fragmented
    0 fragments created
    0 datagrams that can't be fragmented
    0 tunneling packets that can't find gif
    0 datagrams with bad address in header

  • Trouble with songs that have no albums

    Hey,
    I have a new video ipod, but I'm having a bit of trouble with the feature where, when you click on an artist with only one album, it goes directly to the list of songs in that album, instead of the list of the albums. The issue is with artists where I have one full labeled album and another song or two not in the album with the Album field left blank. When I click on the artist, it goes directly to the list of songs on the one album I have, making it impossible to access the song that isn't in the album. You can only get to it by going to the list of all the songs on the ipod. Is there anyway to fix this, or disable the feature that goes directly to the album tracks when you only have one album for an artist? Thanks!
    Sorry if that's unclear, here's a sample of the problem (artist - album - song)
    Leonard Cohen - Various Positions - Dance Me to the End of Love
    Leonard Cohen - Various Positions - Coming Back To You
    Leonard Cohen - Various Positions - The Law
    Leonard Cohen - Various Positions - Night Comes On
    Leonard Cohen - Various Positions - Hallelujah
    Leonard Cohen - Various Positions - The Captain
    Leonard Cohen - Various Positions - Hunter's Lullaby
    Leonard Cohen - Various Positions - Heart With No Companion
    Leonard Cohen - Various Positions - If It Be Your Will
    Leonard Cohen - Hallelujah
    That last Hallelujah (a different version than the album one) is the one that's impossible to find.

    Thanks! It's not a neat solution, but until the apple guys fix this problem in the software I guess it's what I'll have to go with.

  • Code to block PR and PO with item that have exceeded budget

    Hi Gurus,
    We need to control purchasing for a client. We've decided to write code that will do the following:
    => Block PR or PO that contains line item that belongs to cost element that has exceeded the planned cost in T-Code s_alr_87013611.
    => PR or PO can only be released if Planned cost is updated.
    I want to know if the above is possible and it is, I need to be able to explain what I want using technical terms to an ABAPer.

    Yes Antony.
    I've already done that.
    We are discussing the possibility to block, in a standard way, holding POs created with reference to PRs already ordered in full
    Any ideas please ?
    Regards,
    Bahia.
    Edited by: Bahia M. on Mar 9, 2010 2:17 PM

  • What is the best way to export and import updates between WSUS servers for specific KB's with environments that have different data sets?

    We are under strict regulations and monitoring at my company. Because of this, we have to define what updates are being installed during a patch cycle by KB Article. Two production networks and one test network. The installed updates have to be the exact
    same in the test environment, run for a few days with no problems, and then we install them in our production networks. The issue is, not all of the software in the environments is identical.
    I need to figure out a way to take failed/needed updates from production that are unapproved, export that list so I can approve all of those updates in the test env.. Then once I approve those and any other needed updates in test, I need to be able to export
    all approved updates from the test env (which includes the needed ones from production) and import those approvals in production.
    How can this be done?
    Thanks!

    the easiest way will be to use a single wsus infrastructre for all your environments.
    Tis blog article explains how to duplicate the approvals over groups:
    https://thwack.solarwinds.com/community/application-and-server_tht/patchzone/blog/2013/08/06/duplicating-approvals-from-a-test-group-to-a-production-group
    MCP/MCSA/MCTS/MCITP

Maybe you are looking for

  • Unknown error (-48) Huh?

    Help. when I connect the iPod it's recognized but says "the iPod cannot be synced. An unknown error occurred (-48). Any ideas?

  • How to smoothly scale movieclip while moving it towards viewer?

    Hi, I have a movieclip (mstone) depicting a signpost, which is within another movieclip (graphic1). I am trying to scale mstone to increase by about 44%, and it needs to move along the screen in such as manner that it is moving towards the user. Some

  • How do I auire data at every third pulse of an external trigger?

    I need to aquire 2048 data points where each one is triggered by the third pulse of an external trigger (TTL). Currently I can aquire 2048 data points where each is triggered by every pulse of an external trigger but I need to be able to do this at e

  • Table Linking Activities with Activity Journal

    Hello All, I need to know the table link between the activity number and the details like material code, material description which is stored in the activity journal of the transaction type. Kind Regards Atul

  • Firefox does not open after Windows 7 updates

    After Windows 7 updates installed, Firefox 4.0.1 refuses to start. I click on the shortcut, the hourglass (blue circle in Windows 7) pops up for a couple of seconds, then it goes away, and no Firefox. Chrome and IE work fine. I have followed the tips