Repository for the new SQL cross-platform command line tools
Перейти к файлу
Karl Burtram a6bdfe1cf0
Merge pull request #286 from microsoft/feat/archive_readme
Update README for project archive status
2024-05-07 16:31:46 -07:00
doc Update usage_guide.md 2022-02-05 16:37:41 -06:00
mssqlscripter reverting the last trial change 2021-03-03 19:59:49 -08:00
sqltoolsservice Ron/refresh sqltoolsservice v1.4.0-alpha.47 (#195) 2018-06-27 15:12:15 -07:00
.bumpversion.cfg Version bump to 1.0.0a23 2018-06-28 13:24:06 -07:00
.gitattributes Fixing syntax error 2017-03-24 14:27:37 -07:00
.gitignore Ron/platform wheels support (#161) 2017-11-10 13:13:58 -08:00
.travis.yml Use SqlToolsService built on .NET Core 2.0 and a build script updates (#131) 2017-08-17 10:50:15 -07:00
LICENSE.txt Refactor/folder structure (#23) 2017-04-13 11:21:47 -07:00
MANIFEST.in Ron/platform wheels support (#161) 2017-11-10 13:13:58 -08:00
README.rst Update README for project archive status 2024-05-07 16:30:48 -07:00
SECURITY.md Microsoft mandatory file 2022-08-31 15:22:04 +00:00
appveyor.yml Use SqlToolsService built on .NET Core 2.0 and a build script updates (#131) 2017-08-17 10:50:15 -07:00
build.py Fixing naming convention for local copy of sqltoolsservice, removed l… (#166) 2017-11-21 16:06:56 -08:00
dev_requirements.txt Use SqlToolsService built on .NET Core 2.0 and a build script updates (#131) 2017-08-17 10:50:15 -07:00
dev_setup.py Ron/platform wheels support (#161) 2017-11-10 13:13:58 -08:00
dos2unix.py Ron/platform wheels support (#161) 2017-11-10 13:13:58 -08:00
mssql-scripter Ron/sqltoolsservice update (#163) 2017-11-14 19:47:02 -08:00
mssql-scripter.bat Feature/stdout fix (#84) 2017-05-18 13:58:42 -07:00
mssql-scripter.pyproj Ron/remove win64 (#165) 2017-11-20 13:53:24 -08:00
mssql-scripter.sln Updating doc's after repro rename (#160) 2017-11-08 15:23:10 -08:00
setup.cfg Ron/platform wheels support (#161) 2017-11-10 13:13:58 -08:00
setup.py Version bump to 1.0.0a23 2018-06-28 13:24:06 -07:00
tox.ini Ron/remove win64 (#165) 2017-11-20 13:53:24 -08:00
utility.py Ron/sqltoolsservice update (#163) 2017-11-14 19:47:02 -08:00

README.rst

Этот файл содержит невидимые символы Юникода!

Этот файл содержит невидимые символы Юникода, которые могут быть отображены не так, как показано ниже. Если это намеренно, можете спокойно проигнорировать это предупреждение. Используйте кнопку Экранировать, чтобы показать скрытые символы.

Этот файл содержит неоднозначные символы Юникода, которые могут быть перепутаны с другими в текущей локали. Если это намеренно, можете спокойно проигнорировать это предупреждение. Используйте кнопку Экранировать, чтобы подсветить эти символы.

.. image:: https://travis-ci.org/Microsoft/mssql-scripter.svg?branch=dev
    :target: https://travis-ci.org/Microsoft/mssql-scripter

.. image:: https://ci.appveyor.com/api/projects/status/vpm8p71265ijytqs/branch/dev?svg=true
    :target: https://ci.appveyor.com/project/MrMeemus/mssql-scripter

.. image:: https://codecov.io/gh/Microsoft/mssql-scripter/branch/dev/graph/badge.svg?token=M96uWrHOIu
    :target: https://codecov.io/gh/Microsoft/mssql-scripter/branch/dev

.. image:: https://badge.fury.io/py/mssql-scripter.svg
    :target: https://pypi.python.org/pypi/mssql-scripter

.. image:: https://img.shields.io/pypi/pyversions/mssql-scripter.svg
    :target: https://travis-ci.org/Microsoft/mssql-scripter

mssql-scripter
===============

PROJECT STATUS
--------------

**This tool is no longer actively maintained.**  Microsoft SQL Server Management Studio provides
a Generate Scripts Wizard that provides similar functionality to mssql-scripter.

Description
-----------

Were excited to introduce mssql-scripter, a multi-platform command line
experience for scripting SQL Server databases.

mssql-scripter is the multiplatform command line equivalent of the widely used Generate Scripts Wizard experience in SSMS. You can use mssql-scripter on Linux, macOS, and Windows to generate data definition language (DDL) and data manipulation language (DML) T-SQL scripts for database objects in SQL Server running anywhere, Azure SQL Database, and Azure SQL Data Warehouse. You can save the generated T-SQL script to a .sql file or pipe it to standard nix utilities (for example, sed, awk, grep) for further transformations. You can edit the generated script or check it into source control and subsequently execute the script in your existing SQL database deployment processes and DevOps pipelines with standard multiplatform SQL command line tools such as sqlcmd.
 
mssql-scripter is built using Python and incorporates the usability principles of the new Azure CLI 2.0 tools. 

Installation
------------

.. code:: bash

    $ pip install mssql-scripter

Please refer to the `installation guide`_ for detailed install instructions. 

Usage
-----

Please refer to the `usage guide`_ for details on options and example usage.

For general help content, pass in the ``-h`` parameter:

.. code:: bash

    $ mssql-scripter -h

Contributing
-----------------------------
If you would like to contribute to the project, please refer to the `development guide`_.

Reporting issues and feedback
-----------------------------

If you encounter any bugs with the tool please file an issue in the
`Issues`_ section of our GitHub repo.

Code of Conduct
---------------

This project has adopted the `Microsoft Open Source Code of Conduct`_.

For more information see the `Code of Conduct FAQ`_ or contact
opencode@microsoft.com with any additional questions or comments.

License
-------

mssql-scripter is licensed under the `MIT license`_.

.. _installation guide: doc/installation_guide.md
.. _development guide: doc/development_guide.md
.. _usage guide: doc/usage_guide.md
.. _Issues: https://github.com/Microsoft/mssql-scripter/issues
.. _Microsoft Open Source Code of Conduct: https://opensource.microsoft.com/codeofconduct/
.. _Code of Conduct FAQ: https://opensource.microsoft.com/codeofconduct/faq/
.. _MIT license: https://github.com/Microsoft/mssql-scripter/blob/dev/LICENSE.txt