B1SA.HanaTranslator
2.0.1
dotnet add package B1SA.HanaTranslator --version 2.0.1
NuGet\Install-Package B1SA.HanaTranslator -Version 2.0.1
<PackageReference Include="B1SA.HanaTranslator" Version="2.0.1" />
paket add B1SA.HanaTranslator --version 2.0.1
#r "nuget: B1SA.HanaTranslator, 2.0.1"
// Install B1SA.HanaTranslator as a Cake Addin #addin nuget:?package=B1SA.HanaTranslator&version=2.0.1 // Install B1SA.HanaTranslator as a Cake Tool #tool nuget:?package=B1SA.HanaTranslator&version=2.0.1
B1SA.HanaTranslator
SMS Fork
- The main focus of our changes were easy consumption of the SQL string translation feature as a NuGet package
- This library is based on the Query Migration Tool for Microsoft SQL Server to SAP HANA, which is marked as being archived
- fork date:
2017-11-10
- git revision:
e53f0ecce5fabdac2c5787ae1311437a148552e5
- fork date:
- Like the original code the changes are licensed under the MIT license as well
- The referenced ANTLR library & runtime to parse the SQL is licensed under the BSD license
Changes
- Targeting .NET Standard 2.0
- Removed UI
- Removed the DB connectivity and with it all its references, but also the CaseFixer feature
- SQL identifiers are not enclosed in double quotes automatically, the correct case is in the responsibility of the library user!
- Repository clean up & streamlining for packaging
- Switch from static file
config.txt
to non-static object configuration - Use ANTLR packages instead of local references (only the current release candidate supports .NET Standard 2.0)
- Switch to the more unique and origin honouring namespace
B1SA.HanaTranslator
- Bumped version to
2.0.1
- And many more small improvements...
Usage
using B1SA.HanaTranslator;
var translator = new Translator(new Config() {
TranslationComments = true,
FormatOutput = true
});
var hanaSql = translator.Translate(
"""
SELECT "Item", ISNULL("Quantity", 0) AS "Quantity" FROM "Table"
""",
out string summary,
out int statements,
out int errors
);
The original README
Query Migration Tool for Microsoft SQL Server to SAP HANA
The Query Migration Tool for Microsoft SQL Server to SAP HANA is a semi-automatic tool that helps convert most of the data-definition language (DDL) and data-manipulation language (DML). It will help you to convert structured query language (SQL) in the Microsoft SQL Server database (using T-SQL grammar) to SQL that can be used in the SAP HANA™ database (using ANSI-SQL grammar).
After the conversion, you must check whether the converted version is correct according to your needs.
This tool supports most of the official T-SQL grammar, and some well-known and widely-used undocumented feature. For more information about the official T-SQL grammar, see the MSDN Library.
If SAP HANA does not support certain SQL, this tool will do the following:
- Find equivalents in the SAP HANA database and convert the SQL.
- Delete the SQL in the input file and display relevant comments in the output file.
- Leave the SQL in the input file as it is, for example, the WITH statement.
In order to find out more details please follow the details on the SAP community blog https://blogs.sap.com/2013/04/10/how-to-convert-sql-from-ms-sql-server-to-sap-hana/.
Prerequisites
The provided source code is a .NET solution. You will need Microsoft Visual Studio installed in your own environment to be able to recompile the provided source code.
License
- There is no guarantee or support on the provided source code.
- The provided source code might use external frameworks and libraries, pay attention if you are building a product that you have the required licenses.
- The Query Migration Tool for Microsoft SQL Server to SAP HANA is released under the terms of the MIT license. See LICENSE for more information or see https://opensource.org/licenses/MIT.
Special thanks
Thanks to the SAP Business One development team for his collaboration on getting this tool implemented and published here.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Antlr3 (>= 3.5.2-rc1)
- Antlr3.Runtime (>= 3.5.2-rc1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.1 | 211 | 3/25/2024 |