Oracle-tools-coherence-testing-support-2.0.0-RC3

Latest build seems to be missing oracle-tools-coherence-testing-support-2.0.0-RC3.
RC2 is there and all the other oracle-tools packages have RC3, but not coherence-testing-support.
Maven Repository: com.oracle.tools » oracle-tools-coherence-testing-support
If I modify the pom file to use RC2, I get compile errors.
-John

Hi
ODP assembly for 2.x was first released with ODAC 10.2.2.20, 10.2.0.3.0 and 10.2.0.4.0 are patch sets and not full installations so you have to have an insisting 2.x version of ODP already installed for the upgrade or it does not upgrade it if the machine never had a base install of ODP 2.x assembly. The way to get it is to install it into a new home or an insisting home already installed. So if you had already installed from the base release 10.2.0.1.0, that bundle only has ODP assembly for 1.x, you could install the 2.x assembly into the same home from the ODAC 10.2.0.2.0 bundle. If you start with a fresh machine then install from ODAC 10.2.0.2.21 to ODP .net 2 assembly and the base 10.2.0.1.0 client dependencies. Then you patch or upgrade to 10.2.0.4.0, but again when you apply the 10.2.0.4.0 patch set, you need to already have 10.2.2.0.20 already installed.
May I asked the specific installation bundle you used? and if you installed from ODAC 10.2.0.2.20. Do you have a C:\oracle\product\10.2.0\client_1\odp.net\bin\2.x directory and a C:\oracle\product\10.2.0\client_1\odp.net\ublisherpolicy\2.x directory? Can you show me the directory structure under C:\oracle\product\10.2.0\client_1\odp.net\...
Jenny

Similar Messages

  • Tora pkgbuild: oracle tool with postgresql and mysql support

    Tora is a tool for oracle databases with some support for postgresql and mysql.
    tora PKGBUILD
    pkgname=tora-alpha
    pkgver=1.3.14.1
    pkgrel=1
    pkgdesc="Qt toolkit originally for Oracle databases administration with some support for Postgresql and Mysql"
    url="http://www.globecom.net/tora/"
    depends=('qt')
    makedepends=('perl')
    conflicts=('tora')
    source=(http://dl.sourceforge.net/tora/${pkgname}-${pkgver}.tar.gz)
    md5sums=('5560b5104438e1b71bd89386d0fcdc00')
    build() {
    cd $startdir/src/tora-$pkgver
    ./configure --prefix=/usr
    --without-kde
    --without-oracle
    --without-rpath
    make || return 1
    make ROOT=$startdir/pkg install
    I'm posting this pkgbuild only for testing/research.
    Fist, it's alpha (aka devel) version but stable release does not want to easly compile on my machine and it's too old IMO.
    As you can see it can be built without the need for kde (good news for other WMs/DEs users).
    The funny thing is that I built it without support for... oracle :-) That's because it needs lots of oracle stuff installed and I don't have it. If someone has, he can build a static version of oracle support (if you do please post some info here if it works, etc.).
    The postgresql/mysql support depends on the qt package configuration. Current qt arch package does not inlcude postgresql/mysql plugin support. The next qt release will have mysql support at least (http://bugs.archlinux.org/index.php?do=details&id=1040, http://bugs.archlinux.org/index.php?do=details&id=1166) and I have made a feature reqest for postgresql http://bugs.archlinux.org/index.php?do=details&id=1244.
    I'm still not 100% sure if postgresql and mysql should/shouldn't be put in makedepends (according to the docs and mailinglists it's not needed). I'll check that again when new qt release will be available.
    In other words in such configuration and present qt version this application is pretty useless :-) (though it can be run). But I'm posting this pkgbuild for the others (if someone needs to test it or tries to build it, etc.). I'm sure tora will soon be more attractive especially for someone using oracle databases.

    This won't work using a newer oracle instant client version though, since the pathes won't be set correct.
    The Project TOra won't use automake, since the author refuses doing so.
    Probably it would be a larger patching work to get it working with instantclient_10_2 (the current release version from Oracle).
    Why so?
    It seems as if the include pathes for the oracle client won't be set correclty, since TOra seems to expect a full oracle product installation.
    The configure does not accept a --with-oracle-includes or --with-oracle-libs option any longer (in 1.3.21 it did). Therefore, TOra won't find in example oci.h, since it's not in any include directory known.
    Also, some other files are not in the path TOra expects them to be.
    Without the possibility of passing by configure options handling this, i guess it won't be possible to get this TOra version running with the current instantclient.
    // STi

  • The coherence cluster supports created how much cache?

    Hi,
    I have runing Oracle Coherence GE 3.6.1 in cluster.
    The coherence cluster supports created how much cache? cache type is Distributed Cache.
    Cache over-population will affect the performance of the cluster?
    Thank you!

    Do a test, the code is as follows:
    cache code
         public final long removeLike(String regex) {
              long l1 = System.currentTimeMillis();
    long result = 0;
    Set<String> setKeys = nc.keySet(new LikeFilter(new KeyExtractor(), regex + "%", (char)0, false));
    long l2 = System.currentTimeMillis();
    System.out.println("removeLike , execute time :" + (l2 - l1));
    return result;
    public final boolean removeStartWith(String prefix) {
    long l1 = System.currentTimeMillis();
    int i = 0;
    try {
    Set<String> keys = nc.keySet();
    Iterator<String> iter = keys.iterator();
    String v = "";
    while (iter.hasNext()) {
    v = iter.next();
    if (v.startsWith(prefix)) {
    ++i;
    long l2 = System.currentTimeMillis();
    System.out.println("removeStartWith , execute time :" + (l2 - l1));
    return true;
    } catch (Exception e) {
    LOG.error(e.getMessage(), e);
    return false;
    The above 2 methods are computational search KEY time, not to delete operation
    test code
         @BeforeClass
    public static void init() {
    try {
    cache = CacheFactory.getCache("testCache");
    } catch (CacheException e) {
    e.printStackTrace();
    cache.clear();
    for (int i = 0; i < 100000; i++) {
    cache.add("test-" + i,i);
    for (int i = 0; i < 100000; i++) {
    cache.add("hello-" + i,i);
    @Test
    public void testReadByDefaultKey1() {
    cache.removeLike("test");
    @Test
    public void testReadByDefaultKey2() {
    cache.removeStartWith("test");
    The test results show that the:
    removeLike , execute time : 637
    removeStartWith , execute time :125
    Circulating KEY faster than using likeFilter quickly.

  • Problem creating a new Glassfish 4 server with Oracle Tools for Kepler

    Hello,
    I installed Oracle Tools for Kepler with no problem. But when I want to create a new server and fill in the directory to the server (which is valid, C:/glassfish4/glassfish), nothing happens. I can only click 'back' or 'cancel'.
    There is no error message.
    Is this a bug in Eclipse or Oracle Tools, or do I do something wrong ?
    Thanks in advance for help.

    Hi,
    Could you let us know where you installed the GlassFish tools plugins from ?
    Glassfish 4 support in OEPE has been available since Glassfish was released in June. But it looks like a bug may have been introduced in the latest build  available on  http://download.java.net/glassfish/ which does not exist in the version available at http://download.oracle.com/otn_software/oepe/12.1.2.1/kepler/repository
    The workaround on the version you are running is to enter a dummy password value and this should allow you to create the Glassfish 4 server.
    I will be filing a bug to track this issue
    thanks
    Raj

  • Tool to test Webservices using SwA (Soap with Attachements)

    Hi All,
    I generally use the took xmlspy to test any webservice.
    But now i am working with a webservice that is using SOAP with Attachemtns.
    it seems we cannot use xmlspy to test/invoke webservices that use soap with attachements.
    is there any tool by which we can send/receive soap message along with attachements to and from webservices.

    Hi,
    Have you tried SoapUI?
    The standard (free) version & SoapUI Pro both support soap with attachments. Try it out & see if it works for you. SoapUI is proving to be one of the best tools for testing web services.
    Regards, Trevor

  • Does ATS load testing support Java RMI and  T3 protocol?

    Hi Experts,
    Does ATS load testing support Java RMI and T3 protocol or EJB(J2EE)?
    Thanks!

    Joseph,
    Oracle Application Testing Suite is mainly used for testing of applications from a end user perspective and offers an intuitive capture/replay for web, Siebel, EBS, JDE, Fusion apps or SOA based application through WebServices WSDL imports.
    The scripting environment (Oracle OpenScript) does not support script creation by recording JAVA RBI or T3 protocol as we lack a recorder for it, but the scrips are created as pure JAVA code so you could use the JAVA language to write a small RMI cor T3 client for your testing.
    We have customers that have used Application Testing Suite to test non-UI based testing, like: JMS, FTP, Tuxedo and others, but it require a bit of coding.
    Please let me know if you would like to know more or discuss your options
    regards
    Mikael Fries
    Principal Product Manager / Oracle

  • BR*TOOLS - BC-BRI SUPPORT

    1.  Is BC-BRI 6.40 & BR*TOOLS 7.0 supported by ECC 6.0? In other words are these supported by the SAP Kernel 7.0 that is used by ECC 6.0?
    2.  Also we need confirmation on ECC 6.0 installation & configuration. Is this a part of the mySAP business suite and will install NetWeaver as a common component. Will this installation include BR*Tools and confirm to BC-BRI 6.40

    Satya,
    DBATL700O10_41-20001356.SAR DBATOOLS Package for Oracle 10g 41
    Please let me know if its the current patch & how to proceed to apply the pathch?
    Yes this is the latest patch available in SMP. You can download it   & uncar it & then install in your systm. This does not require a downtime.
    Thanks
    Sushil

  • Help with Oracle Tools

    Hello.
    I need know if exist some tools for in database in oracle.
    I have a black berry that I use for support remote.
    I like that, when be an event in database, oracle can send an email a my black berry.
    I need the tools for the support.
    Can yuo help me please, if you know some tool.
    Thank you
    Edited by: Lecuirre Lamochie on Sep 13, 2010 10:14 AM

    The BlackBerry is a small tool that runs on Mobile phones and it supports some minor operations with database as i understand:
    http://www.blackberrysoftware.us/v,c3ltYmlhbjIwOA/blackberry_database_viewer_plusaccessexceloracle.jsp
    Basically the BlackBerry is like "PlSql Developer", "Toad", "Sql Developer" and others Tools that are meant for people to work graphically with databases.
    Al lthose Tools/IDE's are just connecting points to database software like Oracle. Those tools/IDEs connect to database and nothing more, those tools don't send sms-is, emails. You must program into your database software block that will start to send emails if something particular happens that you are interested in. Database events are catched with event handlers which are called "Triggers". So you should go to the event handler (trigger), and program there a block of code that sends out email.
    Can you describe more in detail what events you are interested in? Perhaps very general solutions exist in the market, but if you have specific business logic and need, then i doubt you get the software you need, You must do it yourself.

  • Why doesn't Oracle.DataAccess.Types classes support IConvertible?

    Hello:
    Is there a reason why the Oracle types don't support IConvertible?
    It is really annoying. Especially when cmd.Parameters["PARM1"].Value is usually an Oracle type and cmd.ExecuteScalar returns a .NET type.
    It essentially means I have to write different code for conceptually identical code. Is there are a way to tell Oracle classes what types I would like to recieve? Is there are way to get an integer, etc. without invalid cast errors and without needing to test my code first?
    I would really like to know what to expect when I access a property or a method. However, it is really hard for me. Some times I am expecting an Int32, but I will get a Decimal/OracleDecimal - even when I say in the OracleDbType that I want and Int32.
    If the Oracle type supported IConvertible I wouldn't have to worry about it and I could use the built-in .NET class Convert to do it for me. What am I to do? Am I missing something?
    Thanks,
    Travis

    For example:
    OracleCommand cmd = new OracleCommand("SCALAR_PROC", conn);
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.Add("PARAM1", OracleDbType.Int32, ParameterDirection.ReturnValue);
    cmd.ExecuteNonQuery();
    object o1= cmd.Parameters["PARAM1"].Value;
    // What is o1 without needing to guess?
    cmd = new OracleCommand("SELECT 123 FROM DUAL", conn);
    object o2 = cmd.ExecuteScalar();
    // What is o2 without needing to guess?
    // Shouldn't these return conceptually the same type?
    // How can I use the same code to get the type I want?
    Now, if Oracle types supported IConvertible, I could write this simple line of code to get an Int32:
    int i = (int)Convert.ChangeType(o1, typeof(int));
    Ta da! However, Oracle types cause an error because they are not IConvertible.

  • Oracle Primavera P6 v7 Support

    Does anyone know if Oracle will continue to provide support on P6 v7? As I heard that in the coming future, they will cease support on P6 version 7. Thanks.
    I really need to know before I do any upgrade on the product.

    Refer to Lifetime Support Policy | Oracle Support | Oracle
    This indicates Sustaining Support as "Maximizes your investment protection by providing maintenance for as long as you use your Oracle software. Features include access to Oracle online support tools, upgrade rights, pre-existing fixes and assistance from technical support experts."
    So you should get support for your version of P6 and upgrade rights.
    Regards,
    Sachin Gupta

  • I have a new Toshiba Thrive tablet and do not see it on the list of tested, supported, or unsupported devices. Will Firefox work on my tablet?

    I have a new Toshiba Thrive tablet and do not see it on the list of tested, supported, or unsupported devices. Will Firefox work on my tablet?

    You should be able to find Firefox by searching for it in the Android market on the device.

  • Whether Oracle 8.1.6 Supports Windows 2003 Server/Windows 2000 Adv. Server

    Dear All,
    Whether Oracle 8.1.6 Supports Windows 2003 Server/Windows 2000 Adv. Server.
    I tried it in windows 2003 server but i couldn't. Atlease tell me wheather it support windows 2000 adv. server. This is my first dba job.
    Under Doc ID: 66397.1 saying Oracle 8.1.6 Not Support Windows NT Server 4.0 Terminal Server Edition.
    Under Doc ID: 77627.1 saying Oracle 8.1.6 Supports Windows 2000 Support.
    Please help me out urgently.

    Since you have access to Metalink, you could be looking at the Certify tab to find this information. But, the answer is that 8.1.6 is no longer supported by Oracle. However, you should be able to install it on Win 2000 advanced server. You just can't get any support for it.
    The earliest version of db supported on Win 2003 was either 9.0 or 9.2, but 9.0 is desupported now as well.

  • Oracle RAC DIF/DIX support

    Does Oracle RAC database support DIF/DIX for data integrity? I am assuming this should be supported  with the use of UEK2/3 kernel. Thanks.

    Considering Oracle wrote DIF/DIX support for Linux, yes it does. It requires the use of ASMlib as well.
    See Preventing Silent Data Corruption in Oracle Linux for more information.

  • How to use "Oracle Real Application Testing"

    I am analyzing if/how my employer can make best use of "Oracle Real Application Testing". I therefore read various documentation and articles as well as the relevant sections in the "Oracle® Database PL/SQL Packages and Types Reference". However, there is one conceptual question which I could not yet answer from this documentation.
    From what I understood there are (at least) two possible approaches to capture and replay SQL workload:
    1) Capture the workload into a STS (SQL Tuning Set) using DBMS_SQLTUNE. Replay the workload before/after changes made to the system using DBMS_SQLPA. DBMS_SQLPA can be further used to compare the before/after execution and to generate comparison reports thereof.
    2) Capture the workload into OS files (and optionally into a SQL Tuning Set in addition to that) using DBMS_WORKLOAD_CAPTURE. Replay the workload using DBMS_WORKLOAD_REPLAY. DBMS_WORKLOAD_REPLAY can be further used to compare different replay runs and generate reports thereof.
    Now my questions are:
    {noformat}(i){noformat} Is the overview I sketched above correct or did I misunderstand/miss important points?
    (ii) What is the conceptual difference between the two approaches depicted in (1) and (2) above / what is the intended use for each of them?
    (iii) What is the difference between the information that DBMS_WORKLOAD_CAPTURE writes in the corresponding OS files and the information that is stored in a STS? From what I understand, both store information related to SQL execution during a certain period, including the impact of each SQL on the entire workload. Are the two just different formats to store the data (within and outside of the database) or is there any different information stored in them?

    Here you have books related to that theme:
    http://otn.oracle.com/pls/db92/db92.docindex?remark=homepage
    Joel Pérez

  • Oracle 9i Data Guard supported on Windows 2000 platform ?

    Is Oracle 9i Data Guard supported on Windows 2000 platform ?

    YES, we are currently using Data guard on 2000 Windows Server. Will need to have the Management server installed in order to get the Data guard function.

Maybe you are looking for

  • Colors in FCP looks different than when playing in QT7

    The colors of the video's in FCP looks different than when playing back in QuickTime. I wonder if it can be a color management setting in FCP? I have the same problem when playing a clip in AE. I have two FCP machines, but only one of them is having

  • Won't install on Win7 Home - says no admin tho I'm admin & only user profile

    Running Acer laptop Win7 Home edition, Avira Antivirus, Windows Firewall. Downloaded Firefox installer stub from Mozilla. On running it, it says 'extracting' then shows a message saying "Some facilities may not work installing with current user" and

  • Can't Add using more printers

    Hi, since I'm upgraded, I'm experiencing a wierd phenomenon... maybe someone can suggest a work around. I'd like to add a canon image runner through Canon IP. I go to add printers... click more printers. Select the canon protocol... enter the IP addr

  • Burned CD is distorted and stops playing after a few seconds

    I burned a cd in the usual manner with itunes, but the cd is distorted and stops playing in the cd player. I have burned dozens of cds in the past with no problem. Is this caused by the recent update?

  • I can't launch Tomeviewer

    I try to to get Sheepshaver running under Snow Leopard on my Mac Book Intel, in order to switch my LaserWriter 16/600 from AppleTalk to IP communication protocol. I downloaded Tomeviewer to extract ROM file from a generic OS 9.0 installation disc ; I