Push Synchronization - Oracle 10G

In the 10G Lite Data Sheet:
http://www.oracle.com/technology/products/lite/lite_datasheet_10g.pdf
it says that 10G has "Push synchornization support". My understanding of push has always been that the server can push out changes to the mobile when something important happens (i.e. through SMS). From the documentation, this does not seem to be the case. It seems to actually mean that you can use this to do an upload of data only (i.e.
"Use this setting to upload changes from the client to the server only, as download is not allowed. This is useful when the data transfer is a one way transmission from the client to server.").
Can you confirm my understanding is correct and that I can not actually push changes from the server?
Thanks!

John,
You are correct; the "push" occurs with client changes being pushed to the server, not the other way around.
Just for reference, another way to perform push synchronization is through Device Manager. DM can send a sync command to the client.
Please let me know if you have additional questions.
- Junius

Similar Messages

  • Data replication and synchronization in Oracle 10g XE.

    We are trying to do data replication and synchronization sort of thing for all our servers. We are using Oracle 10g. XE. I guess there are some features in oracle already for replication but I am not very sure about them.
    To explain it more clearly - we will have individual database servers in our sub-divisions and then divisions and centers and then main server. We need to synchronize at various levels. So If any body is aware of any techniques, please let me know.

    Hi,
    Could you tell me what exactly synchronisation your talking about..?
    we will have individual database servers in our sub-divisions and then divisions >>and centers and then main serverIf you have mulitple DB servers then you can connect it by DB links. also if you are talking DB synchronisation then you can have Triggers,Materialized views.
    we also have two independent severs which are synchronised(atleast schema levels).
    Regards!

  • I want to stop loop through push button forms 10g

    I want to stop looping through push button forms 10g it is like (SwingWorker() in java) (DoEvent() in .net)
    The problem in forms 10g that when you start looping the form will freeze and you can't push any button on form, I found solution for that in form 6i through package d2kwutil **WIN_API_UTILITY.InterruptCheck(hButton)**
    But in 10g I can't find solution, Please help>>>>>
    declare
         hButton          PLS_INTEGER;
    begin
    :interruptcheck.counter := 0;
    hButton := get_item_property('INTERRUPTCHECK.PB_OFF',WINDOW_HANDLE);
    go_item('interruptcheck.loopcount');
    set_item_property('INTERRUPTCHECK.PB_OFF',ENABLED,PROPERTY_TRUE);
    set_item_property('INTERRUPTCHECK.PB',ENABLED,PROPERTY_FALSE);
    set_application_property(CURSOR_STYLE,'HELP');
    set_application_property(CURSOR_STYLE,'<d2kwut60>WAIT');
    for i in 1..:interruptcheck.loopcount LOOP
         if WIN_API_UTILITY.InterruptCheck(hButton) then
              exit;
         end if;
         :interruptcheck.counter := i;
         synchronize;
    end loop;
    set_item_property('INTERRUPTCHECK.PB_OFF',ENABLED,PROPERTY_FALSE);
    set_item_property('INTERRUPTCHECK.PB',ENABLED,PROPERTY_TRUE);
    set_application_property(CURSOR_STYLE,'DEFAULT');
    end;
    Edited by: wael amar on May 1, 2010 11:03 PM

    Ok, here's a working testcase.
    The idea is taken from an article from an oracle magazine (i don't have it at hand, , so i tried to rebuild it by "memory". As far as i remember the original was from the german doag-magazine and was written by Gerd Volberg).
    Procedure to do the looping:
    PROCEDURE PR_DO_THE_LOOP IS
      nNumberInOneStep NUMBER:=2;
      tm               TIMER;
    BEGIN
         DEFAULT_VALUE(0, 'GLOBAL.INDEX');
      IF :GLOBAL.INDEX=0 THEN
           -- Didn't run yet, determine the max count
           :GLOBAL.MAX:=10000;
      END IF;
      LOOP
           -- Do the looping stuff
           -- Decrease counter
           nNumberInOneStep:=nNumberInOneStep-1;
           -- Increase globale counter
           :GLOBAL.INDEX:=:GLOBAL.INDEX+1;
           -- Exit conditions
           EXIT WHEN nNumberInOneStep=0;
           EXIT WHEN TO_NUMBER(:GLOBAL.INDEX)>=TO_NUMBER(:GLOBAL.MAX);
      END LOOP;
      -- reset index at end
      IF TO_NUMBER(:GLOBAL.INDEX)>=TO_NUMBER(:GLOBAL.MAX) THEN
           :GLOBAL.INDEX:=0;
      ELSE
           -- start timer for next iteration
           tm:=CREATE_TIMER('TM', 10, NO_REPEAT);
      END IF;
    END;The WHEN-TIMER-EXPIRED-trigger
    IF :GLOBAL.INTERRUPTED='Y' THEN
         MESSAGE('Interrupted at index ' || :GLOBAL.INDEX);
    ELSE
         PR_DO_THE_LOOP;
    END IF;The WHEN-BUTTOn-PRESSED-trigger on the interrupt-button
    :GLOBAL.INTERRUPTED:='Y';The WHEN-BUTTOn-PRESSED-trigger on the "start"-button
    :GLOBAL.INTERRUPTED:='N';
    PR_DO_THE_LOOP;

  • Oracle 10g to 11g Upgrade - Oracle Clusterware problem

    Oracle10g RAC (2 Nodes) RHEL 4 64bit
    Hi All,
    I have began the procedure for upgrading Oracle Clusterware to 11g. However, during the install OUI was giving me certain error messages like it couldn't transfer the OUI installlogs to node 2. Well, I kept pushing through the install and after I ran the last rootupgrade script on node 2 it gave me the following error:
    Checking the existence of nodeapps on this node
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/ops/opsctl/OPSCTLDriver (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Creating '/crs/home/install/paramfile.crs' with data used for CRS configuration
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/ops/opsctl/OPSCTLDriver (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Failed to retrieve VIP details
    Exception in thread "main" java.lang.UnsupportedClassVersionError: oracle/ops/opsctl/OPSCTLDriver (Unsupported major.minor version 49.0)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Failed to retrieve VIP details
    Setting CRS configuration values in /crs/home/install/paramfile.crs
    So I ignored the error for the time being and after that I checked the status of crs and it gave me the following:
    [oracle@vtl-rac2 crsd]$ crsstatus
    HA Resource Target State
    ora.VMRACDEV.VMRACDEV1.inst ONLINE ONLINE on vtl-rac1
    ora.VMRACDEV.VMRACDEV2.inst ONLINE ONLINE on vtl-rac2
    ora.VMRACDEV.db ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.ASM1.asm ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.LISTENER_VTL-RAC1.lsnr ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.gsd ONLINE ONLINE on vtl-rac1
    ora.vtl-rac1.ons ONLINE OFFLINE
    ora.vtl-rac1.vip ONLINE ONLINE on vtl-rac1
    ora.vtl-rac2.ASM2.asm ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.LISTENER_VTL-RAC2.lsnr ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.gsd ONLINE ONLINE on vtl-rac2
    ora.vtl-rac2.ons ONLINE OFFLINE
    ora.vtl-rac2.vip ONLINE ONLINE on vtl-rac2
    So i tried to bring it back up by doing a crs_stop -all and crs_start -all and it gave me the following error:
    vtl-rac1 : CRS-1019: Resource ora.vtl-rac2.ons (application) cannot run on vtl-rac1
    Start of `ora.vtl-rac1.ons` on member `vtl-rac1` failed.
    vtl-rac2 : CRS-1019: Resource ora.vtl-rac1.ons (application) cannot run on vtl-rac2
    CRS-0223: Resource 'ora.VMRACDEV.db' has placement error.
    CRS-0215: Could not start resource 'ora.vtl-rac1.ons'.
    CRS-0215: Could not start resource 'ora.vtl-rac2.ons'.
    I am thinking that all of this is caused by the various issues I had with the install. If I am incorrect, then please let me know. If it is true, I would like to know if there are any 11g docs on how to clean up a failed clusterware upgrade. Any advice would be greatly appreciated on any of the situations I am having.
    Thank you

    Hi Chandra,
    Did CVU report any problems before the upgrade?No, there were no errors reported by CVU before the upgrade.
    I don't there is note out there for cleaning 11g CRS
    install...and I think can very use the 10g CRS note -
    239998.1.Yeah I might have to go that way.
    I have both the 11g CRS install and upgrade from 10g
    to 11CRS at
    http://chandradba.blogspot.com/2007/08/oracle-11g-rac-
    install-on-red-hat-50.html
    and
    http://chandradba.blogspot.com/2008/02/oracle-10g-crs-
    upgrade-to-11g-crs.html
    see if it helps.Yup, your guide is very simple, clear and error proof :) That's how mine when pretty much except right around 75% I started getting these strange errors of files not being able to be transferred to node 2. Anyways, it shouldn't be a problem as none of those errors were configuration related...or else I would have a messed up cluster.
    Well, I actually rebooted both machines and now the whole CRS stack is up!! So I guess I am ok. We'll just have to wait and see.
    Thanks for your help Chandra...I always appreciate it.

  • Oracle 10g agent installation problem -- please advice. Thanks.

    I am trying to push an agent from a 32-bit CentOS 4.5 machine (where I successfully installed EM Grid Control with Database & that's working fine) to a 2-node Oracle 10g Clusterware/RAC, each machine has 64-bit CentOS 4.5. The questions I have are:
    1. Is this mixture of 32-bit/64-bit possible?
    2. When I am performing agent install, everything seemed to work (with manual root.sh execution provision) but at the end it's giving a message
    "Failure Preinstall Script Not Executed, Install Is Failed. Run root.sh Is Not Executed, PostInstall Script Is Not Executed. Collection Logs Is Success."
    And I don't see any agent* directory anywhere in any of the intended RAC Cluster nodes -- also, no error message log!
    Clusterware/RAC versin: 10.2.0.3
    EM Grid Control: 10.2.0.1
    I have no clue what are the meaning of these!
    Can somebody please tell me how to fix it (no upgrade suggestion please)?
    Thanks in advance.

    Hi,
    I noticed that you'd like to install OEM Agent for 32bit on 64-bit machine.
    Please look at the link below.
    http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html#101x
    Because OEM Agent on different platform are released separately.
    eg.
    For x86linux is Linux_Grid_Control_agent_download_10_2_0_2_0.zip
    For Linux x86-64 is Linux_x86_64_Grid_Control_agent_download_10_2_0_2_0.zip
    So could you please install OEM agent version for linx x86-64 ?
    but I can not find OEM agent 10.2.0.1 version on link above. Do you have this version for 64-bit ?
    Regards
    Jason

  • Download Oracle 10g express edition for window

    I want to download Oracle 10g Express Edition, but it seems that this version is replaced by 11g Express version.
    Is there any place which I can download 10g Express Edition?
    Thank.

    I think Oracle Corp. has removed 10g XE download because Oracle Corp. is pushing more for 11g now (10g XE was never officially supported but 10.1 and 10.2 Standard/Entreprise Edition are already in extended support mode: 10.2 will be in sustained support mode in July 2013).

  • How to create ODBC connection between Oracle 10g and MS SQL Server

    Hi,
    Can someone help us with the steps to create an ODBC connection between Oracle APPS using Oracle 10g database and MS SQL Server.
    Requirement is to extract the transactional data from MS SQL Server on a daily basis and dump it into Oracle tables for an interface to be run. Currently it is being done through Dataloader tool which we feel is causing the data issue with Arabic characters. We want to create the ODBC directly between Oracle and MS SQL Server and check if the data is being pulled correctly.
    The data is in sql server 2000 which has data in Arabic_CI_AS character set which is moved to Oracle 10.2.0.3 database with characterset AL32UTF8. The table data is moved to oracle using the dataloader 3.6 standard edition licensed version. We cannot change the character set of Sql Server 2000.
    Please help
    Thanks
    Shanil

    Hi,
    If you're trying to PULL data from SQLServer into an Oracle database, you wouldnt use Oracle ODBC driver for that, so you may want to post in the Heterogeneous Services forum instead:
    Heterogeneous Connectivity
    If you're trying to PUSH data from SQLServer into an Oracle database, you could use ODBC but most folks use OLEDB for that, and the following note on MOS should help:
    How to Create a Sql Server Linked Server With The Oracle Provider for OLE DB     (Doc ID 191368.1)
    As with any NLS related issue, the first thing to do is dump the codepoints of the data in the Oracle database to see if it is stored validly, rather than relying on what the data "looks like" from some tool or other. It's best to check a single row, with only a few characters in it if you can, and you can do that via
    SELECT DUMP(<columname>,1016) FROM <tablename> WHERE ...
    Hope it helps,
    Greg

  • Problem with XML doc inserting into oracle 10g

    Hi Guys, I have some knowledge in oracle 10g.
    We are doing an application, when we were trying to insert XML document (I was trying to insert XML as un-structured way.) into oracle 10g as a datatype called XMLTYPE column.
    My XML is having namespace attributes(Target namespaces) in that. So when i was trying to insert that into database , it is giving some error ,and not letting me to push that into database.
    So Can any body please help me in this. My constraint is that I have to insert the document as un-structured way.
    You help would be appriciated.
    Vish
    Message was edited by:
    user567405
    Message was edited by:
    user567405
    Message was edited by:
    user567405
    Message was edited by:
    user567405
    Message was edited by:
    user567405

    , it is giving some error Hmmm, six attempts and you still didn't manage to tell us what the actuall error message and number was. Oracle has thousands of error messages. If you would like us to help you, make it easy for us to figure out what's going on. Don't make us guess.
    Regards, APC

  • Replication of data from LDAP to Oracle 10g Database

    Hi All,
    in our application we are using Oracle Identity manager, and Oracle 10g database.
    we are storing the user,profile and privilages in LDAP and due to some reason we have to create user table in the 10g database.
    this user table values and LDAP user table values must be same.
    here the source is LDAP and destination is Oracle.
    so is there any way we can synchoronize or replicate the data from LDAP to 10g database?
    since oracle identity manager is integrated with LDAP,
    i feeel this must be possible.
    but really dont know how?
    kindly suggest me.
    and if any examples available please let me know, i will be very greatful to you.
    Thanks in advance

    Check out thread How synchronize OID user to a table?
    The title of the thread is: How synchronize OID user to a table?

  • One way replication from MS sql server to Oracle 10g

    Hi,
    We are using Sql server 2005 windows 2003 32 bit and Oracle 10g 10.2.0.3 on linux 64 bit
    Is it possible to replcate table data on real time from sql server (2005 32 bit or sql server 2000 32 bit)to oracle 10g running on linux 64 bit?
    If yes then what are the steps.
    It will be one way replication from sql server to oracle.
    Which option is best sql server dts or Oracle Stream replication to replicate table data?
    Regards,

    If you want to push data from SqlServer, then ODBC, Linked tables, DTS etc.
    If you want to pull data from Oracle, then Heterogenous Services / Gateway.

  • Sybase ASE integrator to Oracle 10g use Synchronous mode?

    I want to use ODI to replicate Sybase ASE data into Oracle 10g, what I've done is using "JKM Sybase simple" and "LKM SQL to SQL" and "IKM Oracle Incremental Update", then create a interface, create a scenario, create a scheduling running in Scheduler Agent, every 5 seconds get the journalized data from Sybase and refresh to Oracle.
    This is acceptable, but my question is: Can I set this scenario in synchronous mode, not pulling changed data every 5 seconds but instead of pushing changed data to Oracle just after DML committed in Sybase?

    No, not the current workbench. We will be bringing out support for Sybase 15 in SQL Developer at the next release.
    You could try bringing the db down to 12 if that was an option and then migrate from that.
    Barry

  • Stability of a database created on Oracle 10g Release 10.1.0.3

    Hello Friends,
    I would like to confirm if Oracle 10g Release 10.1.0.3 is a suitable platform to create Database.
    I have heard from a couple of DBAs that it is not a stable release to be creating and administering a Prod d/b and they recommend highly to migrate to 10.1.0.4.
    I have very recently configured a 10g d/b on 10.1.0.3 on AIX 5.2 ML 6 platform.
    I would like to know if anyone have administering D/bs n 101.0.3 have hit on bugs & whether its worth doing the migration to 10.1.0.4.
    Thanking you all in Advance
    Cheers...RCube

    The problem is, though, that the stability of the product is directly tied to unique aspects of your environment and unique aspects of your applications. If you are a relatively vanilla shop, doing relatively vanilla things, with relatively vanilla hardware, any version of Oracle is going to be stable. Any instabilities ought to show up during development and testing, in which case you can log an appropriate TAR and/or upgrade to a more recent patchset.
    Most of the people that encounter problems in any release are doing something unusual. They may be pushing some sort of limit, they may have some esoteric hardware or software setup, they may have a particular application that wants things "just so".
    There is a strong reporting bias towar folks reporting problems with any release. No one posts to a newsgroup to say "Hey, my 10g database is doing great today". The people that are most vocal are those that have encountered a problem. The folks that had problems with earlier releases have, for the most part, worked around them or upgraded-- the folks that are still running 7.3.4 are generally very happy with their database, it's been running for years without a problem. Was 7.3.4 more stable than 9.2, 10.1, 8.1.7, etc? Of course not.
    I guess my point here is that no one can tell you with any confience that any version of Oracle is stable enough for your particular situation. Were I a betting man, I'd bet that it was. The only way to know for sure, though, is to test.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Time synchoronization while configuring Oracle 10g RAC

    I am installing Oracle 10g RAC on 3 EHEL5.0 systems. The problem is the time can not be synchoronized although I had already enaled the Network Time Protocol and let all the related servers to be synchoronized with the same NTP server.
    I want to know why the time cannot be synchoronized on different servers?

    Time synchronization with RAC is critical. Oracle will refuse to install if you do not perform this step.
    You have three choices. The more risky one is to configure access to an external time server. I don't like this because it does create a path between my data server and the internet. The second is to build a time server in our data center that you reference. This is the best option as you can, and should, use that server for synchronize everything which is a great help with replication. The third choice is to arbitrarily choose one node and synchronize the other nodes with it. The downside is that if you lose that node you are at risk.
    There are plenty of instructions on how to create a time server on the internet but no matter which choice you make ... you will need root privs on operating system to configure it.

  • ORACLE 10G: Grid or not?

    The following is an excerpt from Ian Foster's article on What is a Grid?.
    &lt;....coordinates resources that are not subject to centralized control …
    (A Grid integrates and coordinates resources and users that live
    within different control domains—for example, the user’s desktop
    vs. central computing; different administrative units of the same
    company; or different companies; and addresses the issues of
    security, policy, payment, membership, and so forth that arise in
    these settings. Otherwise, we are dealing with a local management
    system.)&gt;
    My main point of confusion is that going from ORACLE 10G's capabilities, especially with new features like the 10G Database ASM, Streams, Transportable Tablespaces, 10G Application Server APM, Workload Management and all of 10G Enterprise Manager Grid Control array of features, systems built on this infrastructure cant be referred to as a grid, atleast from the foregoing excerpt.
    Please can someone put me right, assuming i am going wrong. I am researching into grid technology and where Oracle technology fits.
    Thank you.

    Hi,
    you shouldn't confuse - Oracle Grid is just hype
    but seriously this one is enterprise grid computing or
    computing on demand or utility computing.
    It's different from academic (classics) grid.
    Main goal of enterprise grid - reduce TCO of datacenters.
    It's based on usual "idiots" report of Gather (or may
    be IDS) that server's CPUs are too underload (idle).
    So you should dynamically distribute workload between
    few servers in RAC cluster (now named as Grid).
    And of course, it will be work automagically
    so bosses can fire all datacenter's personnel
    and manage just push one red button.
    SL

  • Documentation for Oracle 10g Lite

    Hello
    I have docummnetation for oracle 10g Lite but there is only informations what to do step by step. I'm looking generally informations about the features mobile databases, synchronization system, managment, and all development support. Where can I find them??

    I run Oracle Lite on Pocket PC, and I make some simple program which did some operations on database. I know that the support for .NET is small. But I'm writing the master of science work about three mobile databases (sql ce, oracle lite and sybase) and I have to write a program which will be testing performance of those databases on the mobile device.
    Generally I hope this program will work ok. But I also have to write about fuures for example oracle database lite RDBMS, but in documentation there is only few generally informations and almost all document is about how to configure it and how to do something.
    So if you have some generally documents (I have those white papers and other pfd on oracle site) please send it to me [email protected] .

Maybe you are looking for

  • Lenovo Yoga 11s SSD and RAM Upgrade - Great Results

    Picked up a Lenovo Yoga 11s from Best Buy.  I chose Best Buy for price, color, and processor.  They had a slightly better deal than Lenovo.com.  The clementine color looks great.  Quality is great.  I'm very happy with the purchase.  It has the i5 pr

  • Word opens, then crashes with this message:

    Word opens, then freezes, then crashes with this message: A COM exception has occured. This command is not available. Does anyone know what this is? Is there a way to fix this? I would appreciate help greatly! I am running Lion 10.7.3.

  • [SOLVED] set columns in vim does not work

    I would like to set the window size of my vim to 95 when working with markdown files, so put set columns=95 into an autosourced file when opening Markdown files. Unfortunately this has no effect and when I look at set columns? the window size is stil

  • Expanding column header interactive Reports dynamically

    In my interactive Reports one of my columns specifically my db_CUSTOMER_NAME column can be from 3 to 50 characters. (or even longer...) Was wondering how i can dynamically expand that td column "Dynamically" because i dont want to put a fix length ju

  • Please re-up "MSI GTX 560 TITFII.rom" 70.24.2E.00.6C (11.05.2011)

    Hello, can you please re-upload the latest bios for 560 ti tf2 oc from this topic: Latest GTX 560 TI BIOS 70.24.2E.00.6C (11.05.2011) https://forum-en.msi.com/index.php?topic=154221.msg1138775#msg1138775 it would be very nice if you re-upload this fi