NoSQL Oracle database charger with EE last does not work

I am unable to run the NoSQL Oracle database loader to load data at: http://www.oracle.com/technetwork/products/nosqldb/documentation/index.html which is included in the documentation with the latest download of Oracle NoSQL. I downloaded the EA on my Unix machine and have the JAVA version:
race of '1.7.0_17 '.

(I'm under KVlite. I was able to run the Hello Big World Data example).

This is step 6 in the Readme.txt file that I can't run.6. To load the contents of the tweeter to the Bank to run this command:
$java - cp SAMPLE_HOME/OLH/ONLH/deploy/onlh.jar; SAMPLE_HOME/OLH/ONLH/lib/NoSQL/kvclient-1.2.123.jar oracle.kv.sample.Loader-i SAMPLE_HOME/OLH/ONLH/deploy/airline_tweets_search-03-01-2012-082206.xml m ' < username > US ' - n "username <>" - v "< user name > < userID >" d "|" xml t

I have the tweets.xml of the airline and the jar two files onlh.jar and kvclient - 1.2.123.jar in the deploy directory. When I unzip the package does NOT contain the HLO directory (as shown in above command) if it is a question with above. Also; use the JAVA throw errors in above.
I ran the following:

[deployment cloudera@localhost] $ java - cp onlh.jar - jar kvclient.jar oracle.kv.sample.Loader-i airline_tweets_search-03-01-2012 - 082206.xml - m ' < username > US ' - n "username <>" - v "< user name > < userID >" d "|" xml t

My output:

11gR2.2.0.39

(I don't get a validation error message invalid as described in examples of java files. I tried many variations that precedes. In addition, the sample in the README.txt step 6 also does not align with the documentation available in the java file < tagname1 > < tagname2 > use. I am able to run step 5 to see the use of arguments.

I'm out of options on how to solve this problem and would appreciate some advice asap for a demo that I build. I certainly need to have this job so I can load my own cvs (with a few tweaks to the arguments). I'm beginner JAVA Programmer so explanations with examples are greatly useful.
Thank you

>

[deployment cloudera@localhost] $ java - cp onlh.jar - jar kvclient.jar oracle.kv.sample.Loader-i airline_tweets_search-03-01-2012 - 082206.xml - m "US "-n ""-v " " d "|" xml t

The file README says to the kvclient and the onlh.jar - cp, not onlh.jar in cp and the kvclient as the - pot arg. If you move the kvclient.jar to the - CP

only.jar:.../kvclient.jar - cp

It will work.

Charles

Tags: Database

Similar Questions

  • How can I get the serial number for update for first pro cs4 4.2.1, one provided with the product does not work.

    How can I get the serial number for update for first pro cs4 4.2.1, one provided with the product does not work?

    You don't need a serial nr for updating a program

    You need the original CS4.0. install and add the series nr. to get the program to work.

    Now you can update to 4.2.1

  • With the clause does not work in SqlPlus for DataBase 11 GR 8 1 material

    I have 11 GR 1 database material, when I connect to my database through SqlPlus (version 8.0.6.0.0) this query
    with x as (select * from areas) select * from x;
    does not work. But when you use SqlPlus provided by 11g, this query works well. This query can run on an older version of SqlPlus?

    user12222356 wrote:
    This client software is installed with Oracle developer 6i form. should I remove all the form developer? Latest version of the form developer is available for 11 GR 1 matter?

    Well, you have problems with the developer of forms?

    I wouldn't recommend delete because you have problems with the SQL more customer that goes with it. I recommend to download the instant client and using them for your needs of sqlplus and leaving the rest products installed on your machine only.

  • BEFORE the UPDATE of relaxation with time stamp does not work as expected

    We have a scenario where I check update operations on a table.

    I created a before update TRIGGER, so that every time he goes an update on the main table statement, one before the image of the lines is captured in the table of audit with timestamp.

    Since it is before updating, ideally the audit table timestamp (TRG_INS_TMST) should be less main table timestamp (IBMSNAP_LOGMARKER) VALUE, I mean TRIGGER should happen before the update.

    (I could understand in a way that the UPDATE statement is formulated with SYSTIMESTAMP earlier before the TRIGGER is evaluated and so UPDATE is to have a time stamp prior to TRIGGER, but this isn't what we wanted. We want PRIOR update)

    'Table' IBM_SNAPOPERATION IBM_SNAPLOGMARKER            
    ---- ----------------- -------------------------------
    T1   U                 13-OCT-15 03.07.01.775236 AM   <<---------- This is the main table, This should have the latest timestamp
    T2   I                 13-OCT-15 03.07.01.775953 AM
    

    Here is my test case.

    DELETE FROM TEST_TRIGGER_1;
    
    DELETE FROM TEST_TRIGGER_2;
    
    SELECT 'T1', ibm_snapoperation, ibm_snaplogmarker FROM TEST_TRIGGER_1
    UNION
    SELECT 'T2', ibm_snapoperation, TRG_INS_TMST FROM TEST_TRIGGER_2;
    
    INSERT INTO TEST_TRIGGER_1 (ID,ibm_snapoperation, ibm_snaplogmarker)
         VALUES (1, 'I', SYSTIMESTAMP);
    
    COMMIT;
    
    SELECT 'T1', ibm_snapoperation, ibm_snaplogmarker FROM TEST_TRIGGER_1
    UNION
    SELECT 'T2', ibm_snapoperation, TRG_INS_TMST FROM TEST_TRIGGER_2;
    
    UPDATE TEST_TRIGGER_1
       SET IBM_SNAPOPERATION = 'U', ibm_snaplogmarker = SYSTIMESTAMP;
    
    COMMIT;
    
    SELECT 'T1', ibm_snapoperation, ibm_snaplogmarker FROM TEST_TRIGGER_1
    UNION
    SELECT 'T2', ibm_snapoperation, TRG_INS_TMST FROM TEST_TRIGGER_2;
    

    Def trigger:

    CREATE OR REPLACE TRIGGER etl_dbo.TEST_TRIGGER_1_TRG BEFORE UPDATE OF IBM_SNAPOPERATION
    ON TEST_TRIGGER_1 REFERENCING OLD AS OLD NEW AS NEW
    FOR EACH ROW
    WHEN (
    NEW.IBM_SNAPOPERATION= 'U'
          )
    DECLARE
    V_SQLCODE  VARCHAR2(3000);
    --PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    INSERT INTO etl_dbo.TEST_TRIGGER_2
    (ID,
    IBM_SNAPOPERATION,
    IBM_SNAPLOGMARKER,
    TRG_INS_TMST
    )
    VALUES (:OLD.ID,:OLD.IBM_SNAPOPERATION,:OLD.IBM_SNAPLOGMARKER,SYSTIMESTAMP)
    ;
    --COMMIT;
    END;
    /
    

    Output is something like this

    1 row deleted.
    1 row deleted.
    no rows selected.
    1 row created.
    Commit complete.
    
    'T1' IBM_SNAPOPERATION IBM_SNAPLOGMARKER            
    ---- ----------------- -------------------------------
    T1   I                 13-OCT-15 03.07.00.927546 AM 
    1 row selected.
    1 row updated.
    Commit complete.
    
    'T1' IBM_SNAPOPERATION IBM_SNAPLOGMARKER            
    ---- ----------------- -------------------------------
    T1   U                 13-OCT-15 03.07.01.775236 AM   <<---------- This is the main table, This should have the latest timestamp
    T2   I                 13-OCT-15 03.07.01.775953 AM 
    
    2 rows selected.
    

    But for some reason, even after the creation of the 'AFTER' trigger for update, it works as expected. Sense - the main table is not having the last timestamp given

    It's OKAY - I told you in my reply earlier. Reread my answer.

    could understand somehow that the UPDATE statement is made with earlier

    SYSTIMESTAMP until the TRIGGER is assessed and updated so is to have

    time stamp prior to the trigger, but this isn't what we wanted. We want to

    BEFORE the update)

    As I told you before that your UPDATE statement occurs BEFORE the trigger is activated.

    Despite what the other speakers have said, it makes NO DIFFERENCE if you use a BEFORE UPDATE or an AFTER UPDATE trigger. Your UPDATE statement runs ALWAYS BEFORE the trigger.

    HE has TO - it's your update processing statement that causes the trigger to fire.

    Your update statement includes SYSTIMESTAMP. If during the processing of your return to update the value of SYSTIMESTAMP "at this exact time" is captured.

    Then your trigger is activated and starts to run. ANY reference to SYSTIMESTAMP that you use in your trigger cannot be earlier than the value of until the trigger was executed. It's IMPOSSIBLE.

    The trigger can use the SAME value by referencing: NEW and the column name you store the value. Or the trigger can get its own value that your code is doing.

    But the SYSTIMESTAMP value in the trigger will NEVER earlier than the value in your query.

    And none of these values can actually be used to tell when the changes are really ENGAGED since the trigger does not work and CAN NOT, to know when, or if, a validation occurs.

    Reread my first answer - he explains all this.

  • M1271mfw charger of HP printer does not work for scanner

    The charger works for making copies, but it does not work for the scanner.

    Re: M1271mfw HP printer charger does not work for scanner

  • Games used with Windows XP does not work

    Can I install XP on the same computer with 7?

    Games will not work on windows 7... It was the biggest reason outside the Office that I bought the new computer... now my games does not work...

    These are your options to get a game like work on Windows 7.

    If the program is not compatible, then you try to install and run the program in compatibility mode.
    Use the following steps:
    (1) right click on the program
    2) click Properties
    3) click on the Compatibility tab
    (4) select run this program in compatibility mode and select Windows Vista or other operating system, the program has been run successfully.

    Check out the link here: make sure to run older programs in this version of Windows
    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    If you are running Windows 7 Professional or Ultimate version, install Windows Virtual PC and Windows XP mode (http://www.microsoft.com/windows/virtual-pc/default.aspx) and run your software in Windows XP.

    If you run Windows 7 Home Premium, you cannot run Windows XP mode, but you can try VirtualBox (www.virtualbox.org) or VMware Player (www.vmware.com), or any other 3rd party software virtualization and install a separate copy of Windows XP (family or professional edition) for this purpose. You can find the virtualization software free that will run on Windows 7 Home Premium.

    Thank you

    Marilyn

  • MS Paint "fill with color" tool does not work. :(

    In the painting, my "fill with color" tool (the pouring paint can) does not work. I click on the box, I click on a different color, the icon changes to the can, but when I click on a space as say an empty circle, it doesn't do anything. Right click, nothing, left click, nothing.

    I noticed that the only thing he is able to do is to change a solid color that I did (as a solid black rectangle) in a different color, but only once. If I rectangle black color green, I can't change it to any other color after. I don't know what is happening.

    I am not edit a photo or anything btw, I start a new painting from scratch file. I'm trying just to circles of color and enclosed spaces. I've done this dozens of times with no problems. I tried restarting the computer and paint without effect.

    Thanks for any help!

    In the painting, my "fill with color" tool (the pouring paint can) does not work. I click on the box, I click on a different color, the icon changes to the can, but when I click on a space as say an empty circle, it doesn't do anything. Right click, nothing, left click, nothing.

    I noticed that the only thing he is able to do is to change a solid color that I did (as a solid black rectangle) in a different color, but only once. If I rectangle black color green, I can't change it to any other color after. I don't know what is happening.

    I am not edit a photo or anything btw, I start a new painting from scratch file. I'm trying just to circles of color and enclosed spaces. I've done this dozens of times with no problems. I tried restarting the computer and paint without effect.

    Thanks for any help!

    salés

    try to run the sfc/scannow command. to repair the corrupted system files

    http://support.Microsoft.com/kb/929833

    Use the (SFC.exe) System File Checker tool to determine which file is causing the problem and then replace the file. To do this, follow these steps:

    1. Open an elevated command prompt. To do this, click Start, click principally madeprograms, Accessories, right-click guest, and then click run as administrator. If you are prompted for an administrator password or a confirmation, type the password, or clickallow.
    2. Type the following command and press ENTER:
      sfc/scannow

      The sfc/scannow command analyzes all protected system files and replaces incorrect versions with appropriate Microsoft versions.

    Walter, the time zone traveller

  • Problem with BearPaw 2400CU Plus Scanner with Win7 Scanner does not work properly

    BearPaw 2400CU more does not work with Win7

    Yes I did, but it has not solved the problem

  • Sampling of colors with the eyedropper does not work.

    In Lightroom CC, I create a graduated filter. I want to give it a color, if I click in the gray box, which shows the colorpicker. I understand that you can pitch a color of the picture by clicking the box with the colors, then hold and go to the photo and release the mouse button, LR will choose this color. This does not work with me. If I click on the mouse button and let the color box, the slider in the color box drops to zero saturation and does not move with the colors of my photo I'm going with my pipette. It does not pick up the color.

    Same problem here! Selector is not looking for colors on the image window (it does outside of the Lightroom window!)

    I found that the problem occurs when the preferences are set to use the graphics processor.

    Disable the GPU and the color eyedropper tool returns to work on the image window.

  • 'Open with Photoshop Elements' does not work

    My photo does not open in Photoshop Elemtens, when I use "open with" to a JPEG file. The program starts, but no picture opens. What can I do?

    I did as you said, but it does not work.

    But I found the Solution in another forum:

    'open with photoshop elements EDITOR' and not with photoshop elements...

    He now works :-)

  • I got a problem with intel rst does not work, so I uninstalled it but want to reinstall.

    Original title: RST

    My cell phone message says RST service does not work - I does not recognize so I uninstalled Rapid Storage Technology completely and I can't restart.  Startup Repair is on-screen and worked for always.

    Hi Sue1234,

    Follow the steps below for a possible solution:

    Step 1: Start in safe mode and then try to perform the system restore when you uninstalled the RST.

    Start your computer in safe mode

    http://Windows.Microsoft.com/en-us/Windows-Vista/start-your-computer-in-safe-mode

    Step 2: Try restoring the system to safe mode.

    You can follow the items below:

    What is system restore?

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-is-system-restore

    System Restore: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/system-restore-frequently-asked-questions

    I hope this helps.

  • WITH query Clause does not work in Oracle reports.

    Hi gurus,

    I use a query WITH clause and want to create a report by using the same query.

    But when I am trying to build a report, request gives error like "WITH clause table or view does not exist.

    But the same query works perfectly in line of sql.

    Does support the Oracle WITH clause query reports?

    Please suggest.


    Thank you
    Onkar

    I met a similar problem before and worked around it by moving the query to a pipeline function in the database as described in the unexpected CLAUSE causes ORA-00942 in Report Builder

    I hope this helps.

  • with the syntax does not work

    Oracle Database 10g Release 10.2.0.4.0 - Production
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    AMT for 32-bit Windows: release 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> with t as
    unknown command "with t as" - rest of line ignored.
    Why is the syntax does not
    There is a sine qua non?

    Thanks in advance

    Because apparently your SQL * Plus version is too old and needs to be upgraded.

    I get to:

    -SQL * more: release 10.2.0.3.0 - Production 3 Jul 11:15:46 Mar 2012

    Copyright (c) 1982, 2006, Oracle. All rights reserved.

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With partitioning, OLAP, Data Mining and Real Application Testing options

    no error:

    SQL>  with t as
      2   (select * from dual)
      3  select * from t;
    
    D
    -
    X
    
    1 row selected.
    
  • Integration of Google map with Map Viewer does not work

    Hi team,

    My MapViewer Version: Ver11_1_1_7_B130111

    I created a Google Map (with the Source as "Google Maps" map Type) in the map viewer Oracle and I could see google map in Oracle Map Viewer (using 'show Map').

    I wanted to show a theme of map of the village on the google map above in a web page and I use Jdeveloper to integrate with data from the Village map viewer. I could see that the google maps within Jdeveloper however when I run the code Jdeveloper google map does not appear within the web page.

    I tried with Oracle Maps, Bing Maps as 'source' in the map viewer and tried to integrate within Jdeveloper and achieved the same result (white screen). However, when I tried an another mapviewer (Base map ELOCATION. OracleFMW MapViewer House WORLD_MAP) I could see the map on the web page.

    I could get all the other basic maps (created with "internal" as the source of the map") on the web page, so there is something that I'm missing with Google Maps, Bing Maps, Oracle cards. Could you please help me what I'm missing or point to a resource to help?

    Thank you
    Nag

    You need a newer version of JDev (like 11.1.2.x.x or later).

    Geomap DVT (if that's what you use) includes a local copy of oraclemaps.js.

    This must be a newer version.

  • WHEN FIREFOX LOADS IT CHARGE 40 + YAHOO TABS DOES NOT WORK IN OTHER BROWSERS YAHOO OF HOME PAGE

    WHEN I GO TO FIREFOX MY HOMEPAGE IS MY YAHOO. YAHOO FORTY TABS START LOAD AND IT SLOWS EVERYTHING DOWN NOT TO MENTION ALL THE STUPID TABS AT THE TOP OF THE PAGE. IF I USE SAFARI AND MAKE THE YAHOO HOMEPAGE, THIS DOES NOT HAPPEN.

    See the homepage with pipe character opens additional to the startup of Firefox tabs

Maybe you are looking for

  • Conncetion VPN works not-Tecra A8 / WXP

    Hello I have a Toshiba Tecra A8 (3 years) with Windows XP / SP3.Everything works fine (network cable or wireless; Bluetooth too), with when I tried to configure a VPN connection to my company's server, it does not work. The router in my house works w

  • Portege R830 - Windows does not start after I have install Comodo Firewall

    Good afternoon I bought today a Portege R830, and after the Windows configuration, the first program that I installed was the popular free Comodo Firewall. After that I restarted, Windows 7 unbootable. It would be stuck on the user login screen and I

  • Tecra A9 - how to restore the default settings?

    Hello, I have Tecra A9 pre-installed with Vista Business 32 bit. I want to recover my system back to normal just like when I bought it but without formatting my HARD drive also without changing the system partition.I want every thing with default (Re

  • How can I include a Labview graph in a report of TestStand?

    Hi all I have a new need that I have never done before in TestStand. I have a Labview VI, in which I'll send the results to a graph... I would like to include this chart in the report of TestStand. I searched help and forums and have developed empty.

  • noise of thermocouple

    I use a PCI-6221 (16 bit) card with a cable connection to a CB-37F-LP, connected to thermocouple type T (slope = 52nd-6 V/deg C) Perform the calculation, my temperature resolution should be: resolution of voltage = 2V/2 ^ 16 = 3.05E - 5V RES = resolu