Downloads:
214,137
Downloads of v 20.4.1.20210328:
191,542
Last Update:
28 Mar 2021
Package Maintainer(s):
Software Author(s):
- Oracle
Tags:
oracle sql developer ide- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Oracle SQL Developer
- 1
- 2
- 3
20.4.1.20210328 | Updated: 28 Mar 2021
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
214,137
Downloads of v 20.4.1.20210328:
191,542
Maintainer(s):
Software Author(s):
- Oracle
Oracle SQL Developer 20.4.1.20210328
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Oracle. The inclusion of Oracle trademark(s), if any, upon this webpage is solely to identify Oracle goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Exemption:
Automated testing is failing because the there are required package parameters that are not being provided. In this case, Oracle requires a (free) Oracle account to download the application, so that account's Username/Password must be provided.
Scan Testing Successful:
No detections found in any package files
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Oracle SQL Developer, run the following command from the command line or from PowerShell:
To upgrade Oracle SQL Developer, run the following command from the command line or from PowerShell:
To uninstall Oracle SQL Developer, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download oracle-sql-developer --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade oracle-sql-developer -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade oracle-sql-developer -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install oracle-sql-developer
win_chocolatey:
name: oracle-sql-developer
version: '20.4.1.20210328'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'oracle-sql-developer' do
action :install
source 'INTERNAL REPO URL'
version '20.4.1.20210328'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller oracle-sql-developer
{
Name = "oracle-sql-developer"
Version = "20.4.1.20210328"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'oracle-sql-developer':
ensure => '20.4.1.20210328',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator TheCakeIsNaOH on 01 Apr 2021.
Oracle SQL Developer is a free, integrated development environment that simplifies the development and management
of Oracle Database in both traditional and Cloud deployments. SQL Developer offers complete end-to-end development
of your PL/SQL applications, a worksheet for running queries and scripts, a DBA console for managing the database,
a reports interface, a complete data modeling solution, and a migration platform for moving your 3rd party
databases to Oracle.
#### Notes
* This version supports both 32bit and 64bit and subsequently does not have a JDK bundled with it.
* An Oracle account is required to download this package. See the "Package Parameters" section below for
details on how to provide your Oracle credentials to the installer. If you don't have an existing account, you can
create one for free here: https://profile.oracle.com/myprofile/account/create-account.jspx
* Internet Explorer is required for login to Oracle website before downloading the software.
#### Package Parameters
The following package parameters are required:
* /Username:
- Oracle username
* /Password:
- Oracle password
To pass parameters, use --params "''"
(e.g. choco install -y oracle-sql-developer --params="'/Username:[email protected] /Password:ThePassword'"
).
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
$ErrorActionPreference = 'Stop';
Write-Host 'Removing shortcuts...'
$desktop = [Environment]::GetFolderPath([Environment+SpecialFolder]::Desktop)
$startMenu = [Environment]::GetFolderPath([Environment+SpecialFolder]::StartMenu)
$shortcut = 'Oracle SQL Developer.lnk'
Remove-Item -Path $(Join-Path $desktop $shortcut) -Force -ErrorAction Ignore
Remove-Item -Path $(Join-Path $startMenu "Programs/$shortcut") -Force -ErrorAction Ignore
function Get-ChocolateyProxy {
param(
[string] $url
)
$proxy = $null
$proxyInfo = @{}
$creds = [System.Net.CredentialCache]::DefaultCredentials
$webclient = new-object System.Net.WebClient
if ($creds -ne $null) {
$webClient.Credentials = $creds
}
$explicitProxy = $env:chocolateyProxyLocation
$explicitProxyUser = $env:chocolateyProxyUser
$explicitProxyPassword = $env:chocolateyProxyPassword
if ($explicitProxy -ne $null) {
$proxy = New-Object System.Net.WebProxy($explicitProxy, $true)
if ($explicitProxyPassword -ne $null) {
$passwd = ConvertTo-SecureString $explicitProxyPassword -AsPlainText -Force
$proxy.Credentials = New-Object System.Management.Automation.PSCredential ($explicitProxyUser, $passwd)
}
Write-Host "Using explicit proxy server '$explicitProxy'."
}
elseif ($webclient.Proxy -and !$webclient.Proxy.IsBypassed($url)) {
if ($creds -eq $null) {
Write-Debug "Default credentials were null. Attempting backup method"
$creds = Get-Credential
}
$proxyaddress = $webclient.Proxy.GetProxy($url).Authority
$proxy = New-Object System.Net.WebProxy($proxyaddress)
if($creds.UserName) {
$proxy.Credentials = $creds
}
Write-Host "Using system proxy server '$proxyaddress'."
}
if($proxy) {
$proxyInfo.Proxy = $proxy.Address;
$proxyInfo.ProxyCredential = $proxy.Credentials;
}
return $proxyInfo
}
function Get-JdkPath() {
try {
$jdkReg = Get-ItemProperty -Path 'HKLM:SOFTWARE\JavaSoft\Java Development Kit\1.8\' -ErrorAction Stop
return $jdkReg.JavaHome
}
catch {
throw 'Could not find installation required dependency JDK8'
}
}
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
##############################################################################
#
# The format of this file is:
#
# Directive Value
#
# with one or more spaces between the directive and the value. This file
# can be in either UNIX or DOS format for end of line terminators. Use UNIX
# style '/' path separators, although on Windows some directives, such as
# SetJavaHome, can take '\' path separators.
#
##############################################################################
#
# By default, the product launcher will search for a JDK to use, and if none
# can be found, it will ask for the location of a JDK and store its location
# in this file. If a particular JDK should be used instead, uncomment the
# line below and set the path to your preferred JDK.
#
SetJavaHome %JdkPath%
#
# Specify the initial size, in bytes, of the memory allocation pool. This
# value must be a multiple of 1024 greater than 1MB. Append the letter k
# or K to indicate kilobytes, or m or M to indicate megabytes, or g or G
# to indicate gigabytes. The default value is chosen at runtime based on
# the system configuration.
# Examples: -Xms6291456
# -Xms6144k
# -Xms6m
#
# You can specify one value for any JDK using AddVMOption, OR you can specify
# separate values for 32-bit and 64-bit JDK's.
#
# AddVMOption -Xms128m
# Add32VMOption -Xms128m
# Add64VMOption -Xms128m
#
# Specify the maximum size, in bytes, of the memory allocation pool. This
# value must be a multiple of 1024 greater than 2MB. Append the letter k
# or K to indicate kilobytes, or m or M to indicate megabytes, or g or G
# to indicate gigabytes. The default value is chosen at runtime based on
# the system configuration.
# Examples: -Xmx83886080
# -Xmx81920k
# -Xmx80m
# On Solaris 7 and Solaris 8 SPARC platforms, the upper limit for this value
# is approximately 4000m minus overhead amounts. On Solaris 2.6 and x86
# platforms, the upper limit is approximately 2000m minus overhead amounts.
# On Linux platforms, the upper limit is approximately 2000m minus overhead
# amounts.
#
# If you are getting the 'Low Memory Warning' Message Dialog while running
# the product, please increase the -Xmx value below from the default 800M to
# something greater, like 1024M or 1250M. If after increasing the value,
# the product is no longer starting up because it fails to create a virtual
# machine, then please reduce the modified -Xmx value, or use a 64bit JDK
# which allows for very very large value for -Xmx.
#
# You can specify one value for any JDK using AddVMOption, OR you can specify
# separate values for 32-bit and 64-bit JDK's.
#
# AddVMOption -Xmx800m
# Add32VMOption -Xmx800m
# Add64VMOption -Xmx800m
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Nuget package: https://www.nuget.org/packages/HtmlAgilityPack/1.11.4
SHA256 checksum: 07E1E38F7CB400E145D5A67D4924627F1BD156808CB68A1B5886A4C201AB6257
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Oracle SQL Developer 20.4.1.20210328 | 191542 | Sunday, March 28, 2021 | Approved | |
Oracle SQL Developer 20.4.1 | 2816 | Thursday, March 4, 2021 | Approved | |
Oracle SQL Developer 18.4.0 | 19721 | Sunday, March 3, 2019 | Approved |
2021 Oracle
Ground Rules:
- This discussion is only about Oracle SQL Developer and the Oracle SQL Developer package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Oracle SQL Developer, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.