Rob Verschoor

Results 24 issues of Rob Verschoor

In Babelfish, the DATEDIFF() BIF does not recognize the 'weekday' and 'dw' units. All of the below examples are valid in SQL Server. NB. 'weekday' seems to be undocumented: [https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/functions/datediff-transact-sql.md.](http://example.com/)...

bug
good first issue
help wanted

Babelfish modifies certain identifiers in order to map T-SQL names to PG-compatible names. Examples include index names (which get a hash appended to make them unique in a schema) and...

enhancement
help wanted
roadmap

T-SQL allows referencing objects in remote servers through a 4-part object name as follows: server_name.[database_name].[schema_name].object_name. Babelfish currently supports read access to remote table/views through 4-part names. However, modifying a remote...

enhancement
help wanted
roadmap

T-SQL allows referencing objects in remote servers through a 4-part object name as follows: `server_name.[database_name].[schema_name].object_name`. Babelfish currently supports read access to remote table/views through 4-part names. However, execution of a...

enhancement
help wanted
roadmap

In T-SQL, it is allowed to call a stored procedure, but specify its name in a variable. Reference: https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/language-elements/execute-transact-sql.md

enhancement
up-for-grabs

The HIERARCHYID datatype is not currently supproted in Babelfish. Reference: https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/data-types/hierarchyid-data-type-method-reference.md

enhancement
up-for-grabs

DROP TRIGGER currently only supports a single trigger in Babelfish, but multiple triggers can be specified in SQL Server. Reference: https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/statements/drop-trigger-transact-sql.md

enhancement
help wanted

DROP INDEX currently only supports a single index in Babelfish, but multiple indexes can be specified in SQL Server. Reference: https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/statements/drop-index-transact-sql.md

enhancement
help wanted

DROP DATABASE currently only supports a single database in Babelfish, but multiple databases can be specified in SQL Server. Reference: https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/statements/drop-database-transact-sql.md

enhancement
help wanted

In T-SQL, it is possible to drop multiple tables in a single DROP statement. When one of the objects specified does not exist, the others are dropped anyway. However, in...

enhancement
help wanted