Help needed in using oracle rules SDK

Hi,
For testing my rulesets using oracle rules SDK I doing the following:
1. Creation of dictionary, ruleSet.
2. Declared two kinds of globalVariable variables in my datamodel :
Final and non-Final.(Type of these varaibles are String and Double only)
3. Final globalVaraibles are used in creating rule's patterns.
4. Non-Final globalVariables are used in creating rule's action.
5. Functions are created for asserting globalVariables values and
returning non-final varaibles, since those are required as action
results.
6. In java code I am testing my ruleset (dict.testRuleSet()). Before
testing i am populating my final global variables (since these are used
in rule's patterns),
and updating datamodel.
The above procedure is working fine and I rules are successfully working.
Now, first of all i want to know if the above mentioned approach is correct or it needs to be reframed??
secondly, when i update datamodel with values (in java code itself) it
takes 4-5 seconds in updating it. This is the main issue that why it is
taking this much time??
any comment would be of great help.
Thanks in advance.

I will send up an alert for you, Colin. Even though I use iTunes for Mac, troubleshooting it isn't my forté.

Similar Messages

  • Performance Issue in using Oracle Rules SDK!!!!

    Hi,
    I am using Oracle rules SDK. I have created a dictionary and declared 9 global variables in it. Now, before testing my ruleset in my code, I populate those variables and update datamodel.
    Date startDate = new Date();
    try
    this.dataModel.update();
    *}catch (Exception e) {*
    e.printStackTrace();
    Date endDate = new Date();
    long duration = endDate.getTime() - startDate.getTime();
    System.out.println("Time Taken : "+duration);
    Now the issue is that time taken by dataModel.update() is freaking 4210 milliseconds, i.e 4.2 seconds. Any idea why this is slow??
    oracle.rules.sdk.editor.datamodel.DataModel = new DataModel(ruleDictionary);

    When your query takes too long ...
    Thanks,
    Karthick.

  • Hi I just changed from cs3 to photoshop cc and cant locate the tools bar usually at the top? Need to use the ruler tool?

    Hi I just changed from cs3 to photoshop cc and cant locate the tools bar usually at the top? Need to use the ruler tool?

    What operating system are you using?
    You don't see the tool options bar  (Window>Options) or your looking for the Analysis Menu which is now under Image>Analysis?
    You can also get select the ruler tool from the toolbox

  • Why we need to use Oracle B2B???

    Hi All,
    I have to know more about Oracle Fusion B2B.
    But I am not able to understand
    +Why we need to use oracle fusion B2B When we can Directly communicate with EBS & Trading Partner via BPEL & ESB+ .
    Please provide some documents which shows the requirement of B2B along with BPEL & ESB.
    I am not getting any document which talks about necessity of Oracle B2B.

    Yes you can connect via ESB but B2B provides additional functionality out of the box, e.g.
    - message metrics so you can see how many messages are received by partner.
    - It also allows you to mange SLAs with partners
    - Auditing
    - Manage partners
    - You also have the options of Adapters for the different industry standards
    In 11g this becomes alot more seamless integration the current version is still on 10.1.2 so your architecture can look a bit bloated.
    I believe the wait for 11g is not too far way, but Oracle have been saying that for some time.
    http://www.oracle.com/technology/products/integration/b2b/index.html
    cheers
    James

  • Help needed for using BASIC authentication through JDBCRealm

    Help needed.
    Hello,
    I am doing a degree project, so far it works fine in my local machine, I need to try it on my virtual hosting (as it is a live server).
    My project requires JDBCRealm, that is BASIC authentication loading access data from mysql database. Normally this setup can be done in Server.xml file, because my Tomcat hosting is a virtual one, I only have permission to access the web.xml file.
    My question is: is it possible to get it done in an alternative way? In web.xml? Some properties file maybe?
    Thank you very much.

    You can set this up for your context using META-INF/context.xml instead of working with server.xml.
    Make a directory called META-INF under your webapp ( it'll be at the same level as WEB-INF ). Under this, add a context.xml with all your context specific configuration including the realm. A sample is below
    <?xml version="1.0" encoding="UTF-8"?>
    <Context path="/myApp" reloadable="true">
        <Realm
            className="org.apache.catalina.realm.JDBCRealm"            
            driverName="com.microsoft.jdbc.sqlserver.SQLServerDriver"         
            connectionURL="jdbc:microsoft:sqlserver://127.0.0.1:1433;DatabaseName=myDB;SelectMethod=Cursor;"
            connectionName="username" connectionPassword="password"
            digest="MD5" userTable="users" userNameCol="userid" userCredCol="userpassword"
            userRoleTable="user_roles" roleNameCol="rolename"
        />
    </Context>Hope this helps.
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    ----------------------------------------------------------------

  • Help needed in using the DocCheck utility

    Hi
    Can somebody help me to use the DocCheck utility.I need to check that all the java files have the required javadoc tags and they are correct.
    I have downloaded the zip file and I have been giving the following commands
    c:\javadoc -doclet com.sun.tools.doclets.doccheck.DocCheck -docletpath c:\svk\jdk1.2.2\bin\doccheck1.2b1\lib\doccheck.jar -sourcepath<full path with the file name>
    But I get the following error message : No package or class specified.
    I also tried giving the following command:
    D:\SegaSource\sega\src\com\sega\account>javadoc -doclet com.sun.tools.doclets.do
    ccheck.DocCheck -docletpath d:\jdk1.3\doccheck1.2b1\lib\doccheck.jar User.java
    But I get the following message:
    Loading source file User.java...
    Constructing Javadoc information...
    javadoc: warning - Import not found: com.sega.account.address.Address - ignoring
    javadoc: warning - Import not found: com.sega.account.icon.Icon - ignoring!
    javadoc: warning - Import not found: com.sega.common.DateUtil - ignoring!
    javadoc: warning - Import not found: atg.nucleus.GenericService - ignoring!
    javadoc: warning - Cannot find class com.sega.account.icon.Icon
    javadoc: warning - Cannot find class com.sega.account.address.Address
    javadoc: warning - Cannot find class com.sega.account.MasterManager
    7 warnings
    please help
    Thanks
    SVK

    I have never ran the DocCheck from the command prompt, so I really don't know how to do it, but I do run it succesfully using ant (build tool from apache - jakarta, if you use tomcat you already have it installed).
    So.. if you do use ant.. this will help:
    <target name="doccheck" depends="prepare">
         <javadoc
              packagenames="${packages}"
                    destdir="${doccheck.home}"
              doclet="com.sun.tools.doclets.doccheck.DocCheck"
              docletpath="${doccheck.path}" >
              <classpath refid="project.classpath"/>
              <sourcepath refid="project.classpath"/>
         </javadoc>
    </target>If you don't use it.. I guess I was of no help, sorry.
    Ylan

  • Href and target tags tutorial/help needed for use with an existing website

    I have a website, (built through iweb), and an intro movie. I have spent a lot of time trying to understand the proper tags and how to use them without much luck. My goal is to have the homepage associated with my domain name load in a browser while at the same time have my intro movie open in a Quicktime Player window, play, and automatically close leaving the webpage visible. If anyone can point me to a tutorial or walk my through the process I would appreciate it.

    Poster movie style. Requires QuickTime Pro:
    Create an image (or a frame from your movie). This becomes the "poster". You could add text to it (Click to Play) in a graphic editor app to help your viewers or add text to the page under the image with these instructions.
    Save this new file as poster.mov
    It becomes the src="poster.mov" (source tag in the html code). Set its dimensions to fit your page layout.
    Your "intro movie" will be your href="intro.mov" (href tag in the html code).
    Open it with QuickTime Pro and then open the Movie Properties window. Click on the Presentation tab to see the choices. Automatically close option will close the QuickTime window. Automatically quit option will quit the running QuickTime Player app. This would be a better option as the browser should come back as the "front" application. You also want to check "auto play".
    Use Save As (preserves fast start feature) and name this file intro.mov
    In your html code for the QuickTime files you need to set target="quicktimeplayer" (this launches the QuickTime Player app instead of using the browser plug-in). It may also help if you use the full URL to both files in each tag (http://myserver.com/foldername/intro.mov).
    One of mine as an example. It uses automatically close window:
    http://homepage.mac.com/kkirkster/mycareerfuture/
    View the source code to see the tag structure. My page uses javascript instead of the older object/embed tag code.
    More useful links:
    http://developer.apple.com/internet/ieembedprep.html
    http://www.qtbridge.com/pageot/pageot.html

  • Help needed on using hardware tokens / Smart Cards for encryption

    I need help in filling the following gap in my understanding
    I know about
    1. Using keys in Java keystores to encrypt/decrypt data (Signing, symmetric encryption)
    2. Using Keytool to export a digital certificate to a keystore.
    I need help in knowing
    1. How the certificate stored in secret device is shared with java key stores. Do I need to use some special library.
    2. Is the process of encrypting Secret Key bytes defferent from wrapping the key?
    Specifically, I want to use iKey (USB based security hardware token) in my system, which says that it supports
    �� The PKCS#11 standard library
    �� The MSCAPI and CSP standard libraries
    �� Using automatic certificate registration

    > We have a current Server with 4 x 4 cores, 64 GB RAM, 6TB HDD, Windows 2K8 R2 and SQL Server 2K8 R2. On this server we have installed 6 SAP Servers(both ABAP and JAVA based). We want to install two more SAP servers on this machine but planning to use the Hyper-V Mode to ensure that there is no conflict. With this background here are my queries.
    You should not run SAP instances on the server with the hypervisor (the OS running on the metal). If you want to virtualize, then do it for all instances.
    Read
    Note 1246467 - Hyper-V Configuration Guideline
    Note 1570141 - Key Figures of Virtualization on Hyper-V
    > u2022             Is it possible to take a Image of existing installation (6 SAP Servers and SQL Server) that we have done?
    If they are running on the same OS you will always take images of everything.
    > I think this was possible in VMWare.
    So those 6 servers are virtualized already??
    > The issue I foresee is that in this image the servers are using Machine Name as host. In the Hyper V mode the host name will change. So how will this work?
    The safest way is to do a homogeneous system copy.
    > u2022             Can I run the normal windows mode along with Hyper V. Basically we want to keep our 6 SAP servers running and for the two new servers create two hyper V instances and allocate 2 cores and 4GB RAM each. Is this possible? Or as per Microsoft on the root we should not run any server?
    According to
    Note 1246467 - Hyper-V Configuration Guideline
    this should not be done.
    Markus

  • Help needed with windows oracle services

    Hi,
    I am using Oracle 8.0.6. After installing the database. i wanted to change the INTERNAL password. so i shutdown the oracle services. When i try to start the services 1)OracleServiceORCL ,2)OracleStartORCL, the first service is starting but the second service hangs up.
    Could anyone plss tell me if i can delete this service and recreate other. Plss describe the steps in detail.

    ateeqrahman wrote:
    Hi,
    I am using Oracle 8.0.6. After installing the database. i wanted to change the INTERNAL password. so i shutdown the oracle services. When i try to start the services 1)OracleServiceORCL ,2)OracleStartORCL, the first service is starting but the second service hangs up.
    Could anyone plss tell me if i can delete this service and recreate other. Plss describe the steps in detail.Is this a new installation or has it been working for some time?
    What OS?
    If it is new, why Oracle 8.0? It was never designed to work with any current operating system and I would be surprised if anything about it works.

  • Help needed urgent using jdbc

    Hi,
    How to check the existance of the table in the database using JDBC?
    Thanks in advance

    Depends on what DB vendor you are using. For example if your using oracle you could check for a match in "select * from ALL_TABLES".
    Another way is to do a query on that table and catch a SQLException.
    Exception thrown = no table.
    No exception = table exists.

  • ICan't ReInstall my computer  please help. need to use Mac for school next week

    I use my Mac for School and stuff happened.
    Long story short.
    1) I tried to reset my Mac Book Pro  computer and I did.( by pressing option key and go to disk utility and erase tab and erase)
    2) then I know I was supposed to go to Reinstall OS X Lion and I did but I quit. (took 10 hrs and plus my internet is bad and couldn't DL the other stuff)
    3) I remembered that I had a recovery disk. so I inserted it and I went to the disk utility, dragged the Macintosh HD to the restore tab, destination, and it copied my recovery disk data? to my Machintosh HD and the name of it changed to Mac OS X Base System ( the name of my recovery disk)
    4) and I tried to restart, shut down my computer, it sends me to the same Mac OS Utilities. Again.
    5) so I went to Reinstall Mac OS Lion, agreed, and the download destination usually should be the Macintosh HD ( for me its Mac OS X Base System right now) but it said it is locked (because I'm dumb) and i can't install it now.
    6) i don't know what to do now because this is not my computer that I'm sending this support from. and I can't use my original Mac Book. what should I do?
    AND I NEED TO USE THE MAC NEXT WEEK FOR SCHOOL.
    more info: MacBook Pro 13 inch Late 2011 ( got it for christmas)
    OS 10.7.5 ( recovery disk is 10.7.2)
    had no problems for 2 years.
    Why is Internet bad? Japan. thats why.
    For those who wonder why I wanted to reset/restore my MacBook Pro or, want to hear the long story:
    I play League of Legends, Steam, Osu! on my Mac and it took alot of capacity (or space).
    And League of Legends has thisthing called "Item sets" that when you save it, it doesnt save it in the client (or app),  it saves the "item sets" data in your computer (took alot of capacity/space)
    Not just that, and I had iPhoto but when i downloaded iLife to my mac, and after that, it said my iPhoto is damaged and it can't open.
    And summer ended, my parents said If I fail my 11th grade, they are going to kick me out so I told them I'm going to reset my Mac to factory settings and get a fresh start, well this happened.

    hi there! I got it back to work by buying the USB version of Mac OS X Lion 10.7
    and since my internet connections are kinda bad, I'm not able to download and update it to 10.7.5.
    but anyways I got it back to work.
    All I can say is I suggest you to buy the USB version of Mac OS X Lion 10.7 from amazon or apple store.

  • Help needed to use only SQR reporting with Oracle 10g

    I have very old SQR reports (ver 2.28) that are still being used by connecting SQR to an Oracle7 DB. We have migrated the data from Ora7 to Oracle 10.2.0.4. The issue is that SQR 2.28 is not able to connect to Oracle 10.2.0.4. Hence I want to use the new version of SQR that is part of OBIEE.
    I am not familiar with OBIEE and my interest is only using the SQR portion of it.
    1. Can any one help me as to how to go about installing SQR portion of OBIEE on a Linux Itanium 64-bit box? My Oracle 10.2.0.4 DB is also running on the same box.
    2. What are the minimum components of OBIEE I need to install to make use of SQR ?
    3. Any other relevant information
    Thanks.

    When installing webgate, make sure the Access Server is running. You will get this error if Access Server is down or not reachable. ( Make sure from the machine where you are installing webgate you can ping to Access Server by Name).
    Thanks
    Ram

  • Need help filtering spam using Mail Rules

    Hello
    My me.com address is on a **** spam email circulation list. Most of the emails come from .RU or .UA and every email address is different. I receive up to 3 a day.
    I have tried Mail rules to filter this, but for some reason it is not working. I have tried filtering the individual email address and all .RU addresses, but the Mail filter just doesn't apply the rule.
    I normally use Aliases for any only registration - so I am not sure how my real me.com account name was found. I have also tried VIW/MESSAGE/RAW SOURCE (see results below). I have replaced my me.com email address with "[email protected]".
    This spam is driving me nuts, so any help would be appreciated.
    Thanks
    Rob
    Return-path: <[email protected]>
    Received: from smtpin124-bge351000 ([unknown] [10.150.68.124])
    by ms221.mac.com (Sun Java(tm) System Messaging Server 7u3-12.01 64bit (built
    Oct 15 2009)) with ESMTP id <[email protected]> for
    [email protected]; Tue, 29 Dec 2009 19:16:44 -0800 (PST)
    Original-recipient: rfc822;[email protected]
    Received: from apport.ru ([unknown] [84.36.155.255])
    by smtpin124.mac.com (Sun Java(tm) System Messaging Server 7u2-7.04 32bit
    (built Jul 2 2009)) with SMTP id <[email protected]> for
    [email protected] (ORCPT [email protected]); Tue, 29 Dec 2009 19:16:44 -0800 (PST)
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=1.12.8161:2.4.5,1.2.40,4.0.166
    definitions=2009-12-29_17:2009-12-12,2009-12-29,2009-12-29 signatures=0
    X-Proofpoint-Spam-Details: rule=notspam policy=default score=7 spamscore=7
    ipscore=0 phishscore=0 bulkscore=1 adultscore=4 classifier=spam adjust=0
    reason=mlx engine=5.0.0-0908210000 definitions=main-0912290250
    Received: from [84.36.155.255] (port=38176 helo=looep)
    by xasfb.ia with psmtp id cx2519337 for [email protected]; Wed,
    30 Dec 2009 01:51:44 +0100
    Message-id: <[email protected]>
    From: Maynard Chapman <[email protected]>
    To: [email protected]
    Subject: Attractive tlittle
    Date: Wed, 30 Dec 2009 01:51:44 +0100
    MIME-version: 1.0
    Content-type: multipart/alternative; boundary="----=NextPart_xqdmfxhq.39935"
    X-Priority: 3
    X-MSMail-priority: Normal
    X-Mailer: Microsoft Windows Mail 6.0.6001.18000
    X-MIMEOLE: Produced By Microsoft MimeOLE V6.0.6001.18049
    This is a multi-part message in MIME format.
    ------=NextPart_xqdmfxhq.39935
    Content-Type: text/plain;
    charset="us-ascii"
    Content-Transfer-Encoding: quoted-printable
    Full videos =http://members.lycos.co.uk/gzoieks/Mysterious teniees
    ------=NextPart_xqdmfxhq.39935
    Content-Type: text/html;
    charset="us-ascii"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>Full videos <a =href=3D"http://members.lycos.co.uk/utiirce/">http://members.lycos.co.uk/gzoieks/
    Mysterious teniees</html>
    ------=NextPart_xqdmfxhq.39935--

    I am having exactly the same problem with mail not applying the rules. I have a rule set that if any mail is considered junk mail, to redirect it to [email protected] and to move it to the trash folder. I click "apply rules" on my junk mail, nothing happens. New spam comes in that it marks as Junk, nothing happens. I mark an email as junk, nothing happens.
    After over a year of problem after problem with my mac, I have almost lost faith. Can someone please help us?? Is anyone out there??
    Thank you,
    Kristen

  • ~~HELP~~please....I need to use Oracle 8i software.

    I have downloaded 3 times of the Oracle 8i(Personal Edition 2x & Enterprise Edition 1x)
    After i have successfully unzipped the file to a directory.
    Then i double clicked on the setup.exe
    After a while, a pop up msg come out as below:-
    JREW caused an invalid page fault in
    module JAVAI.DLL at 017f:6ee3803a.
    Registers:
    EAX=00000057 CS=017f EIP=6ee3803a EFLGS=00010202
    EBX=c0000005 SS=0187 ESP=0063ebf4 EBP=0063f188
    ECX=d8312e70 DS=0187 ESI=00000003 FS=6557
    EDX=817be86c ES=0187 EDI=00000000 GS=0000
    Bytes at CS:EIP:
    8b 4f 3c 33 c0 03 cf 2b f7 66 8b 41 14 33 d2 66
    Stack dump:
    0063f188 0063f2a4 0063f1cc c0000005 00000000 00000000 00000000 00400000 00010000 0000003f 00020000 6ee37ac9 00000003 0063edbc 00000104 0063ec5c
    Bug 1379284
    -Pentium 4
    -128 RDRAM
    -40 GB hardisk
    -Windows 98 second edition

    Cyber,
    This may be what you are looking for. It worked well for me.
    Flex is sweet, but with the number of people confused about setup
    with CF they sure aren't making any friends.
    Flex/ColdFusion
    setup

  • What client software do I need to use oracle? I am a student teaching mysel

    Hi, this is probably below eveyrone else but I am a complete novice with oracle and have never used it. But my teacher assigned me to install this on a SLES10 Linux machine and populate its database. My friend is going to help me witht he later but we just barely managed to install the majore database software on saturday adn that to like 8 hours for us. But now I hear we need to install some kind of client software to really use the database we installed. I mean we can type in some kind of address and change settings but what client software do we need? I look for the client but like 20 diffrent versions pop up and I'm not sure what to use. If this helps heres what computer it would be on.
    Laptop, on a Sles 10 Linux OS which is running of of VirtualBox. We downloaded and installled the latest oracle database software. 11. So now what?
    Please if you reply email me at
    [email protected]

    Hi ,
    What sort of student you are ? I meant.. are you going to study DB administration or Development.?
    IF DB Admin, you can use the sqlplus commmand line tool to study administration or the Enterprise manager database control provided with oracle. You can configure that.
    If for development, you can use the free tool from oracle -> sql developer or you can use thrid party tools like toad...
    HTH
    Mahesh.

Maybe you are looking for

  • Loan Auto approval while requesting in ESS

    Hai all, I am having a requirement that while applying a loan req in ESS that request should not go to the manager for approval. It should be approved when it is applied. So that the status should be approved when applying itself.\ So when i run the

  • Rescue and Recovery 4.3 on Win7 doesn't see a backup on external USB hard drive - Model W510

    I've run the Rescue and Recovery utility within Windows 7 on two different external USB hard drives thinking that maybe it was a usb drive issue.  When I open the R And R utility in expert mode I can see that both backups exist on their respective dr

  • Need help with General Error message

    I am in desperate help on trying to capture video from my camera and I keep getting a General Error message. I'm using FCE HD 3.0 Camera is Panasonic DVC60 I've hooked up the camera, named the project, clicked Capture, the camera window opens Now I'v

  • Can I failover a DHCP failover server?

    Greetings, I'm in the process of putting together an enterprise wide DHCP design.  I'm planning on leveraging the hot failover feature in Server 2012.  I'll be using a hub-and-spoke topology with a server in our primary datacenter acting as the failo

  • Is it possible for split Delivery Quantity?

    Dear all, Give me clarification . Reg user done the pgi for one delivery one line item with quantity 19, he want to split that quantity for doing 2 invoices as 15q and 4q. if possible tell me how? Regds, nar