Command line installation for plugins

The documented way to install Apex 4.0 plugins is to use the Builder GUI.
Is there a way to install a plugin by running a SQL file similar to how a full application export produces a SQL file that can be used to install the application into another database?
Thanks

APEX 4.0.1 caught the vast majority of issues identified in 4.0. APEX 4.0.2 is there for any small things which didn't make it into 4.0.1 but which we don't want to defer until our next major functional release of APEX 4.1.
I expect some customers to raise some important issues to us at Oracle OpenWorld in September. Thus, I'm not planning on releasing APEX 4.0.2 until later in 2010 - maybe not even until after DOAG and UKOUG (which are in November) when we'll get more customer issues reported. Whereas I wanted to get APEX 4.0.1 out the door ASAP due to the large number of quality issues, there isn't anything compelling (at least today) that warrants moving up the date of APEX 4.0.2.
I believe APEX 4.0.1 is stable enough to upgrade.
Joel
P.S. By the way, will we be seeing you at Oracle OpenWorld?

Similar Messages

  • Command line parameters for al_engine.exe

    If you go to a command line window on a DS server and type al_engine.exe with no parameters it prints "Usage" information.  Some of the parameters it mentions are known to the community (like -XX, -XI, etc).  However there are some which sound pretty interesting, but I can't find any information or examples how it should be used.  Examples:
    -L<list of value> : List of Object Labels from UI (separated by , or ; or space) to filter.
    -Je<XML file> Execute the Installation scenario defined in XML file.
    -jd"datastore delta file in quotes>" : Modify datastore values using "file"
    -Jf, -Ja, -We,  and many more.
    I am particularily interested in -Je functiohnality - it sounds like it can be used to automate deployment.  I am using import/export options to do some automation, but real automation would include deletion of some objects, adding jobs to projects, etc.
    Can anybody help with the documentation/examples?

    The preferred way is to save your workflow as an application and then call usr/bin/open on it. If for some reason you must have the workflow run inside of Automator (not self-contained) then you're looking at some quality time with man osascript. As it happens Apple has removed even the need for Cron for most users. A click to File -> Save As Plug-In -> for iCal handles it from start to finish.
    Edit: I forgot to mention that Automator has its own simple command line utility for running *.workflow files. Check out man automator

  • Command Line Parameters for Run Application.vi in the LVWUtil

    I am trying to use the "Run Application.vi" located in the LVWUtil.llb.  I am sending a command line similiar to this:
    "C:\WINXP\system32\msiexec.exe" /i "C:\qc data\ZVMS Program Updates\Application Installer\install.msi"
    this command line works from the Start>Run dialog but the Run Application.vi only sees the beginning of the line "C:\WINXP\system32\msiexec.exe" so it opens the windows installler but does not go to the install.msi file and run it.  Does anyone know the correct command line formats for the Run Application.vi to run the entire command line?
    Thanks,
    BethV

    Hello BethV,
    I downloaded the LVWUtil32.zip file from the Windows API Function Utilities (32-bit) for LabVIEW example program.  In that zip file, is a library entitled Winevent.lib, which includes the Run Application.vi.  When you used this VI, I believe the string you passed in as a input had too many quotation marks.  Namely, you do not need quotes around the msiexec.exe call.  I passed the following string into the Run Application.vi and got the expected results:
    C:\WINDOWS\system32\msiexec.exe /i "C:\mymsi.msi"
    Please let me know if it helps.
    Message Edited by Wendy L on 10-21-2005 02:34 PM
    Wendy L
    LabWindows/CVI Developer Newsletter - ni.com/cvinews
    Attachments:
    RunApplication.GIF ‏2 KB

  • Command-line installation issue : InstallMediaPath parameter?

    Hello,
    I have an unsuccessful command-line installation of SQL Express 2008 R2. I need to do it to install a new local instance so that a Winforms application could use it (I'm packaging the app thus installing pre-requisites through my installer).
    I hit "InstallMediaPath" blank parameter issue, if I look into "C:\Program Files (x86)\Microsoft SQL Server\100\Setup Bootstrap\Log\Detail.txt".
    System.ArgumentNullException: Value cannot be null.
    2014-09-08 09:40:17 Slp: Parameter name: InstallMediaPath
    I read on the forums that this error can solve by uncompressing before running setup, so here are my two commands. I still have the issue.
    "Resources\SQLEXPR_x86_ENU.exe" /Q /X:"%TEMP%\SESetup"
    "%TEMP%\SESetup\Setup.exe" /ACTION=Install /QS /IAcceptSQLServerLicenseTerms=True /Features=SQL,Tools /InstanceName=MSSQLSAFETIFY /SQLSVCACCOUNT=\"NT AUTHORITY\\NETWORK SERVICE" /AddCurrentUserAsSQLAdmin /SECURITYMODE=SQL /SAPWD="somePassword"
    Earlier in log file I see a correct value for InstallMediaPath so am clueless.
    2014-09-08 10:00:51 Slp: Setting: SQLSVCACCOUNT
    2014-09-08 10:00:51 Slp: Value specified: "NT,AUTHORITY\\NETWORK,SERVICE /AddCurrentUserAsSQLAdmin /SECURITYMODE=SQL /SAPWD=somePasssword /ACTION=RUNRULES /RULES=GlobalRules /WORKFLOW=Install /TIMESTAMP=20140908_100041 /LOGMARKER=_GlobalRules /MEDIASOURCE=C:\Users\bpo\AppData\Local\Temp\2\SESetup\ /INSTALLMEDIAPATH=C:\Users\bpo\AppData\Local\Temp\2\SESetup\x86\setup\ /ENU /MEDIALAYOUT=Core
    2014-09-08 10:00:51 Slp: New setting source: CommandLine; previous setting source: Default
    2014-09-08 10:00:51 Slp: ----------------------------------------
    2014-09-08 10:00:51 Slp: Completed Action: ProcessFeatureCommandLineArguments, returned True
    Thank you so much for helping. Do I have some incorrect parameters?

    I finally found a solution, using a Configuration.ini file. Blog entry dealing with MS SQL unattended setup
    I suceeded with a configuration file, adding though two parameters to file, IAcceptSQLServerLicenseTerms="True" and SAPWD="passwordOfMyChoice".
    With command line only, I had "path2" parameter null value error, once I added /InstallMediaPath undocumented (?) option to my initial command line switches...

  • Compiling command line utilities for Linux with static libc

    Hi,
    The following command used to compile and link BerkeleyDB with both static libdb and static libc:
    make clean
    env LDFLAGS=-static ../dist/configure --disable-shared
    make
    Now the command only statically links libdb and not libc.
    [root@fedora8 ~]# ldd /usr/local/BerkeleyDB.5.3/bin/db_dump
    linux-gate.so.1 => (0x00110000)
    libpthread.so.0 => /lib/libpthread.so.0 (0x00c15000)
    libc.so.6 => /lib/libc.so.6 (0x00a88000)
    /lib/ld-linux.so.2 (0x00a69000)
    [root@fedora8 ~]#
    It appears that the link of the command line utilities has now been moved into "make install".
    Can anyone suggest how to also force a static link of libc?

    The command line utils are in /opt/novell/ncl/bin. There are man pages for
    them to describe how they work. If you run "ncl_man" it will list all the
    NCL man pages.
    >>> On 9/1/2006 at 8:42 AM, in message
    <[email protected]> , Joseph
    Marton<[email protected]> wrote:
    > Are there any command-line utilities for the 1.2 client? I'm thinking
    > what if my X gets hosed and I want to access my server. It'd be nice to
    > be able to still login and map drives. Granted there's always
    > samba/CIFS,
    > but if I have a working Novell Client installation and my X just fails
    > for
    > some reason it'd be nice to still utilize the Novell Client.
    >
    > Joe

  • Flo – A command line app for organizing events, to-dos, and deadlines

    Example
    $ flo watch movie,d020
    Ids are updated.
    $ flo eat lunch,d11100-d11130
    Ids are updated.
    $ flo
    0 08-16 20:00 d0 watch movie
    1 08-17 11:00 d1 eat lunch
    11:30 d1
    Usage
    flo [-a] [-c id] [-f from] [-r id] [-t to] [-w what] [what[,from][-to]]
    Options
        -a all items
    -c id change item
    -f from from date
    -r id remove item
    -t to to date
    -w what
    When changing an item, setting -f or -t to r removes the field.
    Date formats
    YYYYMMDDhhmm, MMDDhhmm, DDhhmm, DDhh, and DD are the valid date
    formats. Replace DD with dn to set the date n days from today's date.
    If the year or the month isn't specified, the current year and month is used.
    For formats without a month, if the date specified is before today's date, the
    month is set to the next month.
    The value for hours and minutes is set to 00 if no other value is specified.
    flo runs fast since it's written in C, and the goal is to keep it as simple as possible. It uses between 1–2 milliseconds to start when it's cached by the OS.
    The package is named flo-git in AUR. The development happens on GitHub.
    Last edited by alexanderte (2010-08-22 10:50:05)

    alexanderte wrote:
    Installation
    git clone git://github.com/alexanderte/flo.git
    cd flo
    make
    cp flo /usr/local/bin/
    # optional
    echo "alias f='flo'" >> ~/.bashrc
    You should always use Pacman to install packages on Arch. Here's a PKGBUILD:
    # Contributor: Xyne
    pkgname=flo-git
    pkgver=1
    pkgrel=1
    pkgdesc="A command line app for organizing events, to-dos, and deadlines."
    arch=('i686' 'x86_64')
    url="http://github.com/alexanderte/flo"
    license=('ISC')
    makedepends=('git')
    provides=('flo')
    conflicts=('flo')
    _gitroot="git://github.com/alexanderte/flo.git"
    _gitname="flo"
    build() {
    cd "$srcdir"
    if [ -d "$_gitname" ] ; then
    cd "$_gitname" && git pull origin
    else
    git clone "$_gitroot" "$_gitname"
    cd "$_gitname"
    fi
    make
    install -Dm755 flo "${pkgdir}/usr/bin/flo"
    You can learn more about PKGBUILDs in the wiki: http://wiki.archlinux.org/index.php/PKGBUILD
    I recommend that you upload it to the AUR as well, with any changes that you deem necessary. Don't forget to add yourself as the maintainer at the top of the file.

  • Is there a command line option for VNC to automatically launch in fullscreen mode?

    I can launch a VNC window from the command line, as such:
    open vnc://username:password@hostname
    ... but I'd like it to automatically start in full screen mode. Is there a command line option for this?
    I'm using an old MacMini purely to connect to another Mac over screen sharing, but when the MacMini boots I'd like it to go straight into the fullscreen of the other desktop.
    Many thanks!

    Set the Integer pref browser.sessionstore.max_resumed_crashes to 0 on the about:config page to get the about:sessionrestore page immediately with the first restart after a crash has occurred or the Task Manager was used to close Firefox.
    * http://kb.mozillazine.org/browser.sessionstore.max_resumed_crashes
    That will allow you to deselect the tab(s) that you do not want to reopen, but will allow to reopen other tabs.
    See:
    * http://kb.mozillazine.org/Session_Restore#Restoring_a_session_after_a_crash
    * http://kb.mozillazine.org/Browser.sessionstore.max_resumed_crashes

  • Command line parameters for automator?

    I'm trying to setup a cron job to so that every morning at 8 am "New Mail.workflow" will open and run. I'm able to get it to open but I was wondering if there were command line parameters for Automator that could open AND run a workflow file? Ideally I'd like it to close after running, but I'll worry about that later. Thanks in advance.

    The preferred way is to save your workflow as an application and then call usr/bin/open on it. If for some reason you must have the workflow run inside of Automator (not self-contained) then you're looking at some quality time with man osascript. As it happens Apple has removed even the need for Cron for most users. A click to File -> Save As Plug-In -> for iCal handles it from start to finish.
    Edit: I forgot to mention that Automator has its own simple command line utility for running *.workflow files. Check out man automator

  • What are the commands for compiling c++ using the command line tools for xcode?

    Hi, I am taking a class in school for c++ and i would like ot be able to practice at home i found the command line tools for xcode and went ahead and installed it on my computer. now i need to know the commands and procedure to be able to compile and run c++.

    c++ testfile.cc

  • Using Command Line Tool for Linux

    I have to use the command lines of Linux for SCM commands(like repcmd, set workarea, checkin etc...)
    should I have to install something?
    I have documentation for using the oracle repository command line Toll for Windows and Unix, but I didn't found anything about using the oracle repository command line Toll for Linux.

    JDeveloper runs excellent on Linux and is supposed to be able to use the repository, but that's a GUI...

  • Command line tools for xcode??

    I am used to compiling code much like the java sdk works from terminal where I say javac the filename and then i get a .class file that i can run by doing the command java and then the .class file after. I am now wanting to learn c++ and I dont feel like installing xcode all i want is a compiler that can run from terminal. i found command line tools for xcode on the apple developers site and i was wondering do i need xcode for this to run and after that what the commands are and how i compile/run the code. But my biggest question is still wether or not i need xcode to let command line tools work. ive read in a couple places i dont need it but in other ive read you do can i get help?!

    You don't need Xcode to compile your apps with; just the compiler/linker.
    Xcode is Apple's IDE.  One could write the same code in TextEdit but that wouldn't be easy nor fun.
    (Missed it by THAT much!) 

  • How to get the command line interface for WRT160NL router

    hi,
    How can I get the command line interface for WRT160NL router. please suggest.

    If you’re trying to access the web-based interface of your router, just use its default IP address (192.168.1.1). The Username is left blank and the Password is "admin". Here’s a quick link on how to do that.

  • Q. Any command-line options for Digimarc and Elements 7 batch file processing?

    Q. Any command-line options for Digimarc and Elements 7 batch file processing?

    Are you a digimarc subscriber? You would be better off asking them, if so.

  • Command line installation - exit code 32 error

    We are installing Adobe Acrobat 7.0 via command line installation in our network. When the installation is completed the clients reboot and our software-delivery-server quits with an error ("Exit code 32 indicates possible error"). To install the Adobe Updates we have to renew the complete installation.
    I think the installation routine does not send an "installation complete" message to the server, but that is just an idea. The exit code 32 error means nothing to me. Does anyone have an idea what I can do ?
    We are using a W2003 server, CA Unicenter Software Delivery Software and WinXP/SP2 as clients.

    We are installing Adobe Acrobat 7.0 via command line installation in our network. When the installation is completed the clients reboot and our software-delivery-server quits with an error ("Exit code 32 indicates possible error"). To install the Adobe Updates we have to renew the complete installation.
    I think the installation routine does not send an "installation complete" message to the server, but that is just an idea. The exit code 32 error means nothing to me. Does anyone have an idea what I can do ?
    We are using a W2003 server, CA Unicenter Software Delivery Software and WinXP/SP2 as clients.

  • Command line tools for xcode mac os x 10.6.8

    Hi,
    Will the latest command line tool work for mac os x 10.6.8 also? If yes, I will go ahead and download them.
    If no, please help find a download location for command line tools for mac os x 10.6.8.
    Also, please let me know if that will support the development of latest ios apps.

    developing for "the latest iOS Apps" is supported by the latest X-code tools, which does NOT run under 10.6.8.
    Version 3.2.6 will run under 10.6.6 and later.
    Version 5.0.1 requires 10.8.4 or later.
    Version 6.1.1 (currently the latest) requires 10.9.4 or later.

Maybe you are looking for

  • Class javax.mail.SendFailedException

    Hi, Let me know regarding java mail. I am facing the error as follows, ===============Exception===================== javax.servlet.ServletException: Sending failed; nested exception is:      class javax.mail.SendFailedException: Invalid Addresses; ne

  • Nessus scan on AS 10.1.2.0.2 gives HIGH vulnarabilities

    Anyone run into "nessus" scan problems with AS? I have SSL enabled AS using SSLConfigTool and "nessus" gives below when Secuity scans the server. I have applied the Jan07 CPU to this AS. Any advise, greatly appreciated. Scan Results: nv-video (4444/t

  • Deleting PDF pages

    How do you delete pages from a pdf document?

  • Problem with external drive (OS X 10.9.4)

    after i upgrade the OS,my iMac can't eject my external hard drive and the "Tuxera" was gone from system preference... it comes like this when i try to verify the disk.. ===== Saturday, July 12, 2014 at 3:16:30 AM Western Indonesia Time ===== 2014-07-

  • There is no webdynpro perspective

    hello, i get the Sap Netweaver 7.2  from a friend but i cannot see the Webdynpro perspective in "Window-openPrespective" altough he uses that one and i have the plugins. why thats missing? thnx in advance.