Quick and easy fix for linux shell script in 1.2.1.32.13

Hello, right after installing sqldeveloper in my home directory and linking the script in my bin dir I found a small problem with the shell script for linux.
I downloaded the "Multiple platforms" zip file.
here is the fix:
change "dirname $0" to "readlink -f $0 | xargs dirname"
with this fix, linking to the shell script won't cause the script to use the bin dir instead of the real directory where sqldeveloper is installed.

This symptom occur because a 64-bit process that runs on a computer that is running an x64-based version of Windows cannot load the 32-bit .dll files that are required by some program features.
You may try the following work around:
You must use the 32-bit version of Windows Explorer. The 32-bit version of Windows Explorer is located in the %windir%\Syswow64 folder on the computer that is running an x64-based version of Windows.
To use the 32-bit version of Windows Explorer, follow these steps:
Click Start, click Run, type the following in the Open box, and then click OK:
Drive_Letter:\windows\syswow64\explorer.exe /separate
Note The placeholder Drive_Letter represents the drive where the x64-based version of Windows is installed.
For more information:
Some Windows Explorer extensions and some Control Panel items are not displayed on computers that are running an x64-based version of Windows
http://support.microsoft.com/kb/895561#appliesto
Now check if the issue is resolved.
You may want to try the following steps:
PDF thumbnail view via the Acrobat reader:
1. Run Acrobat Reader. In Reader, click File > Open and navigate to the folder(s) containing your PDF file(s). If necessary, move the slider to show all your PDF files.
2. Cancel out of Open and exit Reader.
3. Open Windows Explorer and navigate to the folders(s) containing your PDF file(s).
4. Click Views and move the slider until you see PDF thumbnails.
Thanks and Regards:
Sanjay Manju Suman
Adobe System Inc.

Similar Messages

  • Quick and easy install for wrt54g ver 8?

    So I decide to build my own computer. Not smart considering I'm a man with low patience. I finally got everything to work. This router won't. I don't feel like going through the manual. Mainly because when I installed this a while ago there was a program you could download from Linksys. The program would detect routers and such that didn't install correctly and fix it. Is it still around or do I have to go through the manual?

    If your Internet Service Providor is Cable follow this link
    If your Internet Service Providor is DSL follow this link

  • Quick and easy question for selection structures

    i'm new to java since I started an online course at school, and I was wondering if there was an 'and' conjuctive? i want to have a selection condition where two criteria must be met as opposed to using || where either one triggers a statement.
    the assigment is about using client programs. i want a dog to interect a certain way when it is aggressive AND hungry
    ex:
    if (dog1.getAgression () > 5 'AND' dog1.getHunger () > 5)
    // dog is hungry and territorial
    System.out.pritnln (dog1.getName + ": ");
    dog1.barkAngry
    }

    .... Points me += -1.Points to you -= 1you.points--What's your point?one more than hisGood point!

  • My Adobe has stopped allowing me to move library books from my PC to my KOBO (both show authorized on the ADE. the message reads : CE_COPY_NOT_ALLOWED - No permission to copy book.  It used to work. Any easy fixed for me?(I already tried uninstall and re-

    My Adobe has stopped allowing me to move library books from my PC to my KOBO (both show authorized on the ADE. the message reads : CE_COPY_NOT_ALLOWED - No permission to copy book.  It used to work. Any easy fixed for me?(I already tried uninstall and re-install)

    Welcome to the Club! Got the same Problem and had a really hard time reaching the Customer Support because they were down due to maitenance! Just wrote to their experts chat and hope to get an answer in this life!
    I tried to authorize my Computer and eBookreader with a new Adobe-ID, but it says I've done used this ID too often, even though it was brandnew! Can't copy my just-purchased eBook because "Copying is not allowed".
    I hold my thumbs for you that Adobe solves this Problem fast enough. Other ways I'll sell my eBookreader and buy the Kindle-Reader from Amazon and say GOOD BYE to Adobe!

  • I was using my wife's MacAir while my Macbook was in for repairs and now all of my printers want to do through her Macbook Air and unless it is on and on our home wireless, I can't print.  Is there an easy "fix" for this?

    I was using my wife's MacAir while my Macbook was in for repairs and now all of my printers want to do through her Macbook Air and unless it is on and on our home wireless, I can't print.  Is there an easy "fix" for this?

    See this post.
    tt2

  • Lesson for this weekend: Don't trust "quick and easy"

    When they say a process will be simple, quick and easy it really means it may or may not explode in your face!Started out on Friday simply wanting to write a new post for my site and update some old articles. Found out the php upload limit was too low for some of the server photos I wanted to add. No problem, just increase the limit right? Well no. Since the site was still in "Safe Mode" I couldn't change any of the advanced functions. The solution? Switch to Free Mode, billed as a simple process of a few clicks. Lets do this then! Clicked the deceptively easy "Switch to Free Mode" button prepared for a few clicks and getting on with my day. Filled out the information, set the flags I wanted, clicked go.....and it failed. That's fine, it went back to safe mode so I can just retry, right? Fails again. Third times the charm? Nope.At this...
    This topic first appeared in the Spiceworks Community

    When they say a process will be simple, quick and easy it really means it may or may not explode in your face!Started out on Friday simply wanting to write a new post for my site and update some old articles. Found out the php upload limit was too low for some of the server photos I wanted to add. No problem, just increase the limit right? Well no. Since the site was still in "Safe Mode" I couldn't change any of the advanced functions. The solution? Switch to Free Mode, billed as a simple process of a few clicks. Lets do this then! Clicked the deceptively easy "Switch to Free Mode" button prepared for a few clicks and getting on with my day. Filled out the information, set the flags I wanted, clicked go.....and it failed. That's fine, it went back to safe mode so I can just retry, right? Fails again. Third times the charm? Nope.At this...
    This topic first appeared in the Spiceworks Community

  • Passing a FILENAME from a LINUX SHELL Script to an SQLPLUS Script

    I written a LINUX Shell Script to receive a FILENAME. This FILENAME is the name of the file that I want to SPOOL into.
    So, below are two items.
    The first item is the LINUX Shell Script that has the FILENAME
    The last item is the SQLPLUS Script that is suppose to receive the name
    The LINUX Shell Script:
    #! /bin/sh
    LOGFILE="$(date +"%Y-%m-%d %H:%M") Oracle REPORT LOG.TXT"
    FILENAME="$(date +"%Y-%m-%d") PROD Unfinished Spot Bids.CSV"
    echo "File Name for the spool is:" "$FILENAME"
    #spool "$FILENAME"
    #sqlplus /nolog @run_test_query.sql
    #sqlplus -S @Unfinished_Spot_Bids_Run_V1.sql >$LOGFILE
    sqlplus -S /nolog <<EOF >$LOGFILE
    /* I want to pass to the SQL file below */
    /* The value that is contained in the the variable $FILENAME */
    /* How do you do that? */
    @@Unfinished_Spot_Bids_V1.sql
    spool
    set echo on
    EOF
    RV=$?
    #if {$RV -ne 0}
    #exit $RV
    #else
    echo "The return code fronm the sqlplus was:" "$RV"
    #fi
    Here is the SQLPLUS Script
    CONNECT glog_read/parker@OTMPROD
    set linesize 32000 trimspool on pagesize 3000
    set echo off
    SET TERMOUT OFF
    set heading off
    /* I want to parameterize the name of the file below */
    /* This file is executed from inside a LINUX Shell Script */
    /* That LINUX SHELL script is passed a file name */
    /* I want that filename used in the "SPOOL" statement below */
    /* So, how do I do that? */
    spool PROD_Unfinished.CSV
    prompt Shipment Update Date|Shipment Number|No of Shipments|Auctions per Shipment|No. of Carriers Notified|No of Bidders|Duration of Auction|Elapse time for first bid|Elapse time for last bid|Elapse time of bidding|Lead Time of Auction to P/U|High Bid- Low Bid Diff|
    set feedback off
    SELECT
    to_char(c.update_date, 'FMMonth, YYYY')||'|'|| b.SHIPMENT_GID
    ||'|'|| count (distinct (b.SHIPMENT_GID))
    ||'|'|| count(distinct(a.i_transaction_no))
    ||'|'|| count(*)
    ||'|'|| sum (case when a.responding_gl_user_gid is null then 0 else 1 end)
    ||'|'|| min (numtodsinterval((b.expected_response - b.insert_date),'day'))
    ||'|'|| min (numtodsinterval((a.update_date - a.transaction_time),'day'))
    ||'|'|| max (numtodsinterval((a.update_date - a.transaction_time),'day'))
    ||'|'|| numtodsinterval((max(a.update_date) - min(a.update_date)),'day')
    ||'|'|| numtodsinterval((max(b.shipment_time) - max(c.insert_date)),'day')
    ||'|'|| (max(a.bid_amount) - min(a.bid_amount))
    from tender_collab_servprov a, tender_collaboration b, shipment c
    where a.i_transaction_no = b.i_transaction_no
    and b.shipment_gid not in (select sqa.shipment_gid from tender_collaboration sqa, tender_collab_servprov sqb where sqa.i_transaction_no = sqb.i_transaction_no and sqb.acceptance_code = 'A')
    and a.i_transaction_no in (select i_transaction_no from tender_collaboration where tender_type = 'Spot Bid')
    and b.shipment_gid = c.shipment_gid
    AND c.update_date >= trunc(last_day(to_date((to_char(add_months(SYSDATE,-2), 'MM-DD-YYYY')),'MM-DD-YYYY')) + 1)
    group by c.update_date, b.SHIPMENT_GID
    order by c.update_date, b.shipment_GID;
    spool off

    ParadicePGMR wrote:
    First, I was getting an error on the SPOOL ${FILENAME}. Also, my file did have spaces and I did replace it with "_". It still did not work on the SPOOL Command. So, with or without the _, I never got the SPOOL command to work!
    It seems that the FILENAME value from the LINUX script was not being passed into the SQLPLUS procedure.
    How do you pass LINUX variables into the SQLPLUS procedure>
    Not sure if I had the right usage => ${FILENAME}above is correct syntax

  • I have what is hopefully a quick and easy question. I kno...

    I have what is hopefully a quick and easy question. I know almost nothing about this stuff so go easy on me . All I need to do is find out if my DHCP is enabled. I'm having problems with my Xbox 360 and one of the possible problems is this DHCP thing. However I have no idea how to find the settings for my router on my computer. If it helps I have a Wirless model BEFW11S4. Thanks in advance for any help.

    You need to access your router to check if the DHCP is on.  To access the router open your browser and type in http://192.168.1.1 into the address field and hit enter.  That should open the routers log on screen and by default the user is left blank (some routers it is admin) and the password is abmin.  If you changed your routers password as you should for security reasons then use that password.  That will bring you to your routers user interface and on the main set up page should be your DHCP.
    Richard Aichner (Ikester)

  • E1200 and "Quick and Easy Setup"

    My parents were trying to setup their E1200 router. We had to do a reset (using the button) since we couldn't access the router admin menu (someone had hacked/changed the password). I'm doing this remotely over the phone.
    Now, when they open Internet Explorer, they are getting a"Linksys Quick and Easy Setup" screen no matter what web site they try to get to. They don't have access to the original CD to install Linksys Connect. Mom says that when she clicks on "No CD? Download the software" link, nothing happens. Looks like she's got internet, though, as there's a link to the Linksys forums, and she's seeing updates from the forums."
    I don't know what this screen looks like, but isn't there some way to get past this splash screen? The computer is plugged into the router via a cable, so I'm not sure why they can't access the internet manually. Is there a way to just "disable" the "Quick and Very So Not Easy Setup" and skip right to using the internet?
    Thanks.

    Hi dapupster. I suggest that you let your parents do another reset. Tell them to make sure that they press down the reset button that's underneath the device ( please check the  picture). Let them press it down for 30 seconds while the device is powered on.  Once done, let them unplug the unit, plug it back in and try to access the setup page manually through 192.168.1.1.
    If the challenge remains the same, let them unplug the router from the modem and have them access the 192.168.1.1 page with only the computer that's connected to the router.  Hope the suggestions help.

  • Java GUI for a shell script

    I have a file with passwd format.I made a script for this file that is working as I wanted it to work.I have a list of options and each time I give an option,the script is doing something(for example,if I press "b" it makes something and if I press "a" it makes something else).All the results are an output from the file.
    My question is how can I create a GUI in java for this script.For example if I want the script to do what it would do if I pressed the "a" button on my keyboard,but not by pressing "a",but by choosing from a drop down list or some other graphical feature(by ticking a check box,clicking a button etc).Can I do this with java?
    Lazaros

    Hi,
    I understand you can create a Java Swing gui for a bash shell script which takes both complex input and writes output to the stdout & files, to be specific. Is that correct?
    If yes, could you give a simple example. Say for the following shell script.
    #!/bin/sh
    printf "Enter input\n"
    i=0
    while [ $i -ne 1 ]; do
    read $inputVar
    if [  "$inputVar" == "y" ]; then
    printf "You typed yes\n"
    i=1
    elif [  "$inputVar" == "y"  ]; then
    printf "you typed no\n"
    i=1
    else
    printf "Enter a valid character\n"
    i=0
    fi
    done
    Could you also point to some URL's which might help? Googling for "Java Gui for shell script" returns this as the first page, others dont really help. Googling "GUI for shell script" returns all other gui toolkits for xes but thats not what I want. I want a cross platform (nixes, Win*, MacOS* ) gui for a shell script ( which I plan to run using cygwin etc).
    TIA
    Vinod

  • Privilege problem on DBMS_SCHEDULER  execute linux shell script

    Hello, everybody,
    I'm a beginner on oracle development , recently , I use DBMS_SCHEDULER to execute linux shell script so that I can transmit files to another ftp server . The problem is , I can't use ordinary user to execute this shell ,but must use sys user , or the procedure will show error : Permission Denied;
    I can't change the files' privillege that need to transmit.
    I had tried these method,but no use:
    1. grant all privillege to user;
    2. change the privillege of shell and it's direcotry;
    3. use full path in shell;
    I hope someone could help me solve this problem , thank you!
    the error code :
    STANDARD_ERROR="ftp: local: test20121221173852: Permission denied
    ftp: local: test20121221173953: Permission denied
    ftp: local: test20121221174052: Permission denied
    ftp: local: test20121221174153: Permission denied"

    My /tmp/test.ksh trying to find database status.
    . ~oracle/.profile > /dev/null
    db_status=`eval sqlplus -s 'system/passwd@DEV' << EOF
    set pagesize 0 feedback off verify off heading off echo off
    select status from v\\$instance;
    exit
    EOF`
    echo $db_status > /tmp/db_status_out

  • [svn] 2312: CursorManager: New functionality and a fix for SDK-15029

    Revision: 2312
    Author: [email protected]
    Date: 2008-06-30 17:24:01 -0700 (Mon, 30 Jun 2008)
    Log Message:
    CursorManager: New functionality and a fix for SDK-15029
    * NEW: When the mouse leaves a window/stage where a cursor is set, the cursor no longer sits on the edge of the screen until the mouse comes back into the window, it disappears.
    * NEW: In AIR, when the mouse leaves an active window and glides over an inactive window (without giving it focus) where a cursor is set, the system pointer will be hidden and the custom cursor will appear while gliding over that window, and disappear when you leave that window.
    * FIX: When a cursor is set in a child Window, and the mouse moves over another Window or WindowedApplication, the cursor no longer disappears -- the correct system pointer or custom cursor will display.
    * Fixed listener leaks when switching systemManagers (neither Jason nor I can tell when/why it would happen in CursorManager, however).
    Reviewer: Jason
    Bugs: SDK-15029
    Doc: No
    QA: Yes, here's an exhaustive list of ideas:
    * We'll need tests for the new behaviors.
    * For all tests, we need to try behavior in air AND behavior in (sa)player, and test regressions.
    * Please test SDK-15583 again, all other cursor tests.
    * Take the test case for SDK-15029 and open up TWO MyWindows. Test how the cursors change across all three app windows when they are overlapped like a Venn diagram, with different combinations of custom cursors on and off -- we should have test cases for all of this behavior.
    * Test that custom cursors work properly when the mouse leaves a non-rectangular stage with transparency.
    * Test mouse drag situations -- drag off stage, release, move back to stage; drag off and back onto stage, etc.
    * In my tests, I found a lot of bad behavior in AIR, and player seemed to be fine. Do we have drag and drop use cases for AIR with custom cursors?
    A list of some bugs I encountered:
    * BUG (cosmetic): If the mouse is outside the stage when a cursor changes for the first time (say you toggle a checkbox which sets the cursor using the keyboard), the cursor will appear on the stage in the last known mouse position. When the mouse returns to the stage, everything will start working correctly again.
    * BUG (cosmetic): In AIR, if you drag out, and back into the window, then release, a MOUSE_OUT is fired again over the stage, which is wrong. The mouse coords given are (-1,-1), also wrong. This causes the system cursor to show instead of the custom cursor.
    * BUG: In AIR: if you drag off the edge of a Window with a custom cursor, the cursor will vanish. The MOUSE_OUT event correctly event fires while dragging off the window. Even though the handler tells the system mouse cursor to appear, it doesn't -- might be an AIR issue, since the mouse is still dragging when told to show. If you move back over the active window without dragging, the cursor goes back to normal.
    * BUG: In AIR: if you drag over another window with a cursor, MOUSE_MOVE events don't fire on that other window until you let go. Therefore, a custom cursor in that window does not get drawn, nor does a system cursor. If you move back over the active window without dragging, the cursor goes back to normal.
    * BUG: In AIR: When dragging, off a window, Event.MOUSE_LEAVE only fires after the mouse is let go (unlike MOUSE_OUT), EVEN IF the mouse is dragged back over the window and released over the window. So you're told the mouse left when it didn't.
    * BUG: In Player: I could never get Event.MOUSE_LEAVE to fire when added to the stage in saplayer or browser.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15029
    http://bugs.adobe.com/jira/browse/SDK-15029
    http://bugs.adobe.com/jira/browse/SDK-15583
    http://bugs.adobe.com/jira/browse/SDK-15029
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/managers/CursorManagerImpl.a s

  • Service packs and hot fixes for  BusinessObjects Enterprise XI 3.1

    Hello Experts.
    Which is the cronology or order of the service packs and hot fixes for  BusinessObjects Enterprise XI 3.1, or which are tha latest?
    thanks

    For BO XI 3.1, SP 5 is the latest, released in August 2011. You can directly install SP5 if you already have SP3 installed.
    Previous Service Pack is 4.0 and Fix Pack 4.1.

  • I want to install just ADOBE photoshop quick and easy. how?

    I want to install ADOBE photoshop quick and easy. how?

    You can download it from this page : http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop
    Regards,
    Ravi.

  • Quick and easy way to learn to use Oracle Spatial?

    Could anyone recommend a quick and easy way to learn to use Oracle Spatial?

    Depends on your style.
    Reminds me of a story a contractor to an IT department I worked in once told me.
    He used to work in Silicon Valley in the '70s and told a story of a company that
    hired a particular programmer who was brilliant but unstable. They used to set
    up a room with a VT100 and a bottle of Tequila. The programmer would arrive
    and set to work. As the Tequila emptied it was replaced. At some point over
    the following days or weeks a scream would be heard from the room, followed
    by a crash as the VT100 went through the window and the programmer disappeared.
    They would replace the window, the VT100, the Tequila and wait till he came back
    from "walkabout".
    "Extreme Programming" '70s tyle!
    OH&S would never allow this nowadays! That, plus Prozac means these sorts
    of programmers are probably very rare!
    Cheers!
    S.

Maybe you are looking for

  • Can I get my Note 3 Replaced with a newer build or switch to a different phone and pay the difference?

    First off, let me say, I really love my Galaxy Note 3 -- it is an awesome Smartphone...  Unfortunately, I am one of the users of the problematic Note 3s...  I got the phone and it worked great for about the first week I had it (I got it outside of th

  • Blackout on external monitor in dissolve

    Hi, I'm running a cross dissolve on FCP 5.0.4. The footage is well in the middle of the take (a good 30 seconds either side for both clips). On the computer screen it's fine. On the external monitor there is a black flash (maybe a frame's worth) in a

  • Unit price in the Invoice not printing right value

    Our customer is using RVAJUS for pricing procedure. We using ctypes, PR00, K007, ZRMS, and shipping cost condition types. No tax calculation. However in the invoice print outs, the Unit/1000 price is the Net value for item that gets printed. Which is

  • Thread does not get notify

    Hello, I start 10 Threads. If a thread must wait till recourse are valid then I call wait() method. If any recourse are valid another synchronized method calls notify() method to wake up the thread. I have the problem, that some the treads are in wai

  • Can I use iPad for internet games?

    Can I play Scrabble at Pogo.com using a WiFi iPad? They no longer allow me to use a 10.4 OS PowerbookG4 or my Mac G5 due to Java and Flash updates which no longer work on the older OS.  I am 70 years old, have had Macs since invented and I am not int