Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

12,155

Downloads of v 16.11.7:

229

Last Update:

28 Dec 2020

Package Maintainer(s):

Software Author(s):

  • Sualeh Fatehi

Tags:

database-schemas jdbc metadata database-diagrams e-r-diagrams schema java

Schemacrawler

This is not the latest version of Schemacrawler available.

  • 1
  • 2
  • 3

16.11.7 | Updated: 28 Dec 2020

Downloads:

12,155

Downloads of v 16.11.7:

229

Maintainer(s):

Software Author(s):

  • Sualeh Fatehi

Schemacrawler 16.11.7

This is not the latest version of Schemacrawler available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Schemacrawler, run the following command from the command line or from PowerShell:

>

To upgrade Schemacrawler, run the following command from the command line or from PowerShell:

>

To uninstall Schemacrawler, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade schemacrawler -y --source="'INTERNAL REPO URL'" --version="'16.11.7'" [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 schemacrawler -y --source="'INTERNAL REPO URL'" --version="'16.11.7'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install schemacrawler
  win_chocolatey:
    name: schemacrawler
    version: '16.11.7'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'schemacrawler' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '16.11.7'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller schemacrawler
{
    Name     = "schemacrawler"
    Version  = "16.11.7"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'schemacrawler':
  ensure   => '16.11.7',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 29 Dec 2020.

Description

SchemaCrawler is a free database schema discovery and comprehension tool. SchemaCrawler has a good
mix of useful features for data governance. You can search for database schema objects using regular expressions,
and output the schema and data in a readable text format. The output serves for database documentation, and is
designed to be diff-ed against other database schemas. SchemaCrawler also generates schema diagrams. You can
execute scripts in any standard scripting language against your database. You can find potential schema design
issues with lint.


tools\chocolateyUninstall.ps1
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$sc_home = Join-Path $package 'schemacrawler-16.11.7-distribution'
$sc_bat = Join-Path $sc_home '_schemacrawler/schemacrawler.cmd'

Uninstall-BinFile -Name 'schemacrawler' -Path $sc_home
tools\chocolateyInstall.ps1
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$sc_home = Join-Path $package 'schemacrawler-16.11.7-distribution'
$sc_bat = Join-Path $sc_home '_schemacrawler/schemacrawler.cmd'


Install-ChocolateyZipPackage `
    -PackageName 'schemacrawler' `
    -Url 'https://github.com/schemacrawler/SchemaCrawler/releases/download/v16.11.7/schemacrawler-16.11.7-distribution.zip' `
    -Checksum 'b69d0e8592c8550736d05a45583ec6e3c104b931def6aeaec6c92ad95c0857b1088a45e3522b7b78e1854832c0112d1e4855a6e2d9446f080ec8755b642fc402' `
    -ChecksumType 'SHA512' `
    -UnzipLocation $package

Install-ChocolateyEnvironmentVariable `
    -VariableName 'SC_HOME' `
    -VariableValue $sc_home `
    -VariableType 'Machine'


Install-BinFile -Name 'schemacrawler' -Path $sc_bat

Update-SessionEnvironment

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
SchemaCrawler 16.21.1 79 Saturday, January 13, 2024 Approved
SchemaCrawler 16.20.8 39 Sunday, December 31, 2023 Approved
SchemaCrawler 16.20.7 34 Wednesday, December 20, 2023 Approved
SchemaCrawler 16.20.6 68 Friday, November 17, 2023 Approved
SchemaCrawler 16.20.5 53 Tuesday, November 7, 2023 Approved
SchemaCrawler 16.20.4 126 Wednesday, September 6, 2023 Approved
SchemaCrawler 16.19.6 192 Friday, January 13, 2023 Approved
SchemaCrawler 16.19.5 81 Saturday, December 17, 2022 Approved
SchemaCrawler 16.19.4 58 Friday, December 2, 2022 Approved
SchemaCrawler 16.19.3 59 Sunday, November 27, 2022 Approved
SchemaCrawler 16.19.2 46 Thursday, November 24, 2022 Approved
SchemaCrawler 16.19.1 45 Sunday, November 20, 2022 Approved
SchemaCrawler 16.18.2 134 Saturday, September 17, 2022 Approved
SchemaCrawler 16.18.1 93 Tuesday, August 23, 2022 Approved
SchemaCrawler 16.17.4 67 Sunday, August 14, 2022 Approved
SchemaCrawler 16.17.3 64 Friday, August 5, 2022 Approved
SchemaCrawler 16.17.2 77 Saturday, July 30, 2022 Approved
SchemaCrawler 16.17.1 62 Saturday, July 23, 2022 Approved
SchemaCrawler 16.16.18 96 Sunday, June 19, 2022 Approved
SchemaCrawler 16.16.17 64 Tuesday, June 14, 2022 Approved
SchemaCrawler 16.16.16 82 Tuesday, June 7, 2022 Approved
SchemaCrawler 16.16.15 75 Tuesday, May 31, 2022 Approved
SchemaCrawler 16.16.14 166 Sunday, March 27, 2022 Approved
SchemaCrawler 16.16.12 84 Monday, March 21, 2022 Approved
SchemaCrawler 16.16.11 148 Sunday, February 6, 2022 Approved
SchemaCrawler 16.16.10 79 Thursday, February 3, 2022 Approved
Schemacrawler 16.16.9 84 Wednesday, January 19, 2022 Approved
Schemacrawler 16.16.7 100 Monday, January 10, 2022 Approved
Schemacrawler 16.16.6 80 Wednesday, December 29, 2021 Approved
Schemacrawler 16.16.5 77 Sunday, December 26, 2021 Approved
Schemacrawler 16.16.4 84 Sunday, December 19, 2021 Approved
Schemacrawler 16.16.3 117 Sunday, November 21, 2021 Approved
Schemacrawler 16.16.01 87 Monday, November 15, 2021 Approved
Schemacrawler 16.15.11 91 Monday, November 1, 2021 Approved
Schemacrawler 16.15.10 105 Saturday, October 23, 2021 Approved
Schemacrawler 16.15.9 83 Wednesday, October 20, 2021 Approved
Schemacrawler 16.15.8 100 Tuesday, October 5, 2021 Approved
Schemacrawler 16.15.7 93 Saturday, September 18, 2021 Approved
Schemacrawler 16.15.6 83 Monday, September 13, 2021 Approved
Schemacrawler 16.15.4 121 Saturday, August 14, 2021 Approved
Schemacrawler 16.15.2 147 Wednesday, July 7, 2021 Approved
Schemacrawler 16.15.1 113 Monday, June 14, 2021 Approved
Schemacrawler 16.14.6 265 Friday, May 7, 2021 Approved
Schemacrawler 16.14.5 110 Monday, May 3, 2021 Approved
Schemacrawler 16.14.4 165 Sunday, April 4, 2021 Approved
Schemacrawler 16.14.3 99 Wednesday, March 31, 2021 Approved
Schemacrawler 16.14.2 91 Friday, March 26, 2021 Approved
Schemacrawler 16.14.1 133 Monday, March 15, 2021 Approved
Schemacrawler 16.12.3 137 Wednesday, February 24, 2021 Approved
Schemacrawler 16.12.2 91 Saturday, February 20, 2021 Approved
Schemacrawler 16.12.1 121 Monday, February 15, 2021 Approved
Schemacrawler 16.11.7 229 Monday, December 28, 2020 Approved
Schemacrawler 16.11.6 136 Wednesday, December 2, 2020 Approved
Schemacrawler 16.11.5 121 Friday, November 6, 2020 Approved
Schemacrawler 16.10.1 120 Tuesday, September 22, 2020 Approved
Schemacrawler 16.9.5 136 Thursday, September 10, 2020 Approved
Schemacrawler 16.9.4 120 Tuesday, September 8, 2020 Approved
Schemacrawler 15.06.01 556 Tuesday, March 12, 2019 Approved
Schemacrawler 15.05.01 196 Sunday, March 10, 2019 Approved
Schemacrawler 15.04.01 264 Friday, February 8, 2019 Approved
Schemacrawler 15.03.04 232 Sunday, December 30, 2018 Approved
Schemacrawler 15.03.03 239 Saturday, December 29, 2018 Approved
Schemacrawler 15.03.02 180 Thursday, December 13, 2018 Approved
Schemacrawler 15.03.01 232 Monday, December 10, 2018 Approved
Schemacrawler 15.02.02 246 Tuesday, November 27, 2018 Approved
Schemacrawler 15.01.06 242 Sunday, November 11, 2018 Approved
Schemacrawler 15.01.05 244 Friday, November 2, 2018 Approved
Schemacrawler 15.01.04 247 Thursday, October 18, 2018 Approved
Schemacrawler 15.01.03 249 Sunday, September 23, 2018 Approved
Schemacrawler 15.01.02 216 Friday, September 21, 2018 Approved
Schemacrawler 15.01.01 234 Wednesday, September 12, 2018 Approved
Schemacrawler 14.21.02 292 Friday, May 25, 2018 Approved
Schemacrawler 14.21.01 272 Wednesday, May 16, 2018 Approved
Schemacrawler 14.20.06 288 Saturday, May 5, 2018 Approved
Schemacrawler 14.20.05 307 Saturday, April 28, 2018 Approved
Schemacrawler 14.20.04 330 Friday, April 6, 2018 Approved
Schemacrawler 14.20.03 303 Sunday, March 11, 2018 Approved
Schemacrawler 14.20.02 313 Thursday, March 8, 2018 Approved
Schemacrawler 14.20.01 320 Tuesday, March 6, 2018 Approved
Discussion for the Schemacrawler Package

Ground Rules:

  • This discussion is only about Schemacrawler and the Schemacrawler 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 Schemacrawler, 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.
comments powered by Disqus