Counting Record Totals Within Query: Totals Output to New Table

Hi All,
I'm failry new to PL/SQL... my apologies if this is obvious... I'm trying to count the total number of BI_WRKFLW.BI_LMN_SRV_AREA occurences by each BI_WRKFLW.BI_LMN_SRV_AREA (The Code correspondes to a city name like Sundance, Sheridan, Etc.)
So, I have a Query that executes fine:
Query
/* Begin Querey */
                SELECT DISTINCT
                    "BI_SO_DET_VIEW_1"."BI_SO_STAT_CD",
                    "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED",
                    "BI_TYPE_SERVICE"."BI_ACCT",
                    "BI_SO_DET_VIEW_1"."BI_SO_NBR",
                    "BI_LMN_SRV_REF"."BI_LMN_SRV_DESC",
                    "BI_SO_TYPE_REF"."BI_SO_TYPE_DESC",
                    "BI_SRV_STAT_REF"."BI_SRV_STAT_DESC",
                    "BI_DIST_OFC_REF"."BI_DIST_NAME",
                    "BI_CNTY_REF"."BI_COUNTY_DESC",
                    "BI_SO_DET_VIEW_1"."BI_CLOSE_DT",
                    "BI_WRKFLW_TASKS"."BI_EVENT_DT_TM",
                    "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD",
                    "BI_LMN_SRV_REF"."BI_LMN_SRV_AREA",
                    "BI_SO_MASTER"."BI_WO_WORKORD"
                FROM
                    ((((((((("XXXXXX"."BI_SO_MASTER" "BI_SO_MASTER"
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SO_DET_VIEW_1" "BI_SO_DET_VIEW_1"
                ON
                    "BI_SO_MASTER"."BI_SO_NBR"="BI_SO_DET_VIEW_1"."BI_SO_NBR")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_TYPE_SERVICE" "BI_TYPE_SERVICE"
                ON
                    "BI_SO_DET_VIEW_1"."ACCT_NBR"="BI_TYPE_SERVICE"."BI_ACCT")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_WRKFLW" "BI_WRKFLW"
                ON
                    "BI_SO_DET_VIEW_1"."BI_WRKFLW_KEY"="BI_WRKFLW"."BI_WRKFLW_KEY")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SO_TYPE_REF" "BI_SO_TYPE_REF"
                ON
                    "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"="BI_SO_TYPE_REF"."BI_SO_TYPE_CD")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_WRKFLW_TASKS" "BI_WRKFLW_TASKS"
                ON
                        "BI_WRKFLW"."BI_WRKFLW_KEY"="BI_WRKFLW_TASKS"."BI_WRKFLW_KEY")
                AND (
                        "BI_WRKFLW"."BI_WORK_EVENT_CD"="BI_WRKFLW_TASKS"."BI_WORK_EVENT_CD"))
                LEFT OUTER JOIN
                    "XXXXXX"."BI_DIST_OFC_REF" "BI_DIST_OFC_REF"
                ON
                    "BI_WRKFLW"."BI_DIST_OFC_CD"="BI_DIST_OFC_REF"."BI_DIST_OFC_CD")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_LMN_SRV_REF" "BI_LMN_SRV_REF"
                ON
                    "BI_WRKFLW"."BI_LMN_SRV_AREA"="BI_LMN_SRV_REF"."BI_LMN_SRV_AREA")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SRV_LOC" "BI_SRV_LOC"
                ON
                    "BI_TYPE_SERVICE"."BI_SRV_LOC_NBR"="BI_SRV_LOC"."BI_SRV_LOC_NBR")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SRV_STAT_REF" "BI_SRV_STAT_REF"
                ON
                    "BI_TYPE_SERVICE"."BI_SRV_STAT_CD"="BI_SRV_STAT_REF"."BI_SRV_STAT_CD")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_CNTY_REF" "BI_CNTY_REF"
                ON
                    "BI_SRV_LOC"."BI_CNTY_CD"="BI_CNTY_REF"."BI_CNTY_CD"
                WHERE
                        "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='001'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='001NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='010'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='010NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='011'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='011NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='020'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='020NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='030'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='040'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='041'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='050'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='050A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='051'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='051A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='080'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='085'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='085NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='108'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='140'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='141'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='400'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='401'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='450'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='450A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='451'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='451A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='452'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='452A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='453'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='453A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='460'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='RHR'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='RHRNS')
                AND "BI_SO_DET_VIEW_1"."BI_SO_STAT_CD"='O'
                AND (
                        "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='ANNEXATION'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='AVIAN'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CAPVERIF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CBMRETIRE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CBMSERVCHG'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CONTSERVD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CUSTBLD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CUTOFF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='DVCM'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='ENERGIZE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='EQUIPCHANG'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='EQUIPVALID'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='HIGHLOAD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='LOCATE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='MAINT-EQ'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='MSYSTEMMGT'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='NCBM'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='NEWRES-WF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='NEW-WF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='POWER QUAL'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RECONIDLE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RECVERIF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RETIRE1'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RETIRE2'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SERVCHANGE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SPECIALPRJ'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SUBD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SYSTEMMGT'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='TREE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='TRFX')
                ORDER BY
                    "BI_LMN_SRV_REF"."BI_LMN_SRV_DESC" DESC,
                    "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"
                    /* End Querey */That is wrapped within a counting Block that is giving me trouble:
SELECT
    WOCOUNT.Office,
    WOCOUNT.WOCOUNT
FROM
        SELECT
            CASE
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '1'
                THEN '1-SUNDANCE'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '2'
                THEN '2-GILLETTE'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '3'
                THEN '3-SHERIDAN'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '4'
                THEN '4-West/Central'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '5'
                THEN '5-East/Central'
                ELSE '0-OTHER'
            END                                AS Office,
            COUNT (T1.BI_LMN_SRV_AREA ) AS WOCOUNT
        FROM
                /* Begin Querey */
                /* End Querey */
            ) T2
        JOIN
            BI_SO_DET_VIEW_1
        ON
            T2.BI_WRKFLW_KEY = BI_SO_DET_VIEW_1.BI_WRKFLW_KEY
        GROUP BY
            BI_WRKFLW.BI_LMN_SRV_AREA
             )WOCOUNTThis is the 2 blocks together:
SELECT
    WOCOUNT.Office,
    WOCOUNT.WOCOUNT
FROM
        SELECT
            CASE
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '1'
                THEN '1-SUNDANCE'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '2'
                THEN '2-GILLETTE'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '3'
                THEN '3-SHERIDAN'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '4'
                THEN '4-West/Central'
                WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '5'
                THEN '5-East/Central'
                ELSE '0-OTHER'
            END                                AS Office,
            COUNT (T1.BI_LMN_SRV_AREA ) AS WOCOUNT
        FROM
                /* Begin Querey */
                SELECT DISTINCT
                    "BI_SO_DET_VIEW_1"."BI_SO_STAT_CD",
                    "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED",
                    "BI_TYPE_SERVICE"."BI_ACCT",
                    "BI_SO_DET_VIEW_1"."BI_SO_NBR",
                    "BI_LMN_SRV_REF"."BI_LMN_SRV_DESC",
                    "BI_SO_TYPE_REF"."BI_SO_TYPE_DESC",
                    "BI_SRV_STAT_REF"."BI_SRV_STAT_DESC",
                    "BI_DIST_OFC_REF"."BI_DIST_NAME",
                    "BI_CNTY_REF"."BI_COUNTY_DESC",
                    "BI_SO_DET_VIEW_1"."BI_CLOSE_DT",
                    "BI_WRKFLW_TASKS"."BI_EVENT_DT_TM",
                    "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD",
                    "BI_LMN_SRV_REF"."BI_LMN_SRV_AREA",
                    "BI_SO_MASTER"."BI_WO_WORKORD"
                FROM
                    ((((((((("XXXXXX"."BI_SO_MASTER" "BI_SO_MASTER"
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SO_DET_VIEW_1" "BI_SO_DET_VIEW_1"
                ON
                    "BI_SO_MASTER"."BI_SO_NBR"="BI_SO_DET_VIEW_1"."BI_SO_NBR")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_TYPE_SERVICE" "BI_TYPE_SERVICE"
                ON
                    "BI_SO_DET_VIEW_1"."ACCT_NBR"="BI_TYPE_SERVICE"."BI_ACCT")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_WRKFLW" "BI_WRKFLW"
                ON
                    "BI_SO_DET_VIEW_1"."BI_WRKFLW_KEY"="BI_WRKFLW"."BI_WRKFLW_KEY")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SO_TYPE_REF" "BI_SO_TYPE_REF"
                ON
                    "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"="BI_SO_TYPE_REF"."BI_SO_TYPE_CD")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_WRKFLW_TASKS" "BI_WRKFLW_TASKS"
                ON
                        "BI_WRKFLW"."BI_WRKFLW_KEY"="BI_WRKFLW_TASKS"."BI_WRKFLW_KEY")
                AND (
                        "BI_WRKFLW"."BI_WORK_EVENT_CD"="BI_WRKFLW_TASKS"."BI_WORK_EVENT_CD"))
                LEFT OUTER JOIN
                    "XXXXXX"."BI_DIST_OFC_REF" "BI_DIST_OFC_REF"
                ON
                    "BI_WRKFLW"."BI_DIST_OFC_CD"="BI_DIST_OFC_REF"."BI_DIST_OFC_CD")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_LMN_SRV_REF" "BI_LMN_SRV_REF"
                ON
                    "BI_WRKFLW"."BI_LMN_SRV_AREA"="BI_LMN_SRV_REF"."BI_LMN_SRV_AREA")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SRV_LOC" "BI_SRV_LOC"
                ON
                    "BI_TYPE_SERVICE"."BI_SRV_LOC_NBR"="BI_SRV_LOC"."BI_SRV_LOC_NBR")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_SRV_STAT_REF" "BI_SRV_STAT_REF"
                ON
                    "BI_TYPE_SERVICE"."BI_SRV_STAT_CD"="BI_SRV_STAT_REF"."BI_SRV_STAT_CD")
                LEFT OUTER JOIN
                    "XXXXXX"."BI_CNTY_REF" "BI_CNTY_REF"
                ON
                    "BI_SRV_LOC"."BI_CNTY_CD"="BI_CNTY_REF"."BI_CNTY_CD"
                WHERE
                        "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='001'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='001NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='010'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='010NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='011'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='011NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='020'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='020NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='030'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='040'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='041'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='050'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='050A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='051'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='051A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='080'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='085'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='085NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='108'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='140'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='141'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='400'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='401'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='450'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='450A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='451'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='451A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='452'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='452A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='453'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='453A'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='460'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='RHR'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='RHRNS')
                AND "BI_SO_DET_VIEW_1"."BI_SO_STAT_CD"='O'
                AND (
                        "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='ANNEXATION'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='AVIAN'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CAPVERIF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CBMRETIRE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CBMSERVCHG'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CONTSERVD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CUSTBLD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='CUTOFF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='DVCM'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='ENERGIZE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='EQUIPCHANG'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='EQUIPVALID'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='HIGHLOAD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='LOCATE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='MAINT-EQ'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='MSYSTEMMGT'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='NCBM'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='NEWRES-WF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='NEW-WF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='POWER QUAL'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RECONIDLE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RECVERIF'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RETIRE1'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='RETIRE2'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SERVCHANGE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SPECIALPRJ'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SUBD'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='SYSTEMMGT'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='TREE'
                    OR  "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"='TRFX')
                ORDER BY
                    "BI_LMN_SRV_REF"."BI_LMN_SRV_DESC" DESC,
                    "BI_SO_DET_VIEW_1"."BI_SO_TYPE_CD"
                    /* End Querey */
            ) T2
        JOIN
            BI_SO_DET_VIEW_1
        ON
            T2.BI_WRKFLW_KEY = BI_SO_DET_VIEW_1.BI_WRKFLW_KEY
        GROUP BY
            BI_WRKFLW.BI_LMN_SRV_AREA
             )WOCOUNTThe last error I received is: [Error Code: 904, SQL State: S0022] [Oracle][ODBC][Ora]ORA-00904: "T2"."BI_WRKFLW_KEY": invalid identifier
I want the final Output to be something similar to:
OFFICE          WOCOUNT 
0-OTHER         44.0       
1-SUNDANCE      14.0     
2-GILLETTE      29.0       
3-SHERIDAN      11.0        
4-West/Central  37.0       
5-East/Central  58.0       Thanks for your help,
:) John

Hi, John,
Johnbr (Oracle11G) wrote:
Hi All,
I'm failry new to PL/SQL... That's okay; there's no PL/SQL involved in this problem, and there's no PL/SQL needed, only SQL.
That is wrapped within a counting Block that is giving me trouble:
SELECT
WOCOUNT.Office,
WOCOUNT.WOCOUNT
FROM
SELECT
CASE
WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '1'
THEN '1-SUNDANCE'
WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '2'
THEN '2-GILLETTE'
WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '3'
THEN '3-SHERIDAN'
WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '4'
THEN '4-West/Central'
WHEN "BI_WRKFLW"."BI_LMN_SRV_AREA" = '5'
THEN '5-East/Central'
ELSE '0-OTHER'
END                                AS Office,
COUNT (T1.BI_LMN_SRV_AREA ) AS WOCOUNT
FROM
/* Begin Querey */
/* End Querey */
) T2
JOIN
BI_SO_DET_VIEW_1
ON
T2.BI_WRKFLW_KEY = BI_SO_DET_VIEW_1.BI_WRKFLW_KEY
GROUP BY
BI_WRKFLW.BI_LMN_SRV_AREA
)WOCOUNT
The sub-query called wocount only involves 2 "tables", namely
(1) T2
(2) BI_SO_DET_VIEW_1
(I put "tables" in quotes because T2 isn't really a table; it's an in-line view. Judging by the name, I'm guessing BI_SO_DET_VIEW_1 isn't really a table, either, but it doesn't matter. You have 2 things that serve as tables, so I'll just call them tables.)
Since those are the only 2 tables, you can't reference BI_WRKFLW in WOCOUNT. That table is known inside T2, but not outside of T2.
You can include "BI_WRKFLW"."BI_LMN_SRV_AREA" in the SELECT clause of T2, assuming that doesn't make more rows distinct. T2 will then look like this:
...             SELECT DISTINCT
                    BI_SO_DET_VIEW_1.BI_SO_STAT_CD
                    BI_SO_MASTER.BI_WO_WORKORD,
              BI_WRKFLW.BI_LMN_SRV_AREA          -- New column added
                FROM ...Then, inside WOCOUNT, you can use BI_LMN_SRV_AREA like this:
...         CASE
                WHEN BI_LMN_SRV_AREA = '1'
                THEN '1-SUNDANCE'
                WHEN BI_LMN_SRV_AREA = '2'
                THEN '2-GILLETTE'
                WHEN BI_LMN_SRV_AREA = '3'
                THEN '3-SHERIDAN'
                WHEN BI_LMN_SRV_AREA = '4'
                THEN '4-West/Central'
                WHEN BI_LMN_SRV_AREA = '5'
                THEN '5-East/Central'
                ELSE '0-OTHER'
            END                                AS Office,or, to save a little typing:
...         CASE  BI_LMN_SRV_AREA
                WHEN  '1'
                THEN '1-SUNDANCE'
                WHEN '2'
                THEN '2-GILLETTE'
                WHEN '3'
                THEN '3-SHERIDAN'
                WHEN '4'
                THEN '4-West/Central'
                WHEN '5'
                THEN '5-East/Central'
                ELSE '0-OTHER'
            END                                AS Office, 
Speaking of saving on typing:
Instead of
WHERE
                        "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='001'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='001NS'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='010'
                    OR  "BI_TYPE_SERVICE"."BI_PRIM_RATE_SCHED"='RHRNS'
              )you can use the IN operator, like this:
WHERE              BI_TYPE_SERVICE.BI_PRIM_RATE_SCHED  IN ('001', '001NS', '010', ..., 'RHRNS') 
I hope this answers your question.
If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
Simplify the problem as much as possible. For example, you would probably have the same problem if there were only 2 o4 3 tables involved in your query. Try to construct a problem that only has 2 or 3 tables, and post only those tables, and the results you want from them.
Explain, using specific examples, how you get those results from that data.
Always say which version of Oracle you're using.

Similar Messages

  • Counting records in a query

    Hello all,
    I have a question about the counting of records in a query.
    Below, there is the source data.
    material plant date stock quantity
    X 1 05.2006 10
    X 1 06.2006 0
    X 2 05.2006 15
    X 2 04.2006 20
    Y 1 05.2006 5
    And with "How to Count the occurrences ..." guide , i created the following query.
    material quantity number of plants with stock
    X 45 2
    Y 5 1
    My question is in the second step , is it possible in the same query to get the following result for a given date ?
    If this is not the case, how can I resolve this ?
    material quantity nb of plants with stck nb of plants with stck >= 15
    X 45 2 1 (10 for 1 and 35 for 2)
    Y 5 1 0
    Thanks&Regards
    Burak

    Create a display item to hold the count value. Then open the data block properties and under advanced database set precompute summaries to "yes". Then in your display item properties set the summary function to count; the summarized block to the block_name; and summarized item to any block item you would like to count.
    Hope this is clear and what you are looking for.
    Cheers.

  • Need a procedure to make minus query as output for 2 tables

    Can anybody help me to create a procedure so that I could get minus query of 2 table as a result.
    Requirement:
    I have two table 1- src_table_list ,2- tgt_table_list both tables have 2 columns : serial_no,table_name and 100 records each. and details mentioned in column "table_name" are actually tables name which present in my testing database.
    so I need one procedure which will pick one table_name from src_table_list and one table_name from tgt_table_name each time recursively and provide minus query as a result. as below.
    select c1,c2,c3,c4 from table1 --(fetched from src_table_list)
    minus
    select b1,b2,b3,b4 from table2 --(fetched from tgt_table_list)
    Can any body give or help me to create the procedure..as I have to prepare minus query for more than 200 tables and then I need to test them for integration testing..
    Edited by: 974253 on Nov 30, 2012 5:39 AM

    select 'select '||chr(39)||src_table_list.tblname||chr(39)||','||chr(39)||trg_table_list.tblname||chr(39)||',count(*) from '||' ( select * from '||src_table_list.tblname||'minus select * from '||trg_table_list.tblname||');'
    from src_table_list, trg_table_list
    WHERE src_table_list.serial_no = tgt_table_list.serial_no
    The above statement should give output similar to below code and will list down all the table names in the 2 tables(i.e. above src and trg) -
    select 'src_table_list.tbl1','trg_table_list.tbl1',count(*) from
    (select col1, col2 from src_table_list.tbl1 minus select col1, col2 from trg_table_list.tbl1 );
    select 'src_table_list.tbl2','trg_table_list.tbl2',count(*) from
    (select col1, col2 from src_table_list.tbl2 minus select col1, col2 from trg_table_list.tbl2 );
    Now atleast you can run these statements as script and get to know what all tables are having count differences.
    I might have missed out on some syntax part in above code but hope to have helped you in some way as you will be specific with number of tables to check for differences.

  • Count record total on Top side

    Hi Gurus,
    i have a issue in my BIP report. I have to display total records info on Top place. for example
    Category - It is a Group
    Subcategory --it is also group
    Total: 3 -----------------------------------> i have to display SNO records here (here it contains 3 records, so it has to display 3)
    SNO status
    1 4
    2 2
    3 1
    subcategory -- Group here
    Total: 4--------------------------------> because it contains 4 records it has to display 4
    SNO Status
    1 2
    2 3
    3
    4
    when i put Total bottom place it is working fine. Please help me.
    Thanks,
    vas

    Can you send me the xml file and RTF to [email protected]?
    Thanks,
    Bipuser

  • Counting records after a query

    I am running a query and I want to display the number of records retrieved during the query. I have researched the COUNT_QUERY built-in and tried to assign the value returned by this built-in to a variable. (It doesn't work.) I have used the the following statement within the WHEN-BUTTON-PRESSED trigger for a Push Button on my form:
    SELECT COUNT(:BLOCK.ITEM)
    INTO :BLOCK.ITEM2
    FROM DUAL;
    This statement is not providing a valid number for the number of records returned.
    Is there a function that I can use to count the number of records returned from a query?

    Create a display item to hold the count value. Then open the data block properties and under advanced database set precompute summaries to "yes". Then in your display item properties set the summary function to count; the summarized block to the block_name; and summarized item to any block item you would like to count.
    Hope this is clear and what you are looking for.
    Cheers.

  • Mail merge doesn't see all records in Access query

    Office 13 running on Win 8.1.
    I have a query in Access that show 4 records when I run it. If I specify this query as my data source (select recipients) and then choose to edit the recipient list, there are only two records! The query in Access looks like this:
    SELECT Membership.[m-nbr], Membership.[m-first], Membership.[m-member-since], Membership.[m-pick], Contact.[c-zip], Regions.[r-region-name], Regions.[r-region-director], Regions.[r-region-email], Membership.[m-member-since], Associates.[a-first-name], Associates.[a-id]
    FROM ((Membership INNER JOIN Contact ON Membership.[m-nbr] = Contact.[c-nbr]) INNER JOIN (Regions INNER JOIN [Region/State] ON Regions.[r-region] = [Region/State].[rs-region]) ON Contact.[c-state] = [Region/State].[rs-state]) LEFT JOIN Associates ON Membership.[m-nbr]
    = Associates.[a-nbr]
    WHERE (((Membership.[m-pick])=True) AND ((Associates.[a-id]) Like "*A" Or (Associates.[a-id]) Is Null) AND ((Year([m-member-since]))=Year(Date())))
    ORDER BY Contact.[c-zip]; 
    If I remove this part: "((Associates.[a-id) Like "*A" Or (Associates.[a-id] is Null AND" then all 4 records show up in the recipient list.
    In short, members can have multiple associates, but only the"A" associate is to be included in this letter. (associates have the same number as the member, with an a,b,c etc. appended. A member number could be 8741 and an associate number 8741A. 
    Why is this happening? Thanks, ~Steve
    Steve Woodward

    Hmm, I tend to work in SQL mode when creating queries in Access - in that case, it doesn't change what you write. But I see that in the tabular Design mode it does change to ALIKE and that it works OK - something I wasn't aware of. I read that ALIKE is supposed
    to allow "%" and "_" even when the database is in "Jet mode. 
    FWIW in ANSI mode, I would not expect LIKE "%a" to work in Access but it should work from OLE DB
    But in any case, it still works OK here, so still not sure what is wrong.
    As a workaround, it might be necessary either to export the query results from Access, then use the exported data as your source, use the query to create a new table and use that as the data source, or connect using DDE (to do that, in Word, you have to
    check Options->Advanced->General->Confirm file format conversion on open. Then go through the connection process again and select the .accdb/.mdb. If it's a .accdb, you will have also have to check "Show all" when you get to the "Confirm Data Source"
    dialog box. At that point, you need to select the "MS Access Databases via DDE" option from the list (even if you have a .accdb, which isn't listed in the file types for that connection method).
    All of these approaches have their disadvantages (e.g. DDE may not connect easily and probably won't return Unicode data correctly) but may at least give you another avenue of investigation.
    Peter Jamieson

  • Join multiple output tables of BAPI into new table

    Hi,
    In my model (VC 7.0), I have a BAPI which outputs two different tables. Tables have many multiple records. Each table has several fields and a common field also. I want to combine these tables into one table form. I used the following methods and result are :
    1. I tried to connect output tables to one table form but no success. Because table form allows only one table input.
    2. I put a combine operator for output tables. No success. Although they're common field and multiple records but table form shows only one record? Where are the other record ?
    3. I put a union operator  for output tables. No success. Because union operator output only the common field. But I need the other fields from output tables in my table form.
    Will you please suggest what are the options available with me for joing output of both tables. I think combine operator should solve.
    Regards,
    Yiğit

    Hi,
    use this link to get your answer:
    Join two Table output to new table
    Otherwise you can try with this:
    1. Drag signal out from the first table. Select all the fields which you want to be pass in the final table.Make the first table as multiple selection one.
    2. Create one button in toolbar for the first table and give some proper name in action property.
    3. mentioned the same action name in the link between the signal out and the first table.
    4. follow the same steps for the second table also.
    5. then from compose choose two signal ins and drag them on the story board. Then give the same name as you have given the signal outs name.
    6. Mention all the fields as you have mentioned in the siganl outs.
    7. Add a combine operator with both the signal ins and combine a table with the outport of the combine operator.
    Save and deploy. I hope it will help you.
    Here, you have to select the rows which you want to visualize in the final output table.
    Regards,
    Nutan
    regards,
    Nutan

  • SQ02 InfoSet Get Count of Total Number of Records that will be processed

    I am developing a query (SQ01) and am currently working on building an InfoSet (SQ02). 
    The Infoset was set up using a 'Direct read of table'.  Next, I'm adding some various fields and then going to Extras and trying to define some code to get the total number of records that my query will be processing.  I'm not sure if SAP pulls a filtered result set into a temporary table (by default - if so how could I reference it?) that I can reference or is just pulling in a row at a time in the record processing code, but my question is in regards to getting a record count of how many records are returned in my result set PRIOR TO going through all of the records.
    Overall, I'd like to be able to have a field that says Record X of Y.  I can get the X part for each line, but cannot get 'Y' until the very end.  Any help or ideas would be much appreciated.  I've looked around a bunch, but haven't found anything like what I'm requesting.
    Query Output would look something like:
    Record X1 of Y | Title1 | Amount1
    Record X2 of Y | Title2 | Amount2

    Hi Subin,
         I have tossed around this idea in my head, but am trying to figure out how to get the values and selection options from the query screen to incorporate into my Select statement within my infoset.  The problem I'm running into is that my user enters a group of account numbers and an ending date that has to be pulled from the SQ01 query screen to the SQ02 infoset code.  I've looked around for examples on pulling the data from the query screen, but have been unsuccessful thus far.  Say for instance I have 15 specific accounts that the user is entering in and they want any records that have been submitted prior to the end of the current month and the start of the business year.
         On my query screen they would enter in something like
    Business Year:  2011
    Reporting End Date:  <= 31.03.2011 (Which equates to all records between 01.01.2011 AND 31.03.2011)
    Account #s:  0000, 0001, 0003, 0005, ..., 9999  (These are a variable amount of accounts entered and could include options such as not equal to or even between ranges etc)
    In my START-OF-SELECTION code I would need a select like:
    NOTE:  This is just a pseudo code format, not checked for syntax here
    SELECT count(*)
    FROM TABLE
    WHERE BusinessYear = '2011' AND
        RecordDate Between 01.01.2011 AND 31.03.2011 AND
        Accounts IN (0000, 0001, 0003, 0005, ..., 9999).
    So In this select I need to reference the values in the SQ01.  How would I reference the account #'s and whether or not the user has entered an account number and said Not Equal on it etc.  This select statement would have to be built on the fly, since it's not guaranteed to be the same for each run.
    Thanks,
    Mark

  • Pagination Displaying Count of Total Records available and Current Page

    Hi,
    I need to implement paging in one of our pages.
    The problem is we need to display the count of total number of records the search has resulted and the search results that fall into the current page.
    For e.g. If the search resulted in 100 records total and we are in page 5 (with 10 records per page), I need to display the count 100 on the top and records 51-50 in the page.
    How to get the count of fetched results without running a second SELECT COUNT(1) FROM ... clause.
    Is there a way to do this in a optimized way?
    Thanks

    How to get the count of fetched results without running a second SELECT COUNT(1) FROM ... clause.
    SQL> select cnt "Total", rn "Line", empno, ename, job
      from (select count (*) over () cnt, row_number () over (order by empno) rn,
                   empno, ename, job
              from emp)
    where rn between 4 and 6
         Total       Line      EMPNO ENAME      JOB     
            14          4       7566 JONES      MANAGER 
            14          5       7654 MARTIN     SALESMAN
            14          6       7698 BLAKE      MANAGER 

  • SQL query that counts records??

    I have an equipment maintenance table and I'm trying get a list of unique equipment IDs along with a count of total maintenance records for that peice of equipment.
    Say for instance the table is set up like this
    maintenance_table
    equipment_id varchar(20)
    maintenance_date DATE
    maintenancelog_id varchar(20)
    I'm trying to do something like
    SELECT DISTINCT equipment_id, (select count(*) from maintenance_table where equipment_id = "the one for this row"), maintenance_date from maintenance_table WHERE
    condition = 'something';
    The subquery works fine when I hard code an id in it, but I need it to be dynamic and show the correct count for each row.
    Can anyone help?
    Thanks,
    George

    SELECT equipment_id, count(*) from maintenance_table group by equipment_id;

  • OIB value for Total output drops

    Hi, we have a Cisco C7200P router at work running IOS 12.4(12.2r)T, and we monitor it using Zenoss 3.1. We want to be able to capture the total output drops for a Gigabit Ethernet interface. I created a custom monitoring template and I added the following data source:
    Name: cieIfOutputQueueDrops
    OIB: 1.3.6.1.4.1.9.9.276.1.1.1.1.11
    The total output drops as viewed via the CLI are as follows:
    Input queue: 0/75/1335749/399902 (size/max/drops/flushes); Total output drops: 53882894
    However the graph on Zenoss reports a completely different value of ~360M. Here is the output of snmpwalk:
    SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.1 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.2 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.3 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.4 = Counter32: 363270064 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.5 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.6 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.7 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.12 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.13 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.14 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.15 = Counter32: 653008 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.26 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.125 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.139 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.140 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.194 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.196 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.254 = Counter32: 0 SNMPv2-SMI::enterprises.9.9.276.1.1.1.1.11.288 = Counter32: 0
    The value it retunrs is incorrect. I would appreciate some assistance.

    Did you tried using ifOutDiscards (.1.3.6.1.2.1.2.2.1.19). These are counted as output drops as shown in the show interfaces command.
    It shows the number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space.
    For more details on interface couter please check following document :
    SNMP Counters: Frequently Asked Questions
    -Thanks
    Vinod
    **Encourage Contributors. RATE Them.**

  • What is "count = 0, total = 123" ?

    When compiling and to a lesser extent running, I get output like:
    C:\src>javac foo.java
    count = 0, total = 137
    count = 0, total = 137
    count = 0, total = 137
    C:\src>
    The number in "total" and the number of lines of this output vary.
    Any ideas where it comes from and how to shut it up?
    Thanks.

    Do you get this if foo.java does not exist?
    What happens if you just type
    javac
    ?C:\Documents and Settings\ahicken\My Documents>javac
    Usage: javac <options> <source files>
    where possible options include:
    -g Generate all debugging info
    -g:none Generate no debugging info
    -g:{lines,vars,source} Generate only some debugging info
    -nowarn Generate no warnings
    -verbose Output messages about what the compiler is doing
    -deprecation Output source locations where deprecated APIs are us
    ed
    -classpath <path> Specify where to find user class files
    -sourcepath <path> Specify where to find input source files
    -bootclasspath <path> Override location of bootstrap class files
    -extdirs <dirs> Override location of installed extensions
    -d <directory> Specify where to place generated class files
    -encoding <encoding> Specify character encoding used by source files
    -source <release> Provide source compatibility with specified release
    -target <release> Generate class files for specific VM version
    -help Print a synopsis of standard options
    C:\Documents and Settings\ahicken\My Documents>

  • Ho to count the total number of rows Sql Reporting Services Report Builder's Dataset after filteration based on parameter

    Hi to all,
                 I have parameter and data-set i.e consists of SharePoint List items,Data-set get's  filters and I need to count the total rows of the data-set i.e I get after filtration.
    Thanks, Quality Communication Provides Quality Work. Mohammad Siddiqali.

    Hi siddiqali,
    Thanks for the question and Destin Joy’s reply. Please try to add the filter in the dataset level rather than the data region
    level. Detail steps as below.
    1.      
    Double-click the dataset name in the Report Data window, click Filters in the left panel.
    2.      
    Click Add button, choose Admission Date in the Expression drop-down list. Type in the Value textbox with the parameter name: @selectDate.
    3.      
    Right-click the cell that your identified by the red circle, select Expression, type in it with:
    =CountRows("DataSetName")
    Thanks,
    Sharp Wang
    Please remember to mark the replies as answers if they help you and unmark them if they provide no help.

  • Increasing Total Output Drops number

    I have an autonomous Cisco AP1242 running on channel 11 (best channel avail) with only one client associated.
    Signal Strength and Channel Utilization look good.
    By design this client is constantly sending UDP/Multicast packets, so I had to disable IGMP Snooping on the AP. However, I have noticed data dropout and have been able to correlate it by running the command:
    show interface dot11radio 0
    Every-time I run the above command the Total Output Drops increases:
    Dot11Radio0 is up, line protocol is up
      Hardware is 802.11G Radio, address is 001c.b0eb.eb70 (bia 001c.b0eb.eb70)
      MTU 1500 bytes, BW 54000 Kbit, DLY 1000 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:00, output 00:00:00, output hang never
      Last clearing of "show interface" counters 00:37:46
      Input queue: 0/1127/0/0 (size/max/drops/flushes); Total output drops: 3178
      Queueing strategy: fifo
      Output queue: 0/30 (size/max)
      5 minute input rate 43000 bits/sec, 14 packets/sec
      5 minute output rate 92000 bits/sec, 17 packets/sec
         29799 packets input, 12551639 bytes, 0 no buffer
         Received 17376 broadcasts, 0 runts, 0 giants, 0 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 input packets with dribble condition detected
         41308 packets output, 25121942 bytes, 0 underruns
         0 output errors, 0 collisions, 0 interface resets
         0 unknown protocol drops
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier
         0 output buffer failures, 0 output buffers swapped out
    I cleared the statistics and ran the command after a few minutes.
    Any ideas what could be causing packets to be dropped?
    QOS is disabled on the AP.
    Thanks

    Hi,
    There is only one wireless client.
    Just took a 5 min Wireshark reading and it giving the following:
    Packets: 2286
    Avg. packets/sec: 7.729
    Avg packet size: 671.527 bytes
    Avg bytes/sec: 5190.457
    I am new to this. Is the above considered high volume for one client?
    I just compared a wired vs wireless captures... I am only losing packets on the wireless medium.
    When you say that the radio may not have enough buffer... are you reffering to wireless adapater or the Acess Point?
    Thanks

  • Count the total val of the column in matrix

    hi
    how to count the total value of the column in matrix
    eg:
    id     name     points
    10    sachin    100
    12     rama        80
    count the total points in the matrix
    180

    Hi Hareesh,
    Try This....
      Dim finaltot As Integer = 0
                    Dim i As Integer
                    For i = 1 To omatrix.RowCount
                        oedittot = omatrix.Columns.Item("points").Cells.Item(i).Specific
                        finaltot = finaltot + oedittot.value
                    Next
    Thanks
    Shafi

Maybe you are looking for

  • How to Show Total Calculation in Footer of Table

    Hi everyone, is it possible to show total calculation in footer of table in webdynpro ? For the calculation, I think i can handle it because many thread in forum and weblog discuss it but for show it in footer of table , i can't find. Display A B C D

  • Issues downloading Photoshop CC

    Hi all - I'm running on a Macbook Pro with OSX 10.6.8. I purchased a Creative Cloud membership in June for my freelance work and successfully downloaded Dreamweaver CS6 at that time. However, when I went to download Photoshop CC, I got the following

  • Problem with printing from Powerpoint 2007

    Am printing to pdf from Powerpoint 2007 (using Acrobat 8.1.4), using the Print>Select Printer>Adobe PDF route, but the pdfs that are being created look terrible (distorted, washed out colours, etc) and print even worse. Is there an incompatibility pr

  • Preview working very poorly

    Ugh.  Preview is driving me crazy.  Been this way for a while since upgrading to Mavericks (make that updating).  Cannot scroll through a PDF, and when I try and add notes on a post-it, the text on the screen is so slow that what appears is like 20 k

  • Date table accross the year with a union all query

    Hi I'm trying to create a table in SQL that will show the Output Values acrross the year. I'm basically trying to change a date range of BETWEEN  '2014-01-01' AND '2014-01-30' as Jan show the Columns look like the below. Jan Feb March April May June