DML Handler for update - need help

Hi,
I am trying a simple DML handler to INSERT all the column values in a target table (CHANNELS_DML)..which are sourced from an updated table (CHANNEL). Both of these tables are in the same database.
Here is the procedure I'm using for this purpose..
+++++++++++++++++
CREATE OR REPLACE PROCEDURE chn_dml_handler(in_any IN ANYDATA) IS
lcr SYS.LCR$_ROW_RECORD;
rc PLS_INTEGER;
command VARCHAR2(30);
old_values SYS.LCR$_ROW_LIST;
old_pk_val sys.anydata;
new_values SYS.LCR$_ROW_LIST := NULL;
BEGIN
rc := in_any.GETOBJECT(lcr);
command := lcr.GET_COMMAND_TYPE;
old_values := lcr.GET_VALUES('old');
new_values := lcr.GET_VALUES('new');
IF command = 'UPDATE' THEN
old_values := lcr.GET_VALUES('old','y');
lcr.SET_VALUES('new', old_values);
lcr.ADD_COLUMN('new', 'TIMESTAMP', ANYDATA.ConvertDate(SYSDATE));
lcr.ADD_COLUMN('new', 'OPERATION', ANYDATA.Convertvarchar2('UPDATE'));
lcr.SET_COMMAND_TYPE('INSERT');
lcr.SET_OBJECT_NAME('CHANNELS_DML');
ELSIF command = 'DELETE' THEN
lcr.SET_COMMAND_TYPE('INSERT');
lcr.SET_OBJECT_NAME('CHANNELS_DML');
lcr.SET_VALUES('new', old_values);
lcr.SET_VALUES('old', NULL);
lcr.ADD_COLUMN('new', 'TIMESTAMP', ANYDATA.ConvertDate(SYSDATE));
lcr.ADD_COLUMN('new', 'OPERATION', ANYDATA.Convertvarchar2('DELETE'));
ELSE
lcr.SET_COMMAND_TYPE('INSERT');
lcr.SET_OBJECT_NAME('CHANNELS_DML');
lcr.ADD_COLUMN('new', 'TIMESTAMP', ANYDATA.ConvertDate(SYSDATE));
lcr.ADD_COLUMN('new', 'OPERATION', ANYDATA.Convertvarchar2('INSERT'));
END IF;
lcr.EXECUTE(true);
END;
++++++++++++++++++++
INSERT, DELETE are working fine. However, when it comes to UPDATE I encounter "ORA-23605: invalid value "" for STREAMS parameter command_type".
Would appreciate, if you can point me to any missed steps!
Both source, target tables have the pk and supplemental logging is enabled for all the source tbl columns. (BTW, is it mandatory to enable supplemental logging ?)
Thanks,
Sharas

You need to put this statement into IF 'UPDATE'
lcr.SET_VALUES('old', NULL);
old values in case of INSERT should be NULL.
You may want to use case instead of IF ELSEIF...
You might also have problems with LOBS... LOBs are not covered by this code.

Similar Messages

  • Trouble Setting Up DML Handler for Journaling

    Hi Pat,
    I am trying to setup a simple DML handler for journaling of a table and cannot get it to work. Configuration is as follows:
    Source table
    Target table - updated via basic replication setup, this works fine.
    Target table journal - This table looks just like the original with additional columns for meta data about the transaction (i.e. trans_time, trans_type, trans_id..etc). Note: Did not use nested table technology.
    The problem is in compiling the user procedure for the DML handler we get an error on the INSERT part of the code:
    PL/SQL: ORA-00932: inconsistent datatypes: expected NUMBER got -
    The code is listed below and the error points to the usage of the lcr.GET_VALUE package regardless of the column.
    Can you tell me if this is a correct usage of that package/procedure? Can you provide any better examples of DML handlers,preferbly for journaling? I understand from another thread you may have a new set of doc coming out. Maybe that can help me?
    I have a WORD doc w/pics that can better articulate the situation if it will help. Any direction is truely appreciated.
    Best Regards,
    Tom
    P.S. Is Oracle consulting spun up on this technology? We are not adverse to having profesional help to reduce our spinup time.
    CREATE OR REPLACE PROCEDURE contact_point_journal_dml(in_any IN SYS.ANYDATA)
    IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    BEGIN
    -- Access the LCR
    rc := in_any.GETOBJECT(lcr);
    -- Insert information in the LCR into the contact_point_journal table
    INSERT INTO strmuser.contact_point_journal
    VALUES
    (lcr.GET_VALUE('NEW', 'CONTACT_POINT_ID'),
    lcr.GET_VALUE('NEW', 'EFFECTIVE_DT'),
    lcr.GET_VALUE('NEW', 'VERSION'),
    lcr.GET_VALUE('NEW', 'CREATED_BY'),
    lcr.GET_VALUE('NEW', 'CREATED_TS'),
    lcr.GET_VALUE('NEW', 'CONTACT_CODE_ID'),
    lcr.GET_VALUE('NEW', 'ADDRESS1'),
    lcr.GET_VALUE('NEW', 'ADDRESS2'),
    lcr.GET_VALUE('NEW', 'ADDRESS3'),
    lcr.GET_VALUE('NEW', 'ADDRESS4'),
    lcr.GET_VALUE('NEW', 'CITY'),
    lcr.GET_VALUE('NEW', 'COUNTY'),
    lcr.GET_VALUE('NEW', 'STATE_PROVINCE_CODE_ID'),
    lcr.GET_VALUE('NEW', 'POSTAL_CODE'),
    lcr.GET_VALUE('NEW', 'COUNTRY_CODE_ID'),
    lcr.GET_VALUE('NEW', 'GEO_CODE'),
    lcr.GET_VALUE('NEW', 'OTHER_CONTACT_POINT_VALUE'),
    lcr.GET_VALUE('NEW', 'EXPIRATION_DT'),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_BY'),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_TS'),
    SYSDATE,
    lcr.GET_COMMAND_TYPE(),
    lcr.GET_TRANSACTION_ID(),
    lcr.GET_SCN(),
    lcr.GET_SOURCE_DATABASE_NAME(),
    lcr.GET_OBJECT_OWNER(),
    lcr.GET_OBJECT_NAME(),
    '1',
    'A'
    -- Apply row LCR
    -- Command type code may be '03' instead of 'insert' ???
    -- Is the syntax correct for SET statement ???
    lcr.SET_COMMAND_TYPE('INSERT');
    lcr.EXECUTE(true);
    END;

    Hi Tom,
    The GET_VALUE method of an LCR$ROW_RECORD returns a SYS.ANYDATA type.
    You need to specify one of the static access functions to get the value of the correct type.
    Here is your dml_handler with the modifications:
    CREATE OR REPLACE PROCEDURE contact_point_journal_dml(in_any IN SYS.ANYDATA)
    IS
    lcr SYS.LCR$_ROW_RECORD;
    rc PLS_INTEGER;
    BEGIN
    -- Access the LCR
    rc := in_any.GETOBJECT(lcr);
    -- Insert information in the LCR into the contact_point_journal table
    INSERT INTO strmuser.contact_point_journal
    VALUES
    (lcr.GET_VALUE('NEW', 'CONTACT_POINT_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'EFFECTIVE_DT').AccessDate(),
    lcr.GET_VALUE('NEW', 'VERSION').AccessNumber(),
    lcr.GET_VALUE('NEW', 'CREATED_BY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'CREATED_TS').AccessTimestamp(),
    lcr.GET_VALUE('NEW', 'CONTACT_CODE_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'ADDRESS1').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'ADDRESS2').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'ADDRESS3').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'ADDRESS4').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'CITY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'COUNTY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'STATE_PROVINCE_CODE_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'POSTAL_CODE').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'COUNTRY_CODE_ID').AccessNumber(),
    lcr.GET_VALUE('NEW', 'GEO_CODE').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'OTHER_CONTACT_POINT_VALUE').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'EXPIRATION_DT').AccessDate(),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_BY').AccessVarchar2(),
    lcr.GET_VALUE('NEW', 'LAST_MODIFIED_TS').AccessTimestamp(),
    SYSDATE,
    lcr.GET_COMMAND_TYPE(),
    lcr.GET_TRANSACTION_ID(),
    lcr.GET_SCN(),
    lcr.GET_SOURCE_DATABASE_NAME(),
    lcr.GET_OBJECT_OWNER(),
    lcr.GET_OBJECT_NAME(),
    '1',
    'A'
    -- Apply row LCR, too
    lcr.EXECUTE(true);
    END;

  • Ask about DML Handler for Streams at the Schema level ?

    Hi all !
    I use Oracle version 10.2.0.
    I have two DB is A (at machine A, and it used as source database) and B (at machine B - destination database). Some changes from A will apply to B.
    At B, I installed oracle client to use EMC (Enterprise Manager Console) tool to generate some script, and use them to configure Streams environment, I configured Streams at the Schema level (DML and DDL) => I successed ! But I have two problems is:
    + I write a DML Handler, called "emp_dml_handler" and want set it to EMP table only. So, I must DBMS_STREAMS_ADM.ADD_TABLE_RULES ? (I configured: DBMS_STREAMS_ADM.ADD_SCHEMA_RULES) such as:
    BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name => '"HOSE"',
    streams_type => 'APPLY',
    streams_name => 'STRMADMIN_BOSCHOSE_REGRES',
    queue_name => 'apply_dest_hose',
    include_dml => true,
    include_ddl => true,
    source_database => 'DEVELOP.REGRESS.RDBMS.DEV.US.ORACLE.COM');
    END;
    and after:
    DECLARE
    emp_rule_name_dml VARCHAR2(50);
    emp_rule_name_ddl VARCHAR2(50);
    BEGIN
    DBMS_STREAMS_ADM.ADD_TABLE_RULES(
    table_name => 'HOSE.EMP,
    streams_type => 'APPLY',
    streams_name => 'STRMADMIN_BOSCHOSE_REGRES',
    queue_name => 'apply_dest_hose',
    include_dml => true,
    include_ddl => true,
    source_database => 'DEVELOP.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    dml_rule_name => emp_rule_name_dml,
    ddl_rule_name => emp_rule_name_ddl);
    DBMS_APPLY_ADM.SET_ENQUEUE_DESTINATION(
    rule_name => emp_rule_name_dml,
    destination_queue_name => 'apply_dest_hose');
    END;
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER(
    object_name => 'HOSE.EMP',
    object_type => 'TABLE',
    operation_name => 'UPDATE',
    error_handler => false,
    user_procedure => 'strmadmin.emp_dml_handler',
    apply_database_link => NULL,
    apply_name => NULL);
    END;
    ... similar for INSERT and DELETE...
    I think that I only configure streams at the schema level and exclude EMP table, am i right ?
    + At the source, EMP table have a primary key. And I configured:
    ALTER TABLE HOSE.EMP ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY) COLUMNS;
    ==> So, at the destination, have some works that I must configure the substitute key for EMP table ?
    Have some ideas for my problems ?
    Thanks
    Edited by: changemylife on Sep 24, 2009 10:45 PM

    If you want to discard emp from schema rule, then just add a negative rule, either on capture or apply.
    What is the purpose of :
    DBMS_APPLY_ADM.SET_ENQUEUE_DESTINATION(
    rule_name => emp_rule_name_dml,
    destination_queue_name => 'apply_dest_hose');sound like you are enqueunig into 'apply_dest_hose' all the rows for this table that comes from ... 'apply_dest_hose'
    Next you declare a DML_HANDLER that is attached to nobody :
    BEGIN
    DBMS_APPLY_ADM.SET_DML_HANDLER(
    object_name => 'HOSE.EMP',
    object_type => 'TABLE',
    operation_name => 'UPDATE',
    error_handler => false,
    user_procedure => 'strmadmin.emp_dml_handler',
    apply_database_link => NULL,
    apply_name => NULL);           <----- nobody rules the world!
    END;the sequence of evaluation is normally :
    APPLY_PROCESS (reader)
              |
              | -->  RULE SET
                          |
                          | --> RULE .....
                          | --> RULE
                                     |
                                     | --> evaluate OK then --> exist DML_HANDLER  --> YES --> call DML_HANDLER --> on LCR.execute call coordinator
                                                                                            |
                                                                                            | NO
                                                                                            |                                                                 
                                                                                       Implicit apply (give LCR to coordinator which dispatch to one apply server)    
                                                      Since your dml_handler is attached to null apply process it will never be called by anybody and your LCR for table emp will be implicit applied by its apply process.

  • "your system has not been modified error" will not let me install itunes on my computer an its for fraustrating need help!

    "your system has not been modified error" will not let me install itunes on my computer(windows 7 64 bit) and it is so faustrating i need help please and thanks!

    I had the same problem.I tried every solutions on the net but nothing worked.Luckily on that very day my free avast antivirus date expired(I dont currently have a paid antivirus) and I uninstalled it.Then I tried to install itunes and did it on the first go.But I am using a windows 7 32 bit so it might not work for you as you are on the 64 bit.Actually the antivrus was the culprit.Hope it helps.Thanks

  • No support for pse4, need help with help and everything else.What's a layer? How can I get help PDF from CD? I don't have a clue how to use this. I have a Macbook pro.

    Need help with help pse4 not supported by adobe. how to do topics not available and I have never used any thing like this. Help says there is a download but have not been able to get it. What's a rookie to do ? Is there somewhere I can go to find out how to use PSE4?

    The internet is overflowing with tutorials on PSE. Just google what you want and include Photoshop Elements 4 as part of your search term, or  go to the library and they may have several different books on PSE 4. For PSE 4, you won't find a mac specific book, but that doesn't matter because the editor is the same on either program. Just substitute Command for Ctrl and Option for Alt in the keystrokes, and ignore anything about the organizer.
    Some popular sites for learning elements:
    http://www.photoshopelementsuser.com/
    lynda.com
    eclecticacademy.com
    youtube has a lot of video tutorials, too.

  • What components to get for computer need help!

    I have a hp envy 700pc model#700-214
    I'm trying to run Live video footage from my video camera INTO my computer and OUT my computer INTO my overhead projectors or tv monitors. We capture standard definition and high definition video footage. what video capture card and video card I need to get to make this possible? Need info! Need help! Please

    Hi,
    Please use pages #8 to #10 of the following manual:
        https://www.easyworship.com/downloads/EasyWorshipManual.pdf
    also:
       https://www.easyworship.com/support/kbarticle/98
    They all fit to your computer.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I can't check for updates, under Help, it's turned off

    I can't look for updates. When I go to Help, check for updates, it is turned off.
    == This happened ==
    Every time Firefox opened
    == I don't know. Never used this before.

    You can start the Firefox program as Administrator via the right-click context menu.
    See [http://vistasupport.mvps.org/run_as_administrator.htm vistasupport.mvps.org: Run As Administrator]

  • Apple macbook pro charger for MD314LLA, need help

    Guys,
    I both apple macbook pro last year( model MD314LL\A( 13.3 inch. My charger stop working and I am looking to purchase new one. While searching I am confused which one I have to buy. Need help from you community to please suggest me which one is best and compitable for my laptop.
    I see below 2 model in AMAZON. pls let me know which one is compitable for my laptop.
    http://www.amazon.com/MagSafe-Adapter-MacBook-Packaging-Warranty/dp/B00ATYFY7G/r ef=sr_1_1?s=electronics&ie=UTF8&qid=1375291474&sr=1-1&keywords=Apple+60W+MagSafe +Power+Adapter
    http://www.amazon.com/pay4save%C2%AE-Replacement-MagSafe-Connector-Warranty/dp/B 00ATZUI0I/ref=sr_1_4?s=electronics&ie=UTF8&qid=1375291474&sr=1-4&keywords=Apple+ 60W+MagSafe+Power+Adapter

    I personally would not purchase either charger.  I have seen many posts on this forum complaining about 'inexpensive' chargers and batteries for Apple MBPs.  To purchase these 'knockoff' counterfeits is tantamount to throwing your money away.  They may be 'refurbished' by a third party (something Apple does not do with chargers) but that would indicate that they failed before.  Or they may be cheap imitations built to questionable standards.
    You have spent a lot of money on your MBP, do not let it suffer a malfunction just to save $50.  You may find that repairs might cost a lot more than that.  Buy a real one from Apple as Ralph suggests.
    Ciao.

  • App Store icon for updates needed is incorrect

    The App Store icon on my phone shows that I have apps to update.  When I click on the icon to install them, there are no updates to install.  The number of UNneeded apps is always '3'.  For example, the icon will show that I need 3 updates, when I check there are none to install.  If the icon shows 5 updates, when I check there are only 2 to update.  This just started happening shortly after iOS 7 was released; I have not installed it, nor do I plan to install it anytime soon.  What is causing this?  I took a picture showing the icon indicating 3 updates needed and the update page being blank, and I can post it if desired.

    I've seen reports of this happening when updates have been issued for apps that make them only work on iOS 7, users of earlier versions of iOS get notified that there are updates pending but when you actually go into the app store updates function it realises they don't apply to you because you are on an earlier version of iOS than what the new versions  require.
    In fact I just had a very similar experience on my iPod touch with iOS 6, in App Store app it flagged 7 app updates in red badge but when I clicked on the Updates button it only listed two  apps to update, once they'd been applied the outstanding updates badge disappeared.

  • What is this 205 error thing all i want to do is make cartoons is that so much to ask for i need help really bad ):

    all i want to do is make cartoons with photoshop and other programs but i cant is that to hard to ask for  ??? ): i need help very very badly

    Errors 201 & 205 & 206 & 207 or several U43 errors
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Can't update new software update need HELP

    Ok I got the Jan software update and well I just know really how to just install it. I red someone's post here but it's just not clear on how to do it. Is there someone that can tell me in a clear way the steps to do it please. I know he said to do a folder called "Mobile Applications" and to put the downloaded file (iPod touch App Pack 4A93.ipa) in it, so I did it and I put it in the iTunes folder in my "Music" folder, I pressed Sync and no software appear. So I just need help with this please!!!!!!
    Thanks all!!!!

    Ok got it to work. I had to disable Manual manage music + video button but lost every thing because of this but I got my software update!!!!
    Thanks

  • Mac App Store works fine for buying/installing new software, but times out when looking for updates. Help?

    I just got a (lightly) used Mac Mini as a second computer (2010 model). Logged into Mac App Store with my Apple ID and tried to check for updates...received "An error has occurred - The request timed out" message. Was able to go to the main App Store page and download/install OS X Mountain Lion...then tried again and still got the time-out error. Any ideas of what is happening and how to get Software Update to work?

    Apps already installed by the former owner of the Mini are associated with that persons Apple iD. You won't be able to update any of those apps using your Apple iD. Those apps will have to be purchased from your Apple ID only.
    Apparently the previous owner had not upgraded to Mountain Lion as yet, or you would not have been able to download and install that OS X.

  • ITunes and Quicktime Error after automatice Apple update, need help!!!

    So I currently have a new labtop with windows vista. I have been runining iTunes for the pass 3 months already no problems. The Apple automatic update has never caused any problems till now. Quicktime needed to be updated today, and I accecpted the update, prior to that iTunes and Quicktime was working properly. Once the quicktime update was complete, it restarted my computer like usual. Then when I tried to open iTunes this error came up:
    "iTunes cannot run because it has detected a problem with your audio configuration"
    Now I checked the audio configuration and nothing was changed or anything, that has not been touched at all, so I still think it had to do with the update. The next error was came up when I tried to open Quicktime and it read:
    "Runtime Error!
    Program C://ProgramFiles/QuickTime/QuickTimePlayer.exe
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information"
    So as long as I have been using Quicktime and iTunes I have never encountered this, I tried to re-install but the error kept coming up after it was installed. Please help me out!

    try doing following the steps in these articles
    http://docs.info.apple.com/article.html?artnum=31115
    and
    http://docs.info.apple.com/article.html?artnum=93976
    hope this helps

  • Bootcamp partion lost after OS X update, Need help repair my disk.

    Hi.
    After updating to Yousimiti yesterday, i encountered som problems with my bootcamp partion.
    I wasn't able to boot from the partion. I googled a lot, and found some posts, where the problem was resolved, and followed the following steps:
    sudo fdisk -e /dev/disk0
    p
    setpid 4
    07
    flag 4
    p
    write
    y
    After this i was able to boot form my Drive, but it tells me: "Operating system missing".
    Then i started investigating further i saw that my bootcamp partion now only is 60GB, where before it was 100GB.
    When i first made my Bootcamp i made it 60GB which i fast found out was not enough for the programs i needed, so i used a program on windows to expand the patron, from empty space on the disk. Now i have 40GB blokced space, and the 60GB Bootcamp.
    From what i have read the problem is that Windows and OS X does not use the same Data table format.
    Is it possible to Rewrite the datable, os that OS X knows that the Windows part is 100GB and not only 60?
    Underneath here i linked to some screenshots of the problem, Hope you guys can help me! (Sorry that it is danish, hope you see et anyways)
    And there some info that i got from a "Partition inspector app":
    *** Report for internal hard disk ***
    Current GPT partition table:
    #      Start LBA      End LBA  Type
    1             40       409639  EFI System (FAT)
    2         409640    727569303  Unknown
    3      727569304    728838847  Mac OS X Boot
    4      859918336    977104895  Basic Data
    Current MBR partition table:
    # A    Start LBA      End LBA  Type
    1              1       409639  ee  EFI Protective
    2         409640    727569303  ac  Apple RAID
    3      727569304    728838847  ab  Mac OS X Boot
    4 *    859918336    977104895  07  NTFS/HPFS
    MBR contents:
    Boot Code: Unknown, but bootable
    Partition at LBA 40:
    Boot Code: None (Non-system disk message)
    File System: FAT32
    Listed in GPT as partition 1, type EFI System (FAT)
    Partition at LBA 409640:
    Boot Code: None
    File System: Unknown
    Listed in GPT as partition 2, type Unknown
    Listed in MBR as partition 2, type ac  Apple RAID
    Partition at LBA 727569304:
    Boot Code: None
    File System: HFS Extended (HFS+)
    Listed in GPT as partition 3, type Mac OS X Boot
    Listed in MBR as partition 3, type ab  Mac OS X Boot
    Partition at LBA 859918336:
    Boot Code: None
    File System: Unknown
    Listed in GPT as partition 4, type Basic Data
    Listed in MBR as partition 4, type 07  NTFS/HPFS, active
    If u need more info please tell me!

    The drive is dying, I doubt you can fix it, but...
    10.6 has been pulled from the online store & Apple Stores, so you have to call Apple to buy it, last I heard.
    Call Apple Sales...in the US: 1-800-MY-APPLE.

  • OS 10.2 update need help please!

    So i have a blackberry z10 which i bought off of someone, they were with either bell or rogers and than gave it to me and now it's with koodo. After buying the phone i noticed in small black letters at the top of me phone and it says " not for sale" and than a whole bunch of numbers. Everyone i know has the update except for me, i also live in Canada so i read that i was suppose to have the update already? I was told that i might have a " test trail" phone ? Like the phones that were given out to try out the z10, but i was told that if my phone is a test trail one it wouldve stopped working after a month and ive had it much longer than a month so i keep checking for th update and i know for a fact koodo has sent out their OS 10.2 update? So basically what im trying to say is, does anyone know if my phone can recieve the update or no? 
    thankyouu

    personally, I'd manually load 10.2, it's not hard, just need a PC, a downloaded file, and about 2-3 hours.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Screen saver from folder?

    In OS 10.8.5 is it possible to have the screen saver show pictures from a folder on the desktop? I can't see that option. You can do this with the desktop picture but thats not what I want.

  • Regarding addition of new field in mb1a, mb1b.

    Hi,           I want to add new field in mb1a or in mb1b in first screen below reason for   movement field and while saving this field value and with line item hav to be fetched and get stored in ztable.           Is it possible. Regards, Natchi.

  • XML Parser on UTF8

    The project I am working with is involves with UTF8 chars (ie. japanese,chinese) stored in XML file. I tried to test and use the sample XML Parser on Weblogic 7 by putting Japanese character on order.xml and ran the OrderParser.jsp then I got weird c

  • B&W Hard Drives

    I'm planning on buying a B&W G3 for use as a server, and would like to know if the 128GB limit is for one drive or two drives. In other words, if I put in two 120GB hard drives, can I use all 240GB? Also, what is the maximum amount of hard drives I c

  • Stream 7 - Reinstall local Office 2013 from Office 365 subscription

    Ok, I signed up for my free year of 365 3-4 weeks ago.  Doing so resulted in downloading the desktop Office 2013 for a local install. Takes up a lot of valulable space, and there are a few Office apps I rarely use (Access, etc.)  Mostly Word, Excel a