Jdeveloper 12.1.2 installation (CMD property not found error) - jdeveloper

I was trying to install jdeveloper12.1.2 which i downloaded from oracle web site but when I was trying to install it i got this error CMD property not found in autorun.inf.

Installation of 12 c is not same as 11g . We are acquainted with the direct running of installer or .exe file in 11g but for 12 c the process is bit different. I search various answer but none of answer worked perfectly .
Here I will guide you with simple steps, just follow below steps patiently.
Download the installer file and unzip to a directory (Here I have unzipped to D:\Software1).
After unzipped u will find a folder named Disk1.
Open your command prompt with admin privilege.
Go to folder Disk1 by using command cd Software1\Disk1
Run the command C:\"Program Files (x86)"\Java\jdk1.6.0_38\bin\java.exe -jar install/modules/ora-launcher.jar DISKCNT=1 JRE_COMPONENT=oracle.jdk,oracle.jre
Give your JDK path .. on previous command I have given mine.
Then follow wizard instructions for jdeveloper studio edition.
I have attached image for the command prompt, Please follow it

Related

Oracle bi config.cmd not run in windows 10

I am trying to install oracle bi on Windows 10.
I ran the install file and set weblogic and repository, but when I go to this directory:
C:\Oracle\Middleware\Oracle_Home\bi\bin

and try to run the config.cmd, the command prompt opens and immediately closes. It doesn’t show me the setup window.
How can I solve this problem?
Very simple solution: not trying to install OBI on an unsupported platform!
https://dimensionality.ch/2017/05/06/installing-oracle-bi-on-windows-7-8-10/
By the way the response in here will stay the same as on the Oracle communities ...
I had the same issue as you and I was to gave up but I decided I don't do it and I start to search for this problem. The first things to have to do is check your PATH JAVA_HOME. My native language is Spanish and my windows OS is in Spanish.
My JAVA_HOME was C:\Program Files (x86)\Java\jdk1.8.0_181 and I have a problem to time installing so I change by C:\Progra~2\Java\jdk1.8.0_181 then I restart my laptop and I open CMD as Admin and put cd C:\Oracle\Middleware\Oracle_Home\bi\bin because in this route was installed my OBI. After that just put C:\Oracle\Middleware\Oracle_Home\bi\bin>config.cmd and I can continue to the configure of OBI.
Progra~1 = 'Program Files'
Progra~2 = 'Program Files(x86)'
If you forgot anything, just enter to link to refer:
http://obieeil.blogspot.com/2015/10/installing-obiee-12c-on-my-windows.html
or
http://www.catgovind.com/obiee/step-by-step-obiee-12c-installation-on-windows-oracle-bi-publisher-installation-and-oracle-bi-analytic-installation/

Composer setup - "The system cannot find the file specified"

I'm trying to install composer, but it showing an error message. I'm using Windows 8.1, and download composer Windows Installer from https://getcomposer.org/download/.
The command interpreter did not run correctly:
C:\Windows\system32\cmd.exe
The system cannot find the file specified
The cmd file is existing on C:\Windows\System32\cmd.exe. And it run normally
I strongly suggest posting questions regarding the windows installer # https://github.com/composer/windows-setup/issues
The maintainer of our windows installer binary can answer most questions and is very friendly and helpful :-)
1- Open cmd.exe ( administrator mode ).
2- Write this command sfc /scannow (My be take long time for scanning).
2- Re-install composer.

Oracle SOA 12c Installation in windows 7 64 bit- Issues

while i am running
java -jar fmw_12.1.3.0.0_soa_quickstart.jar
I am executing this command from where my JDK is installed.
Error Message : This installer must be executed using java development kit (JDK)
but C;/program filed /jre is not a valid JDK.
Kindly help.
Oracle Fusion Middleware 12c (12.1.3) requires a minimum of JDK 7.0 Update 55 or later. If you have an older version please update the JDK.
Let’s say your JDK is installed in:
C:\Program Files\Java\jdk1.7.0_xx
Search for cmd.exe in the Start menu. Right-click the cmd.exe and select Run as Administrator. In the prompt run the following command to set the JAVA_HOME:
SET JAVA_HOME="C:\Program Files\Java\jdk1.7.0_xx"
Using the command prompt, navigate to the directory where you unzipped the jar files.
Launch the installation wizard with the appropriate command.
%JAVA_HOME%/bin/java.exe -jar fmw_12.1.3.0.0_soa_quickstart.jar
For details about the installation refer to the official oracle documentation here
Install jdk8. Set JAVA_HOME to the installed jdk8. Navigate to %JAVA_HOME\bin.
Run java -jar complete_path_of_dir\fmw_12.1.3.0.0_soa_quickstart.jar.
Did you check that you're unpacking a jar file which contains another jar file? Firstly, unzip the jar file and then execute the contained jar file.
open your command prompt in admininstrative mode and change your directory to the bin directory of jdk(must be this path- C:\Program Files\Java\jdk\bin).
Now from this directory, install the soa installer(.jar file) by giving its complete path. In my case, I had my soa installer in *E:* drive, so my command was like this:-
C:\Program Files\Java\jdk1.8.0_131\bin>java -jar E:\fmw_12.2.1.0.0_soa_quickstart.jar
in a simple way go to jdk bin folder and execute the following, shoot this command from my jdk\bin location:-
C:/Program Files\Java\jdk1.8.0_131\bin>java -jar d:\fmw_12.2.1.0.0_soa_quickstart.jar
note: make sure you logged in as a admin user
Even I faced the same issue when installing oracle fusion middleware, but i resolved it by following steps:
Open command prompt by right clicking 'Run as administrator'.
Install the latest JDK version.
Change the directory where your weblogic's .jar file is present like
cd C:\Users\Ashwini_SP\Documents\Softwares\Jdeveloper_OSB\fmw_12.2.1.2.0_soaqs_Disk1_1of2
now select the jdk path and install it
"C:\Program Files\Java\jdk1.8.0_144\bin\java.exe" -jar fmw_12.2.1.2.0_soa_quickstart.jar

How do I install just the client tools for PostgreSQL on Windows?

I have a PostgreSQL database on a Linux system that I want to access from my Windows PC. But the only Windows binaries I have been able to find are the full installer, which includes the database server and client.
Is it possible to get a client-only Windows binary install for PostgreSQL from anywhere?
(To clarify, I want the standard PostgreSQL client, psql - not a GUI client or independent tool).
Unfortunately there is no real client "only" installer.
What you can do, is to download the ZIP archive of the complete Postgres binaries:
http://www.enterprisedb.com/products-services-training/pgbindownload
and then remove the "server" part from it.
When you unzip it, you get the following directories:
bin
doc
include
lib
pgAdmin III
share
StackBuilder
symbols
You can remove the doc, include, pgAdmin III, StackBuilder and symbols directories. As far as I can tell (but I am not sure) the client also doesn't need the share or lib directories, but you would need to test that. So that leaves only the bin directory.
I think the share directory could be needed for localized error messages in psql but I'm not sure about that.
Inside the bin directory you can essentially remove all .exe files (except psql.exe of course). You can also remove all wx*.dll files, they are only needed for pgAdmin. The libxml2.dll and libxslt.dll are also only needed for the server.
If you do want some of the other client tools, you might want to keep
pg_dump.exe
pg_dumpall.exe
pg_restore.exe
One drawback of this approach is that this requires the Visual C++ Redistributable to be installed. But you can overcome that as well by simply putting the MSVCR120.DLL from some computer where it is installed into the bin directory.
So that leaves you with these files (from the bin directory) that are required for the psql client:
iconv.dll (libiconv-2.dll in newer Postgres versions)
libeay32.dll
libintl-8.dll
libpq.dll
msvcr120.dll
ssleay32.dll
zlib1.dll
psql.exe
Of course you can also take all that from an existing Postgres installation without the need to download the ZIP archive.
It is obviously not a real installer, but if you put the cleaned up directory into a ZIP file, you can distribute that and whoever needs it just unzips the archive. Personally I find unzip to be the best "installer" anyway (I also use that to install the Postgres server, the Windows installer just has too many quirks)
As of 2020, when you click download the full installer from here , click next and next and you get the option to install only the command line - tools
. Remember to add the path to the bin folder in the PATH variable.
Actually there are client CLI tools in pgAdmin. All you need is just to install it on your Windows machine from https://www.postgresql.org/download/windows/.
Then you'll be able to find those tools in folder like C:\Program Files (x86)\pgAdmin III\1.22 or C:\Program Files (x86)\pgAdmin 4\v2\runtime, depends on the pgAdmin version you have installed.
Thanks to everyone who has posted on this thread.
For what it's worth, I got psql.exe from PostgreSQL 10.10 working under Windows 10 with just the following files from the zip archive:
libcrypto-1_1-x64.dll
libiconv-2.dll
libintl-8.dll
libpq.dll
libssl-1_1-x64.dll
psql.exe
When connecting to AWS Redshift, I got the following error:
psql: FATAL: invalid value for parameter "client_encoding": "WIN1252"
I resolved this by running
set PGCLIENTENCODING=UTF8
I found this solution at https://forums.aws.amazon.com/thread.jspa?messageID=600088
HTH.
I realize this is an older question, but when I used the Windows installer for the latest version of Postgres (10.4), it gave me the option to install just the command line tools. I just unchecked server and pgadmin in the installer's window when prompted to choose what I wanted to install.
Below are the steps I followed to connect to Amazon Redshift with postgres12 psql on windows:
download postgres 12.4 from below location:
https://www.enterprisedb.com/downloads/postgres-postgresql-downloads
run the installer which will take few minutes and prompt you for installations options
select command line tools as shown in below screenshot and install that
Above will install postgres12 command line in below folder C:\Program Files\PostgreSQL\12\bin. Make sure to add this to your PATH environment variable
open cmd and run command
set PGCLIENTENCODING=UTF8
run psql to connect to redshift. Make sure to change below parameters highlighted in red for your cluster endpoint, userid, copy script file name and log script file name respectively
psql -h redshift-cluster-1.abcdefgh.us-east-1.redshift.amazonaws.com -U demo_user -d dev -p 5439 -f d:\demo\redshift_script.sql -L d:\demo\log_redshift_script.log
all commands in redshift_script.sql file would get executed in PSQL and logs will be stored in log_redshift_script.log file
There is a third-party command-line tool available known as PGCLI - A command-line interface for Postgres with auto-completion and syntax highlighting.
Install:
pip install pgcli
Connect to POSTGRES Server from Command-line:
pgcli -h localhost -U xyz -d app_db
For official documentation, visit PGCLI
If there's pgadmin v4 installed then just copy these libraries (from C:\Program Files\pgAdmin 4\v4\runtime\):
libcrypto-1_1-x64.dll
libpq.dll
libssl-1_1-x64.dll
These were enough for me to connect from a client Windows 10 x64 PC to a remote Postgres 13 server. Note, that libraries coming with the ZIP archive mentioned above are slightly different and have more dependencies.
I kind of cheat. I install sqlbackupandftp.com on a Windows server - which has a free version that can schedule a single database backup. In the binaries, pg_dump.exe is there - typically on the C: drive like C:\Program Files (x86)\SQLBackupAndFTP\dbms\PostgreSql
I built standalone versions for windows and linux.
It has less dll dependecies and smaller size and work with many linux.
https://github.com/hemnstill/StandaloneTools/releases?q=pg_dump
You can also download "https://www.nuget.org/packages/Postgres.psql" nuget package to get "psql.exe"

How to install Sahi Pro on Windows 7?

I am very novice and beginner of Sahi Automation Tool. I have downloaded "install_sahi_pro_v452_20130205.jar" . After double clicking on that jar file it was opened on WinRAR explorer.
How can I install and configure Sahi Pro? Please guide me.
Prerequisite:
Installation of Java and setting java in your system path (in environment variable).
Now follow the steps below for running jar file as well as installing sahi:
Open command prompt and go to the folder where you have Sahi_pro jar file (install_sahi_pro_v452_20130205.jar).
Run the following command:
java -jar install_sahi_pro_v452_20130205.jar
Click Next button at the bottom on pop up
Follow the further steps according to the pop up instruction

Resources