Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liquibase/liquibase-teradata

Liquibase extension to add Teradata Database support
https://github.com/liquibase/liquibase-teradata

core extension hacktoberfest liquibase-extension liquibase-teradata oss

Last synced: 3 months ago
JSON representation

Liquibase extension to add Teradata Database support

Awesome Lists containing this project

README

        

# Liquibase Teradata Extension [![Build and Test Extension](https://github.com/liquibase/liquibase-teradata/actions/workflows/build.yml/badge.svg)](https://github.com/liquibase/liquibase-teradata/actions/workflows/build.yml)

This is a Liquibase extension for connecting to a Teradata database. [Teradata Database](https://www.teradata.com/Resources/Datasheets/Teradata-Database) includes a variety of built-in features that makes it faster and more efficient to run a wider scope of analytical processes, features that let you easily maintain and base analyses on the changes in your business data, enhance cube processing, data mining, query, performance, modeling, and others.

## Configuring the extension

These instructions will help you get the extension up and running on your local machine for development and testing purposes. This extension has a prerequisite of Liquibase core in order to use it. Liquibase core can be found at https://www.liquibase.org/download.

## Compatibility
Requires Liquibase 3.0.6+

It has been tested with Teradata V12.

### Liquibase CLI

Download [the latest released Liquibase extension](https://github.com/liquibase/liquibase-teradata/releases) `.jar` file and place it in the `liquibase/lib` install directory. If you want to use another location, specify the extension `.jar` file in the `classpath` of your [liquibase.properties file](https://docs.liquibase.com/workflows/liquibase-community/creating-config-properties.html).

### Maven
Specify the Liquibase extension in the `` section of your POM file by adding the `org.liquibase.ext` dependency for the Liquibase plugin.

```


org.liquibase
liquibase-maven-plugin
4.3.2


liquibase.properties




org.liquibase.ext
liquibase-teradata
${liquibase-teradata.version}



```

## Java call

```
public class Application {
public static void main(String[] args) {
TeradataDatabase database = (TeradataDatabase) DatabaseFactory.getInstance().openDatabase(url, null, null, null, null);
Liquibase liquibase = new Liquibase("liquibase/ext/changelog.generic.test.xml", new ClassLoaderResourceAccessor(), database);
liquibase.update("");
}
}
```
## Contribution

To file a bug, improve documentation, or contribute code, follow our [guidelines for contributing](https://www.liquibase.org/community).

[This step-by-step instructions](https://www.liquibase.org/community/contribute/code) will help you contribute code for the extension.

Once you have created a PR for this extension you can find the artifact for your build using the following link: [https://github.com/liquibase/liquibase-teradata/actions/workflows/build.yml](https://github.com/liquibase/liquibase-teradata/actions/workflows/build.yml).

## Documentation

[Using Liquibase with Teradata](https://docs.liquibase.com/workflows/database-setup-tutorials/teradata.html)

## Issue Tracking

Any issues can be logged in the [Github issue tracker](https://github.com/liquibase/liquibase-teradata/issues).

## License

This project is licensed under the [Apache License Version 2.0](https://github.com/liquibase/liquibase-teradata/blob/main/LICENSE).