Collection member update

Once I delete a computer account from Active Directory how long before it is removed from SCCM?

It depends what you have set in the Site Maintenance for your environment. 
Check the values for Delete Aged Discovery Data and Delete Inactive Client Discovery Data. By default Delete Aged Discovery Data is set to 90 days whilst Delete Inactive Client Discovery Data is switched off.
They have slight differences in the resources that they will remove. Delete Aged Discovery Data  removes any resources record whilst Delete Inactive Client Discovery Data removes resources only that have SCCM clients - this uses heartbeat
discovery to determine so set heartbeat to less than the Inactive Client Discovery Data number of days.
Delete Aged Discovery Data uses all discovery methods to determine if the record should be removed.
Cheers
Paul | sccmentor.wordpress.com

Similar Messages

  • Cannot Load the iTones Store page from iTones and collect apps Update

    My iTune account and credit card am belonging to Hong Kong, but often travel to different countries. I have recently purchased iPhone and MacBook Pro, and also purchased some apps when I was staying in Hong Kong.
    This week I visit Singapore and noticed that there are two purchased apps has update. When I click "Update All", it said it was disallowed for my account to download apps in Singapore.
    After studying a lot of discussion thread, I think I neglected an important legal term that I cannot purchase or rental apps outside Hong Kong.
    However, here I am not trying to access Singapore iTunes apps store, but only visit Hong Kong iTunes apps store. Would there be any possible way for me to only visit Hong Kong iTunes apps store and purchase or collecting apps update?
    Right now, I even cannot use iTunes to access iTunes apps store home page. The loading of the iTunes apps store page would stop in the middle. Perhaps iTunes would really check my own public ip address. I connect to internet through Singapore local carrier 3G data access.
    Now, many people in the world would travel or even move between countries frequently. Most of Apple fans are willing to spend money on valuable apps, songs or movies. It is pretty ridiculous for blocking us accessing other countries' iTunes store. Even it is copy right issues, at least it should allow me to access my own country iTunes apps store, when I am physically staying at oversea.
    Please help suggest me any kind of solution for my situation.

    After a month and I am back to Hong Kong, I called to local AppleCare for assistance. Finally my problem has to be fixed by resetting iTunes preference. Here below is the procedure:
    0. Quit iTunes application
    1. Click the Finder icon in the Dock.
    2. Choose Go to Folder from the Go menu.
    3. Type /Library/Preferences
    4. Click Go.
    5. In the Finder window, locate the file named com.apple.iTunes.*
    6. Drag all those com.apple.iTunes.* files to desktop or trash
    7. Open iTunes application
    8. Follow the instruction to setup the iTunes again by clicking Yes
    9. After loading all your original audio files, click to iTunes store and try Sign In
    With above procedures, now I can access to iTunes and sign in with my account.
    AppleCare also said this is part of regular iTunes troubleshooting procedure. She guided me to open a new testing user account in my Mac and open iTunes there. I found that I can access to iTunes Store and sign in with my account. Therefore, it means the iTunes access issue is not because of my computer internet connection issue, but related to my own Mac account iTunes preference setting. That's why she guided me with above procedure to reset iTunes preference.
    She said there is a lot of solution about (-50) error documented in "http://support.apple.com/kb/TS3288".
    I appreciate very much for this AppleCare technical support. She is so nice and patient for giving me instruction step by step. However, I forgot what her name is. She is worth for being praised.

  • Need help with Bulk Collect ForAll Update

    Hi - I'm trying to do a Bulk Collect/ForAll Update but am having issues.
    My declarations look like this:
         CURSOR cur_hhlds_for_update is
            SELECT hsh.household_id, hsh.special_handling_type_id
              FROM compas.household_special_handling hsh
                 , scr_id_lookup s
             WHERE hsh.household_id = s.id
               AND s.scr = v_scr
               AND s.run_date = TRUNC (SYSDATE)
               AND effective_date IS NULL
               AND special_handling_type_id = 1
               AND created_by != v_user;
         TYPE rec_hhlds_for_update IS RECORD (
              household_id  HOUSEHOLD_SPECIAL_HANDLING.household_id%type,
              spec_handl_type_id HOUSEHOLD_SPECIAL_HANDLING.SPECIAL_HANDLING_TYPE_ID%type
         TYPE spec_handling_update_array IS TABLE OF rec_hhlds_for_update;
         l_spec_handling_update_array  spec_handling_update_array;And then the Bulk Collect/ForAll looks like this:
           OPEN cur_hhlds_for_update;
           LOOP
            FETCH cur_hhlds_for_update BULK COLLECT INTO l_spec_handling_update_array LIMIT 1000;
            EXIT WHEN l_spec_handling_update_array.count = 0;
            FORALL i IN 1..l_spec_handling_update_array.COUNT
            UPDATE compas.household_special_handling
               SET effective_date =  TRUNC(SYSDATE)
                 , last_modified_by = v_user
                 , last_modified_date = SYSDATE
             WHERE household_id = l_spec_handling_update_array(i).household_id
               AND special_handling_type_id = l_spec_handling_update_array(i).spec_handl_type_id;
              l_special_handling_update_cnt := l_special_handling_update_cnt + SQL%ROWCOUNT;         
          END LOOP;And this is the error I'm receiving:
    ORA-06550: line 262, column 31:
    PLS-00436: implementation restriction: cannot reference fields of BULK In-BIND table of records
    ORA-06550: line 262, column 31:
    PLS-00382: expression is of wrong type
    ORA-06550: line 263, column 43:
    PL/SQL: ORA-22806: not an object or REF
    ORA-06550: line 258, column 9:
    PL/SQL: SQMy problem is that the table being updated has a composite primary key so I have two conditions in my where clause. This the the first time I'm even attempting the Bulk Collect/ForAll Update and it seems like it would be straight forward if I was only dealing with a single-column primary key. Can anyone please help advise me as to what I'm missing here or how I can accomplish this?
    Thanks!
    Christine

    You cannot reference a column inside a record when doin a for all. You need to refer as a whole collection . So you will need two collections.
    Try like this,
    DECLARE
       CURSOR cur_hhlds_for_update
       IS
          SELECT hsh.household_id, hsh.special_handling_type_id
            FROM compas.household_special_handling hsh, scr_id_lookup s
           WHERE hsh.household_id = s.ID
             AND s.scr = v_scr
             AND s.run_date = TRUNC (SYSDATE)
             AND effective_date IS NULL
             AND special_handling_type_id = 1
             AND created_by != v_user;
       TYPE arr_household_id IS TABLE OF HOUSEHOLD_SPECIAL_HANDLING.household_id%TYPE
                                   INDEX BY BINARY_INTEGER;
       TYPE arr_spec_handl_type_id IS TABLE OF HOUSEHOLD_SPECIAL_HANDLING.SPECIAL_HANDLING_TYPE_ID%TYPE
                                         INDEX BY BINARY_INTEGER;
       l_household_id_col         arr_household_id;
       l_spec_handl_type_id_col   arr_spec_handl_type_id;
    BEGIN
       OPEN cur_hhlds_for_update;
       LOOP
          FETCH cur_hhlds_for_update
            BULK COLLECT INTO l_household_id_col, l_spec_handl_type_id_col
          LIMIT 1000;
          EXIT WHEN cur_hhlds_for_update%NOTFOUND;
          FORALL i IN l_household_id_col.FIRST .. l_household_id_col.LAST
             UPDATE compas.household_special_handling
                SET effective_date = TRUNC (SYSDATE),
                    last_modified_by = v_user,
                    last_modified_date = SYSDATE
              WHERE household_id = l_household_id_col(i)
                AND special_handling_type_id = l_spec_handl_type_id_col(i);
       --l_special_handling_update_cnt := l_special_handling_update_cnt + SQL%ROWCOUNT; -- Not sure what this does.
       END LOOP;
    END;G.

  • SCCM Get Collection Member Fails "Failed to get members of collection. The SMS Provider reported an error"

    Full Error is:  "Failed to get members of collection '{Collection Name from "Initialize Data"}'.". The SMS Provider reported an error. Details: Generic failure
    Orchestrator 2012 R2 7.2.84.0
    Using Integration Pack 7.2 for System Center 2012 Configuration Manager
    I have a Runbook that is setup to use Get Collection Members from SCCM.  The fields are:
    Collection:  {Collection Name from "Initialize Data"}
    Collection Value Type:  Name
    When I use the Runbook Tester (or when I try to run it myself) I get the error:
    "Failed to get members of collection '{Collection Name from "Initialize Data"}'.". The SMS Provider reported an error. Details: Generic failure
    I have tried using the Collection ID and I get the same error.  From the Collection Property in Get Collection Members I can browse and see all the collections in SCCM, so I know the connection is working.
    An example of a collection I am trying to use is this:  SUM - Patch and Reboot Server - 3rd Sat 1AM .  I have tried using it with quotes and single quotes as well and I get the same error.
    The log file for SCCM looks like this when it fails:
    CSspQueryForObject :: Execute...~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    ~*~*~e:\nts_sccm_release\sms\siteserver\sdk_provider\smsprov\sspobjectquery.cpp(1782) : Failed to parse WQL string SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~*~*~  $$<SMS Provider><03-25-2014
    11:34:52.904+300><thread=528 (0x210)>
    ~*~*~Failed to parse WQL string SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}" ~*~*~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Execute WQL  =SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Execute SQL =~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Removing Handle 1792008112 from async call map~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    ExecQueryAsync: COMPLETE SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    CExtUserContext::LeaveThread : Releasing IWbemContextPtr=1862502880~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    My SCCM Administrator and I are out of ideas about what else to try.  Anyone have some ideas on what might be causing the issue? 
    MCITP | VCP4 | VCP5

    Hi,
    may I ask if you modified the log? Because of ...
    Execute WQL  =SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Have you typed or subscribe the Published Data to the Field Collection in the Activity "Get Collection Member"?
    It must be subscribed!: Click with right mouse key-> Subscribe->Published Data
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Bios Collection. *Updated 02.07.07*

    ============================================================================================
    02.07.07 (mm-dd-yy) MS7125
    ============================================================================================
    A new ISO image dated 17-30-Feb-06-2007 is uploaded
    New item #6
    +--------------------------------------+
    Press 1,2,3,4,5  followed by enter
    to flash with desired version
    +--------------------------------------+
    1 = MS-7125 bios NCG 1.C (W7125NCG.1C0)
    2 = MS-7125 bios 1.D murdok mod (7125XMOD.1D)
    3 = MS-7125 bios 1.D Syar mod temp disabled (W7125NMM.1D0)
    4 = MS-7125 bios 1.D MSI regular (W7125NMS.1D0)
    5 = MS-7125 bios 1.C MSI regular (W7125NMS.1C0)
    6 = MS-7125 bios NCG 1.C Syar FixedUp (7125NCGM.1C0)  <---
    +--------------------------------------+
    Turn off PSU after successful flash
    and reset cmos
    +--------------------------------------+
    ISO (bootable) is at :
    http://members.lycos.co.uk/olsen0423/MS7125/
    D/L file: 7125_batch_17-30-Feb-06-2007-iso.zip  , unzip and burn .
    Note!
    Make sure that you clear cmos after bios flash (with PSU disconnected) .
    After powering up , first to do is enter cmos and "Load Optimized Defaults" and setting date/time , then save/exit .
    Next boot to cmos you may define/change to own preferences.
    ==================================================
    01.21.07 (mm-dd-yy) MS7030
    ==================================================
    New downloadable bootable bios flash cdrom ISO for
    K8N Neo Platinum (MS-7030 boards)
    Link:
    http://members.lycos.co.uk/olsen0423/
    (Select MS-7030)
    Download file : Neo1-ms7030-bios-collection-iso.zip
    Unzip and burn iso image to cd-r - boot with cdrom as 1'st boot device.
    Easy flash menu for latest/best bioses looks like this:
     +--------------------------------------+
     Press 1,2,3,4,5,6  followed by enter
     to flash with desired version
     PS! Make sure to use right version
     for your 7030 mobo PCB rev
     +--------------------------------------+
     1 = MS-7030 easybios syar for PCB 1.x (W7030nms.156)
     2 = MS-7030 bios 1.70 (W7030nms.170)
     3 = MS-7030 bios 2.1 (w7030nms.210)
     4 = MS-7030 bios 5.4 (W7030nms.540)
     5 = MS-7030 bios 7.1 (w7030nms.710)
     6 = MS-7030 bios 9.0 (w7030nms.900)
     +--------------------------------------+
     Turn off PSU after successful flash
     and reset cmos
     +--------------------------------------+
     Theese hotkey flashes use the following syntax:
     AWFL859G BIOSFILE /PY /SN /WB /CC /CD /CP /LD /E
     And choice 1-6 will automaticly flash your bios with proper parameters
     to avoid any problems.
     Please make sure to use the correct bios series for
     your particular MS7030 board.
     There is alot of boards named MS7030 now which use different series.
     This collection is for convenience (ALLin1).
     I take no responcibility for users flashing wrong bios or a dud bios flash.
     Goto http://www.msi.com.tw and look up your MS-7030 board and
     PCB version to see which series you should use.
     You can also check this yourself by entering cmos - standard setup - info
     to see what series is on your board already , and update to latest for the same series.
     Bios series : 1.1 -> 2.1
     Bios series : 5.1 -> 5.4
     Bios series : 7.0 -> 7.1
     Bios series : 9.0 -> 9.x
     All theese series goes for different versions of MS-7030
     The ISO contains the following bioses :
     W7030NMS.110
     W7030NMS.120
     W7030NMS.130
     W7030NMS.140
     W7030NMS.150
     W7030NMS.160
     W7030NMS.170
     W7030NMS.190
     W7030NMS.210
     7030EBW.BIN (EasyBios by Syar based on W7030NMS.156)
     W7030NMS.510
     W7030NMS.520
     W7030NMS.530
     W7030NMS.540
     W7030NMS.700
     W7030NMS.710
     W7030NMS.900
    ============================================================================================
    10.22.06  (mm-dd-yy) MS7220
    ============================================================================================
    I made a bootable cdrom ISO with different bios files for easy flashing of Diamond Plus
    without the need of a floppy drive.
    Nothing modded , just collection of MS-7220 Diamond Plus bioses on one bootable cd for conveniance.
    Burn ISO (unzip first) and reboot PC with CDROM as 1'st boot device.
    A menu tells what to key:
    1,2,3,4,5,6 or 7 followed by enter.
    Menu looks like this :
      +--------------------------------------+
      Press 1,2,3,4,5,6,7 followed by enter
      to flash with desired version
      +--------------------------------------+
     1 = MS-7220 bios 1.0
     2 = MS-7220 bios 1.1
     3 = MS-7220 bios 1.2
     4 = MS-7220 bios 1.22
     5 = MS-7220 bios 1.33
     6 = MS-7220 bios 3.09
     7 = MS-7220 bios 3.0A
    R:\>
    Pressing 1 will flash with following command
    afud408 a7220nms.100 /P /B /N /C
    Pressing 2 will flash with following command
    afud408 a7220nms.110 /P /B /N /C
    Pressing 3 will flash with following command
    afud408 a7220nms.120 /P /B /N /C
    Pressing 4 will flash with following command
    afud408 a7220nms.122 /P /B /N /C
    Pressing 5 will flash with following command
    afud408 a7220nms.133 /P /B /N /C
    Pressing 6 will flash with following command
    AFDOS404 A7220NMS.309 /B /C /P /N
    Pressing 7 will flash with following command
    AFDOS404 A7220NMS.30A /B /C /P /N
    Link:
    http://members.lycos.co.uk/olsen0423/MS7220
    File : 7220_batch_14-45-Okt-07-2006.zip
    ============================================================================================
    10.22.06  (mm-dd-yy) MS7125
    ============================================================================================
    To whom it may Concern.
    I made a cdom ISO for MS-7125 board also.
    Menu looks like this:
       1 = MS-7125 bios NCG 1.C (W7125NCG.1C0)
       2 = MS-7125 bios 1.D murdok mod (7125XMOD.1D)
       3 = MS-7125 bios 1.D Syar mod temp disabled (W7125NMM.1D0)
       4 = MS-7125 bios 1.D MSI regular (W7125NMS.1D0)
       5 = MS-7125 bios 1.C MSI regular (W7125NMS.1C0)
    ISO (bootable) is at :
    http://members.lycos.co.uk/olsen0423/MS7125/
    D/L file: 7125_batch_22-10-Okt-15-2006.zip  , unzip and burn .
    Note!
    Make sure that you clear cmos after bios flash (with PSU disconnected) .
    After powering up , first to do is enter cmos and "Load Optimized Defaults" and setting date/time , then save/exit .
    Next boot to cmos you may define/change to own preferences.
    ==================================================
    08.20.06 (mm-dd-yy) MS7025
    ==================================================
    EasyBIOS for MS-7025 based on 1C3 bootable cdom iso.
    If you dont want to use winflash or floppy , there is a ISO image to use.
    Burn the iso to a cd and it will boot to dos , at the dosprompt just key in the command
    flash.bat
    Then follow the instructions
    Goto :
    http://members.lycos.co.uk/olsen0423/MS7025/isoimage
    It's packed in a zip file to maintain reability/file integrity after download and to save web space.
    ==================================================
    08.18.06 (mm-dd-yy)
    ==================================================
    Previous web hosting was taken down due to the fact that this is an old board.
    However due to the continious requests i have this bios hosted again.
    Still want the EasyBIOS for MS-7025 based on 1C3
    EasyBIOS[r.2] for K8N Neo2 MS-7025
    Goto :
    http://members.lycos.co.uk/olsen0423/MS7025/
    ==================================================
    ==================================================
    12.10.05 (mm-dd-yy)
    ==================================================
    Entry point to bios collection downloads :
    Syar's MSI Nvidia64 Bios Collection
    EasyBIOS[r.2] for K8N Neo2 MS-7025 (based on 7025CU2.1C3)
    Optimized (good) default values on all items .
    150Mhz , 183Mhz divider .
    Completely new (easy navigating) layout in most setup screens .
    ref: *News* What do I mean by custom EasyBIOS
    Filename :   EASYBIOS.ZIP
    Link :
    EASYBIOS.ZIP
    ==================================================
    07.10.05 (mm-dd-yy)
    ==================================================
    BIOS for K8N Neo2 MS-7025 1C3 .
    Custom version rev.1 has non working HT 3.5x/4.5x multipliers .
    Wasn't aware of it but they both defaults to 5x .
    This is no good in an overclock attempt as you would attemt to run the HT far over it's spec .
    Theese two is removed again .
    In addition the 150mhz text is aligned in memory index , and 216/233/250mhz dividers
    removed as they gives 100/130/200mhz anyway and they are alredy there .
    Please use the new version
    Filename :   7025CU2-1C3.ZIP
    Link (could be some time before it's up):
    7025CU2-1C3.zip
    ==================================================
    06.10.05 (mm-dd-yy)
    ==================================================
    A new BIOS for K8N Neo2 MS-7025 1C3 become availible today .
    Made a custom version of it that have reworked defaults like the previous custom .
    150mhz + 183mhz divider added and HT multiplier 3.5x/4.5x .
    Filename :  7025CUST1-1C3.zip
    Addon PCI card issue and invoke boot error issue resolved by MSI
    EasyBIOS and full advanced version in zip .
    Readme file included .
    ==================================================
    09.05.05 (mm-dd-yy)
    ==================================================
    A new beta BIOS for K8N Neo2 MS-7025 1.BB4 availible
    Filename :  70251B4MOD1.zip (hidden options enabled)
    Filename :  W70251B4NMS.zip (untouched Beta)
    USB 2.0 issue resolved by MSI
    Enabled in BIOS now includes both usb1.1 and USB 2.0 .
    ==================================================
    09.03.05 (mm-dd-yy)
    ==================================================
    A new beta BIOS for K8N Neo1 MS-7030 1.9B1 availible
    Filename :  7030M1NT191.zip 
    All hidden items is made accessible and temps not shown in BIOS hw monitor .
    ==================================================
    08.29.05 (mm-dd-yy)
    ==================================================
    Two new beta BIOSes for K8N Neo2 ms-7025 has surfaced.
    Have them modded to enable usb 2.0 and unhiding the hidden stuff and some defaults changed
    like with the 1A beta mods .
    W7025 1BB2
    W7025 1BB3
    Can be found under Syar's MSI Nvidia64 Bios Collection\NEO2
    1B2 : 7025MOD1B2.zip
    1B3 : 70251B3-MOD1.zip
    Sideeffect has also a more thorough mod of the 1B3
    Link:
    Sideeffect's 1.B3 beta mod
    MSI K8N Neo2 Platinum
    1.B Beta 3
    - Idle Cycle limit = 64
    - Max Async = 8
    - Read Write Queue bypass = 16
    - Bypass max = 7
    - Enabled 183 divider
    - Enabled 150 Divider
    - Enabled USB 2.0
    - Enabled Bios cachable by default
    - All options available in bios will show.
    - Nvidia lan on by default.
    - Disabled Temps from showing in bios
    - Disabled 216, 233, 250 dividers
    - Disabled ATI/Nvidia Speedup
    - Disabled Full screen logo and small EPA logo by default
    - Disabled Fast writes by default
    ==================================================
    08.21.05 (mm-dd-yy)
    ==================================================
    7025 1A has gone final (1A0 081605)
    1A has gone final Aug.16 and is availible on MSI USA .
    MSI though has again forgotten to enable USB 1.1+2.0 as selectable
    and the enhanced memory timings and the usual stuff is hidden .
    Two modded versions that gives you full control is availible at
    (one version without temp and voltage reporting in BIOS hw-monitor)
    Syars_Bios_Collection/NEO2
    Files:
     7025MOD1-1A.zip               21-Aug-2005 13:27   263k 
     7025MOD1NOTEMP-1A.zip   21-Aug-2005 13:27   263k 
    K8N Neo2 Platinum (MS-7025) V1.A BIOS Release
    1. This is Award BIOS release
    2. This BIOS fixes the following problem of the previous version:
    -  Update CPU ID for AMD E6 CPU.
    3. 2005/08/16
    Thats all the readme say ...
    ==================================================
    08.10.05 (mm-dd-yy)
    ==================================================
    Several requests resulted in theese two 1A3 versions .
    Neo2 1.A3 MOD4 version is availible in two versions .
    7025MOD4-1A3.zip
    MOD4 - reworked sane bios default values and all items availible
    Same as normal MOD4 version , but with BIOS temp reporting disabled to help noboot/freeze situations for people with vapo/prommy
    7025NOTEMPMOD4-1A3.zip
    Use the above link and navigate to NEO2 folder .
    ==================================================
    07.29.05 (mm-dd-yy)
    ==================================================
    Neo2 1.90 official
    MSI have hidden made several hings non selectable , like trrd,trc.trfc.trwt along with other things
    Take the file 7025-190-MOD2.zip to get around all this
    No logo mod or such things , just the plain original will all neccesay options availible .
    Thanks supershanks ( it rhymes) 
    ==================================================
    07.16.05 (mm-dd-yy)
    ==================================================
    Dear Tripod Member,
      In order to guarantee a high-quality service on Tripod, we had to close your website http://members.lycos.co.uk/syar2003/ as it was found abusive. 
    Both HTTP and FTP access have been closed.
    Guess my rather large ISO , was what tipped them over .
    ==================================================
    07.16.05 (mm-dd-yy)
    ==================================================
    There are more and more people asking about how to flash bios outside windows from
    DOS without having a floppy drive .
    Well here is the solution .
    I Have compiled a ISO file that holds all the most used bioses for all the K8N Neo motherboards .
    The cd also includes the volkov commander (norton commander clone) for easy navigating .
    Click on the "MSI K8N NEO/FSR & Neo2-Neo4 Bioses" text over the platinum BMP picture to get to the directory listing.
    Go into the sub directory " ALL_BIOS_ISO " and download the ISO image for the bootable BIOS compilation CD " MS_CD5.iso " .
    Then burn the ISO with your favorite cd burning application.
    Again note the correct flash routine , clear PnP , clead cmos , clear dmi , and load defaults after flash , theese have become
    essensial to use with flashing to ther newer bioses for all boards and is even posted on MSI's bios pages.
    Flash with the command line
    AWFL859G.EXE 7100NMS.350 /py/sn/cc/cd/cp/f/e
    (change award flasher exe program and bios file as neccesary)
    After flash , turn off the PSU .
    Power on again , enter bios , and load bios defaults followed by a cmos exit with save .
    Note that this is just a service . I will take no responsiblitity of the outcome of the bios flashing .
    CD contents (sub directories and file listing) :
    Code: [Select]
    Bootable CD info
    NEO1
          7030NMS.110
          7030NMS.120
          7030NMS.130
          7030NMS.140
          7030NMS.142
          7030NMS.143
          7030NMS.144
          7030NMS.145
          7030NMS.146
          7030NMS.147
          7030NMS.148
          7030NMS.150
          7030NMS.151
          7030NMS.152
          7030NMS.155
          7030NM5.156
          7030NMS.160
          7030NMS.170
          7030MOD.156
          AWFL833D.EXE
          How to flash the BIOS.txt
          MOD466.156
    NEO2
          7025NMS.100
          7025NMS.110
          7025NMS.120
          7025NMS.123
          7025NMS.125
          7025NMS.130
          7025NMS.133
          7025NMS.134
          7025NMS.135
          7025NMS.136
          7025NMS.137
          7025NMS.140
          7025NMS.141
          7025NMS.150
          7025NMS.151
          7025NMS.160
          7025NMS.170
          7025NMS.180
          7025NMS.196
          7025NMS.197
          7025NMS.198
          7025MOD.136
          7025MOD.137
          7025MOD.141
          7025MOD.160
          7025MOD.180
          7025MOD.195
          7025MOD.196
          7025NFM.198
          7025NFM3.180
          AWFL833D.EXE
          How to flash the BIOS.txt
    NEO3
         7135NMS.100
         7135NMS.110
         7135-10.TXT
         7135-11.TXT
         AWFL855A.EXE
         How to flash the BIOS.TXT
    NEO4-DM
         7100NMS.100
         7100NMS.110
         7100NMS.120
         7100NMS.130
         7100NMS.133
         7100NMS.140
         7100NMS.150
         7100NMS.501
         7100NMS.502
         7100NMS.504
         7100NMS.505
         7100NMS.506
         AWFL859G.EXE
         How to flash the BIOS.TXT
    NEO4-PL
         7125NMS.100
         7125NMS.110
         7125NMS.120
         7125NMS.121
         7125NMS.124
         7125NMS.130
         7125NMS.140
         7125NMS.141
         7125NMS.144
         7125NMS.150
         7125NMS.152
         7125NMS.160
         7125NMS.161
         7125NMS.164
         7125NMS.165
         7125NMS.171
         7125MOD.140
         7125MOD.161
         AWFL859G.EXE
         How to flash the BIOS.TXT
    NEO4-SLI
          7100NMS.300
          7100NMS.310
          7100NMS.320
          7100NMS.330
          7100NMS.336
          7100NMS.340
          7100NMS.350
          7100V32.TXT
          7100V33TXT
          7100V34.TXT
          AWFL859G.EXE
               Also equippedt with The Volkov Commander, Version 4.05
               A "Norton Commander" clone for easier navigating
    ==================================================
    07.05.05
    ==================================================
    W7135:
    K8N Neo 3 nForce4-4x for S754
    Made a bios placeholder/folder for this motherboard .
    All officials availible. ( v.1.0 only )
    ==================================================
    07.05.05
    ==================================================
    W7025:
    K8N Neo 2 Platinum
    New BETA bios added (Beta 1.8 )
    All officials availible. ( version 1.6 placed under beta as it's only official on MSI korean site not global )
    MurdoK's modded 1.6 and 1.8 placed under modded .
    W7030:
    K8N Neo Platinum (Neo1)
    All officials availible.
    Pinochio's modded 1.6 placed under modded .
    W7100:
    K8N Neo 4 SLI Platinum & K8N Neo 4 Diamond
    New BIOS files added for 7100 Diamond (7100NMS v.1xx) and 7100 SLI_Platinum 7100NMS v.3xx
    New BETA bios added for Diamond ( Beta 1.3 version 3 )
    All officials availible.
    Version 5XX bioses is placed under DIAMOND/BETA
    New beta version 506 added .
    W7125:
    K8N Neo4 Platinum Ultra
    New BETA bios added ( Beta 1.4 version 1 )
    All officials availible.
    ==================================================
    03.04.05
    ==================================================
    MS-7100 (K8N Neo4 SLI Series , diamond/platinum) all bioses released , officials and beta's .
    Officials ends with zero , e.g diamonds = W7100NMS_110.zip(V 1.1)  , W7100NMS_100.zip(V 1.0)
    Officials ends with zero , e.g platinum = W7100NMS_300.zip(V 3.0 platinum)
    Betas ends with a digit 1-9 , e.g W7100NMS_113.zip
    Standard BIOS W7100NMS.110
    Release Date 2.18.2005
    1. Update CPU code
    2. Fix AMD K8 Rev.E DIMMS DRAM size show error.
    3. Fixed report error SMB ID for MCP04
    Beta BIOS W7100NMS.113 (SATA HD issue)
    Release date 020205
    1. Fix DRAM fail no Beep.
    2. Do not show SATA Device string during POST2 screen.
    3. Update NVMM 4.79.
         Switch to Big-Real-Mode before calling NVMM.
         Fix "identify" function to be bus/dev/func independent.
         During LDT-5x operation occasional CRC errors occur. Fixed with new PROD settings.
         Certain Maxtor 300 GB drives fail detection, or are slow to detect.
         Results in slow POST. Fixed with new PROD settings.
         Fixed CK804 detection routine. Removed dependency on hardcoded Bus/Dev/Func number
    4. Update NVPXE 2.03.0469.
       .Fix CPU speed dependency causing initialization failure on faster processors       
       .Increase DHCP timeout. This avoids PXE error message "PXE-E51..." when connected to a switch
        with Spanning Tree Protocol enabled.
       .Fixed connectivity problems between Marvell PHY and some switches (ie. Cisco FastHub).
    5. Added "Sort_PCI_ROM" for release more shadow space.
    6. Modify CPU-Voltage function
    7. Update CBROM.EXE Ver.1.47
    MS-7125 (K8N Neo4 Series) all bioses released , officials and beta's .
    Officials ends with zero , e.g W7125NMS_100.zip , W7125NMS_110.zip
    Betas ends with a digit 1-9 , e.g W7125NMS_121.zip , W7125NMS_124.zip
    ==================================================
    01.26.05
    ==================================================
    MS-7030 (K8N Neo Series) Bios 1.5
    1. This is Award BIOS release.
    2. This BIOS fixes the following problem of the previous version:
    - Support Matrox G450 AGP card.
    - Update CPU ID.
    - Support FX-55.
    - Support Sempron CPU 1800+ GHz.
    - Update NVRAID ROM firmware to Ver:4.60.
    3. 2005/01/21
    ==================================================
    01.19.05
    ==================================================
    Bios'es for
    MSI K8N Neo1 Platinum s754 , 7030
    Added beta bios'es
    1.57 and 1.58
    Both have not been modded with opening of hidden options
    nor a replaced nvraid.rom .
    Note!
    1.57 gave me some problems with upped fsb , black screen on boot
    and overclocking reset message - loaded defaults .
    This with same settings as with 1.56.
    1.58 runs just as good in my rig as 1.56 , found no issues with it (yet).
    ==================================================
    01.14.05
    ==================================================
    Bios for
    MSI K8N Neo2 Platinum s939 , 7025
    Added modded bioses (unhidden options)
    1.37 and 1.41
    And the Beta 1.5X
    ==================================================
    12.01.04
    ==================================================
    Bios for
    MSI K8N Neo2 Platinum s939 , 7025
    Official bios W7025NMS.140 (added 12.10.2004)
    This one has the same boot block as 1.51B but different from all others .
    ==================================================
    12.07.2004
    ==================================================
    Update of boot block is not always neccesary.
    Theese tables show with a letter the boot block version of each bios.
    The bat file includes a /wb switch which reprograms bootblock .
    If the flash goes wrong with boot block flashed and the boot block gets corrupted , no floppy rescue can be done.
    Then it's adviced only to use the /wb swich in the included bat file when neccesary.
    Table for S939 Neo2 ( 7025NMS )
    Code: [Select]
    |...A..|...B...|...C...|...C...|...C...|...E...|...D...|...D. ..|...D....|...E. ..|...E. ..|...E. ..|...F. ..|...F. ..|
    |.100..|..110..|..120..|.1B23..|.1B25..|..130..|.1B33..|..1B34..|..1B35..|..1B36..|..1B37..|..1B41..|..140..|..1B51..|
    7025 120/123/125 share the same boot block version.
    7025 130/136/137/141 share the same boot block version.
    7025 133/134/135 share the same boot block version.
    7025 151/140 share the same boot block version.
    Table for S754 Neo Platinum/FSR  ( 7030NMS )
    Code: [Select]
    |...A..|...B...|...C...|...D...|...D...|...E...|...E...|...E. ..|...E....|...E. ..|...E. ..|...F. ..|...G. ..|...H. ..|...I. ..|
    |.110..|..120..|..130..|.1B42..|.1B43..|.1B44..|.1B45..|..1B46..|..1B47..|..1B48..|..140...|..1B51..|..1B52..|..1B55..|..1B56..|
    Only when flashing from one bios version to another bios version where boot block is different the /wb switch should be used .
    If boot block it's equal in the source and target bios the /wb switch can be dropped if this is prefered.
    ==================================================
    12.01.04
    ==================================================
    Bios for
    MSI K8N Neo(1) Platinum/FSR s754 , 7030
    Beta bios W7030NMS.156 pinochio mod with new raidbios 4.71 (added 12.01.2004)
    ==================================================
    12.01.04
    ==================================================
    Bios for
    MSI K8N Neo2 Platinum s939 , 7025
    Beta bios W7025NMS.151 (added 12.01.2004)
    ==================================================
    11.20.04
    ==================================================
    New entry point from 2004.11.20
    http://members.lycos.co.uk/syar2003/
    Changes:
    All S939 Neo2 bioses availible
    Pinochio modded bioses , and Pinochio modded with nvraid ide rom bios 4.66
    ==================================================
    I found it a little bit hard to search throgh posts to find hostings of the
    different 1.4x & 1.5x bioses out.
    I have collected all v 1.4x &1.5x upto now as well as the official ones .
    All in one place. Thought i shold share the info .
    *=========================================================*
    Bios for
    MSI K8N Neo FSR , 7030NMS
    MSI K8N Neo Platinum , 7030NMS
    [STRIKEOUT]http://members.lycos.co.uk/syar2003/S754_neo_plat_bios[/STRIKEOUT]
    Betas:
    1.4b2  , 1.42
    1.4b3  , 1.43
    1.4b4  , 1.44
    1.4b5  , 1.45
    1.4b6  , 1.46
    1.4b7  , 1.47
    1.4b8  , 1.48
    1.5b1  , 1.51
    1.5b2  , 1.52 (added 09.14.04)
    1.5b5  , 1.55 (added 09.30.04)
    1.5b6  , 1.56 (added 10.22.04)
    Remember :
    Enter bios and load optimized default + save/exit , before flashing .
    Do the flashing to 1.56 with AWFL833D W7030NM5.156 /py/sn/wb/cc/cd/cp/f/r
    Enter bios and load optimized default , and save .Important .
    (enter bios and load optimized + save,exit if you get F1-continue at first boot)
    Boot once again after this without any changes/editing in bios  to floppy prompt and let the dmi pool build and update itself.
    Then boot/edit bios set your individual bios preferences .
    Officials:
    1.1
    1.2
    1.3
    1.4 (09/10-04)
    Hidden bios options:
    Shift+F2  then  Alt+F3
    Hidden BIOS options NOT gone with 1.4x
    Some modded for K8N Neo Platinum/K8N Neo FSR is availible:
    These dont need the shift+F2/alt+f3 to unhide options (and some other msi hidded items is unhidden also)
    Modded Beta 1.56 with pinochio boot logo , nvraid ide rom bios 4.60
    Modded Beta 1.56 with pinochio boot logo , and nvraid ide rom bios 4.66
    [STRIKEOUT]http://members.lycos.co.uk/syar2003/S754_neo_plat_bios/modded/[/STRIKEOUT]
    Theese are tested by several users (including myself and work fine)

    First off get the BIOS version you want to flash:
    Take a look at syar2003's excellent collection!
    http://members.lycos.co.uk/syar2003/S754_neo_plat_bios/
    Download the BIOS version you want, extract the .zip and put the files on a bootable floppy. Syar2003 supplies a handy flash.bat file with "his" 1.55 that you can use. This saves you typing in all the command line switches listed in the quote below.
    After booting from floppy, copy the three files (AWFL833D.exe, flash.bat and W7030NMS.155) to a hardisk or the ramdrive that was just created by the bootdisk. I strongly advise against flashing directly from floppy!
    (Notice that you will need a FAT partition on your harddisk to be able to access it from "DOS".)
    Now follow syar2003's flash guide:
    Quote
    Remember :
    Enter bios and load optimized default + save/exit , before flashing .
    Do the flashing to 1.55 with AWFL833D W7030NMS.155 /py/sn/wb/cc/cd/cp/f/r
    Enter bios and load optimized default , and save .Important .
    Boot once again after this without any changes/editing in bios to floppy prompt and let the dmi pool build and update itself.
    Then boot/edit bios set your individual bios preferences .
    Hope this will help you!
    Btw. When I flashed to 1.55 my NIC went dead in windows and I had no internet access. Make sure you have a official BIOS release at hand (on the same or other disk?) so that you can flash back to a version you trust...
    edit: need more info? take a look here:
    https://forum-en.msi.com/index.php?threadid=54105

  • Can't 'Create Saved Book' and continue to use Quick Collection to update book?

    I was creating a book in LR4.1 using a Quick Collection. After getting pretty far into my book and being content with my progress, I clicked 'Create Saved Book'. Now I found that I couldn't access the Quick Collection I was using to continue updating my book. I could only access one or the other (the saved book at it's current incomplete state OR the Quick Collection with a blank book layout). What did I do wrong??

    The saved book is now a new collection, with a book-icon in front. You add more images by adding them (e.g. via drag and drop) to this new collection in library module.
    While selected you switch over to book module and can continue to add pages and fill them with the newly added images.
    You might run into another bug though, by which you will have lost your entire layout, but the filmstrip still claims the number how often an image was placed into the lost layout.
    If you are working on a book be sure to create a backup of your catalog every time you exit LR as this might be your only way to retrieve at least an older status of your book.
    Copy-paste text into text boxes in book module has been reported to trigger the bug rather often.
    Good luck,
    Cornelia

  • JPQL -Collection Member Expressions -type mismatch

    I'm trying to run the query below but I get an error
    Caused by: java.lang.IllegalArgumentException: You have attempted to set
    a value of type class java.lang.String for parameter contid with expected type
    of class mmis.entity.Contract from
    query string SELECT c FROM Consultant c WHERE c.contractCollection IS EMPTY
    OR :contid NOT MEMBER OF c.contractCollection .
    public List<Consultant> getAvailableConsultants( String cntrctId) {
    return em.createQuery("SELECT c FROM Consultant c"
    + " WHERE c.contractCollection IS EMPTY OR :contid NOT MEMBER OF c.contractCollection ")
    .setParameter("contid", cntrctId)
    .getResultList();
    The collection is a result of a many-to-many relationship which i thought holds the contractIDs
    how can i get the query to check whether the parameter contid is not in the collection
    Thnx

    Hi Amasoni, I think you might want to review the JPA persistence basics: http://docs.oracle.com/javaee/6/tutorial/doc/bnbtl.html (or probably Java basics). As pointed out by qimbal2, c.contractCollection refers to a collection of Contract object, hence you won't be able to simply cast it to get its id.
    Instead if you want to find out Consultants with no contracts with exceptions of some contract ids, you can use joins as such:
    select distinct c
    from Consultant c
    left outer join c.contractCollection o
    where o is null
    or (o is not null and o <> 3)

  • Can apex collections be updated via database package

    I am trying to simplify the logic in my apex 4.2 application. I have multiple collections being used in many places over several applications. Currently, each application updates the collection in slightly different ways. To make things more centralized, I would like to update my collections via a database package.
    I have not seen this documented anywhere, so was wondering what you thought? Does this make sense and would it be a good way to move forward?
    thanks for your input.
    Karen

    KarenH wrote:
    I am trying to simplify the logic in my apex 4.2 application. I have multiple collections being used in many places over several applications. Currently, each application updates the collection in slightly different ways. To make things more centralized, I would like to update my collections via a database package.
    I have not seen this documented anywhere, so was wondering what you thought? Does this make sense and would it be a good way to move forward?
    APEX_COLLECTION is an plsql API and is similar to any other database packages. But can only be used within an apex application session.
    So yes you can use them within any database package as far as your package.subprogram is executed within an apex application session, and this means you won't be able to execute this package.subprogram outside apex.

  • Office 2013 Rollout - Collect missing updates

    I have dialed in my custom installer for Office 2013. What's the easiest way to gather all missing Office 2013 updates post-SP1 so I can drop them in the update folder?

    @DonPick
    I'm still making a final decision on whether or not to include all the patches at install time. If I wait for the Software Updates to come through then the user's first experience will not include everything. I'm concerned they may discover issues that are
    directly related to the patch content, giving the user a false sense that IT doesn't know what they're doing =)
    On a Windows 7 VM (1 CPU / 2 GB Memory) a complete uninstall of Office 2010 and install of Office 2013 32-Bit w/ SP1 took ~11 minutes to complete. This includes all the follow-up patches through May 2014. Of course my install package grew from ~850 MB to
    ~2 GB. Another issue I'm going to have to face....

  • LR3 smart collection not updating

    I shoot for a college and I have smart collection setup to show me my best shots for each sport. There are some images that won't appear in my smart collection and I can't figure out why. All the other sports collection work fine. This collection does show me some of the images, but not all based on my criteria. Yes, I've checked that the criteria is correct. Any ideas as to why this is happeneing? How can I fix this? is this a program error or bug?

    Thank you.
    I don't see that you're doing anything wrong in the SC definition. That file should be selected.
    There are a couple of things that you might try:
    --Delete the SC and re-create it. I've seen cases where collections were working wierdly and re-doing them helped.
    --Try filtering for those things in the Grid view. You can devote two or more columns to Keywords. If you select several keywords in the same column, you get an "or" relationship. Selecting keywords in different columns gives an "and" relationship. Assuming this works, you can click the double-headed arrow at the end of the filter bar and save the filter as a preset.
    Hal

  • Why bulk collect ,bulk update are faster?

    Hi all gurus,
    I have one doubt ,all of us knows that bulk collect is faster but i want to know why it is faster? what is mechanism behind that?
    what oracle does internally so that it works faster?
    thanks in advance
    vijay
    Edited by: vijay29 on Mar 2, 2009 2:24 AM

    Example for Bulk Collect.
    DECLARE
    TYPE myvar2 IS TABLE OF a%ROWTYPE; -- Creating a Pl/SQL table
    CURSOR c1
    IS
    SELECT *
    FROM a; -- Declaring a cursor
    myvar1 myvar2; -- Declaring a PL/SQL Table variable.
    BEGIN
    OPEN c1;
    Here is a finding when using 'LIMIT' clause in 'BULK COLLECT' statement.
    Example :
    Note : Table EMP has 15 records.
    CASE #1:
    SQL> SELECT COUNT (*)
    FROM emp;
    COUNT(*)
    15
    DECLARE
    TYPE numtab IS TABLE OF NUMBER
    INDEX BY BINARY_INTEGER;
    CURSOR c1
    IS
    SELECT empno
    FROM emp;
    empnos numtab;
    ROWS NATURAL := 10;
    BEGIN
    OPEN c1;
    LOOP
    /* The following statement fetches 10 rows (or less). */
    FETCH c1
    BULK COLLECT INTO empnos LIMIT ROWS;
    EXIT WHEN c1%NOTFOUND;
    FORALL i IN empnos.FIRST .. empnos.LAST
    DELETE FROM emp
    WHERE empno = empnos (i);
    END LOOP;
    CLOSE c1;
    END;
    Observation : When the above code segment is run the total records deleted will be only 10 as shown below.
    SQL> SELECT COUNT (*)
    FROM emp;
    COUNT(*)
    5
    Since the statement 'EXIT WHEN c1%NOTFOUND' executes before the DML statement (DELETE in this case),
    the loop terminates as soon as the cursor (C1) has the rowcount(5 rows) less than the LIMIT count(10 rows).
    CASE #2:
    SQL> SELECT COUNT (*)
    FROM emp;
    COUNT(*)
    15
    DECLARE
    TYPE numtab IS TABLE OF NUMBER
    INDEX BY BINARY_INTEGER;
    CURSOR c1
    IS
    SELECT empno
    FROM emp;
    empnos numtab;
    ROWS NATURAL := 10;
    BEGIN
    OPEN c1;
    LOOP
    /* The following statement fetches 10 rows (or less). */
    FETCH c1
    BULK COLLECT INTO empnos LIMIT ROWS;
    FORALL i IN empnos.FIRST .. empnos.LAST
    DELETE FROM emp
    WHERE empno = empnos (i);
    EXIT WHEN c1%NOTFOUND;
    END LOOP;
    CLOSE c1;
    END;
    Observation : When the above code segment is run the total records deleted will be 15 as shown below.
    SQL> SELECT COUNT (*)
    FROM emp;
    COUNT(*)
    0
    Since the statement 'EXIT WHEN c1%NOTFOUND' executes after the DML statement (DELETE in this case),
    the loop terminates after executing the DML & deletes the rest of the 5 records also and exits.
    Conclusion :
    When handling 'LIMIT' with 'BULK COLLECT INTO' statements, better to use the statement
    'EXIT WHEN <cursorname>%NOTFOUND' after the DML statement.
    And also use the following way with set of statements:
    Declare
    Type Numtab Is Table Of Number
    Index By Binary_Integer;
    Cursor C1
    Is
    Select Empno
    From Emp;
    Empnos Numtab;
    Rows Natural := 10;
    Tot_Recs Number;
    Begin
    Open C1;
    Loop
    /* The Following Statement Fetches 10 Rows (Or Less). */
    Fetch C1
    Bulk Collect Into Empnos Limit Rows;
    If Msagrmnt%rowcount > Tot_Recs
    Then
    For I In Empnos.First .. Empnos.Last
    Loop
    -- Here We Can Include Set Of Pl/sql Stmts And We May Store Other Values Into
    -- Pl/sql Table And Then Insert Into The Table (For Both Cursor Selection Values And Other Selection Values As Below)
    End Loop;
    Forall I In Empnos.First..Empnos.Last
    Insert Into Empno1 Values … Ie Pl/sql Table Variables;
    End If;
    Tot_Recs := C1%rowcount;
    Exit When C1%notfound;
    End Loop;
    Close C1;
    End;

  • How to update collection when checkbox changed in report

    I have a report based on a collection:
    select seq_id
           ,c001
           ,c002
           ,apex_item.checkbox(1,seq_id,decode(c003,'J','CHECKED','UNCHECKED')) selected
    from apex_collections
    where collection_name='CONCOLLECTION'When the checkbox changes I want to store the new checked/unchecked status in the collection.
    Steps towards a solution I've come up with:
    1 Create a dynamic action: Change, jquery selector : input[name="f01"]
    2 Create javascript to store value (=seq_id) of changed item into a hidden page item.
    3 plsql code to update collection member with seq_id that is now in hidden item.
    Is this the way to do it?
    If so, it's the javascript of step 2 that I can't figure out.
    thanks, René

    thanks this works.
    Using javascript I store the seq_id and the checked value in 2 page items
    $s('P70_SEQ_ID', $(this.triggeringElement).val() );
    $s('P70_CHECKED', $(this.triggeringElement.checked).val() );The checked value I get is <empty> when checked and 'undefined' when unchecked. Based on this I can now update the collection.
    declare
      l_selectie varchar2(1);
    begin
      if v('P70_CHECKED')='undefined'
      then
        l_selectie := 'N';
      else
        l_selectie := 'J';
      end if;
      apex_collection.update_member_attribute(p_collection_name => 'CONCOLLECTION'
                                                 ,p_seq             => v('P70_SEQ_ID')
                                                 ,p_attr_number     => 3
                                                 ,p_attr_value      => l_selectie);
    end;

  • Unable to Update Collection from Tabular Form

    I have built several Tabular Forms where I have updated the apex_collection with the data entered into the form. Then I loop thru the collection and update the database.
    I now Copy a working form to create a new form using data from a different table. All I am doing is changing the underly apec_collection with a different select statement and give it a new collection name. The number of columns on the tabular form are the same as the working form.
    Now I run the form and I get ORA-01403: no data found Error UNABLE to UPDATE ROWS
    It is acting like it is not finding any data from the collection. But I put in the same selection critera for the update into a report below the tabular form and I see data just fine.
    Here is the code I am using to update the collection when the SAVE button is pressed (Process on Submit before Calculations).
    begin
    for c1 in (
    select seq_id from apex_collections
    where collection_name = 'IPR_MATRIX' and c001 = :P21_FACILITY
    and c002 = :P21_DEPT
    order by seq_id) loop
    c := c+1;
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>5,p_attr_value=>wwv_flow.g_f01(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>6,p_attr_value=>wwv_flow.g_f02(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>7,p_attr_value=>wwv_flow.g_f03(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>8,p_attr_value=>wwv_flow.g_f04(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>9,p_attr_value=>wwv_flow.g_f05(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>10,p_attr_value=>wwv_flow.g_f06(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>11,p_attr_value=>wwv_flow.g_f07(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>12,p_attr_value=>wwv_flow.g_f08(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>13,p_attr_value=>wwv_flow.g_f09(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>14,p_attr_value=>wwv_flow.g_f10(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>15,p_attr_value=>wwv_flow.g_f11(c));
    apex_collection.update_member_attribute (p_collection_name=> 'IPR_MATRIX',
    p_seq=> c1.seq_id,p_attr_number =>16,p_attr_value=>wwv_flow.g_f12(c));
    end loop;
    end;
    Any Ideas what I am doing wrong?

    c is set to 0
    It looks like I may have found my problem.
    There tabular form is limited by a where clause in the report to a subset of the collection. Making the collection match the same where clause seems to have fixed my problem.
    Not clear on why that works like that but it looks like I may have it working.

  • Collection Update issue - Full Eval of collections and Several in Awaiting Refresh Status

    We are experiencing an issue where several collections has a Current Status of Awaiting Refresh. They have continued to stay in this status for 2 days. We've verified that no blocking exists in SQL, checked for a bad query and have
    performed a Site Reset. We have also noticed that when we restart SMS_COLLECTION_EVALUATOR it forces a full collection evaluation of every collection in our environment (~7900). We see 7900 items hit the coleval.box and we also see them queued for
    processing in the Colleval.log. Also, if we manually update the Collection Membership of a single collection (Awaiting Refresh or Ready) this also forces an evaluation of every collection in our environment. Any Ideas??? TIA

    Also think about how your collections are setup in terms of limiting. There could be a cascading effect.
    http://www.sysadmintechnotes.com/2013/09/11/the-effect-of-a-limiting-collection-full-update/
    Daniel Ratliff | http://www.PotentEngineer.com

  • Collection updates every month, will score increase when

    I pay it off, the collector has agreed to delete once I make payment. It is also the last collection on my TU report, its a credit card charge off, the collection will be gone, but the charge off will still be there, should I try and gw capitol one to have charge off removed? Really hope I have a score increase with the collection gone, last update was this month
    Thankd

    nate79416 wrote:
    I pay it off, the collector has agreed to delete once I make payment. It is also the last collection on my TU report, its a credit card charge off, the collection will be gone, but the charge off will still be there, should I try and gw capitol one to have charge off removed? Really hope I have a score increase with the collection gone, last update was this month
    ThankdDoesn't hurt to try regarding the CO; but if the CO was fixed in time at some point in the past and the collection is updating will be deleted, least on FICO 8 probably get some points which'll get better over time.

Maybe you are looking for