What variation of SQL is used for Amazon Athena? [closed] - sql

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I just started using Amazon Athena and I can make simple SELECT statements, but it's clearly not T-SQL. What database is Athena based on, at least for the SQL query portion?

Athena supports ANSI SQL, as does almost every other SQL database.
T-SQL is Microsoft’s extension to ANSI SQL that provides some programming capabilities - similar to PL/SQL in Oracle.
As T-SQL is proprietary to MS, it’s not surprising that an AWS product doesn’t support it.

Related

How to query Apache Ignite cache using some SQL query tool? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there explanation and step by step example on how to set JDBC/ODBC with some comercial or open source tool (e.g. datagrip, sql-workbench or some other sql-console), and query Ignite cache with regular SQL query?
p.s. Looking for external client example, not a java code to query it.
Check this: https://apacheignite.readme.io/docs/sql-tooling
It uses DBeaver as an example, but the same can be applied to other tools as well.

Where can I find SQL language specification [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Is there an official SQL standard? I.e. I want to understand what type of expression is supported by SQL language and how this expression evaluated by server? What documents are using for implementation SQL based databases?
There is an official SQL standard from the ISO/ANSI committee.
Some information can be found here: http://en.wikipedia.org/wiki/Sql
However the specification itself is not freely available. You might find some drafts of older specs in the internet if you search for it.
A nice explanation of the (yet a bit old) ANSI 99 standard is here: https://mariadb.com/kb/en/sql-99-complete-really/
Here is a compilation of at least the BNF syntax for various versions of the standard

Is there any tool or website to convert Oracle 10g SQL query to SQL Server 2005? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am creating some demo application for Webdev server for this Java WebDAV Server by ithit.com
They provide me with a SQL query in Oracle 10g datatype format and there are number of queries.
Is there any way to convert this query to format runnable on SQL Server 2005? So that I can use SQL Server.
Refer to this, this may help you.
http://www.swissql.com/products/sql-translator/sql-converter.html
Update (2016-02-03)
Looks like SwisSQL has been discontinued.
SwisSQL - End of Life Notice
Thanks for your interest in SwisSQL
Regret to inform you that we have decided to discontinue any development and investments on this product to best align with our business goals and direction. Existing customers of SwisSQL can avail product support from us till their current support contract expires. For further queries, do email us at support#swissql.com and we'll be happy to assist you.

What is a good, free database scripting tool [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a free tool that will allow me to specify a SELECT statement on a table and then generate the result set as a series of INSERT statements to transfer to another database. I have the SQL Publishing Wizard, but that only allows me to generate statements for the entire table, and I can't specify a WHERE clause to filter the data it publishes. So far the only tool I have seen is made by Red Gate, which my employer only gives to DBA's. Are there any free tools out there that will let me do the same thing, without having to go and bug a DBA everytime I need to update some data in a database?
SSMS Tools Pack has a good collection of features, including generating insert statements. Works on MS SQL 2005 and beyond.
I've used this one in the past, I don't think its been updated recently:
http://vyaskn.tripod.com/code/generate_inserts.txt

Need in SQL parser on Delphi [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anybody know about good SQL parser with sources, written in Delphi? I need in parsing SQL commands (with all new features of Firebird 2.5) into object structure.
Read this article for Delphi SQL Parser, it uses IB as database but should not be very different between it and FB.
And there's an open source project called SQL Parser for Delphi but hasn't updated since 2005, but it may give you start up point.
2 other native Delphi SQL parsers:
Zeoslib seems to have an sql parser to parse Interbase, MySQL, Oracle, Postgres, SqLite and Sybase.
General SQL Parser (commercial)