Rob Verschoor
Rob Verschoor
The system stored procedure **sp_addserver** can be used to set the local servername in **@@SERVERNAME**. Reference: https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/relational-databases/system-stored-procedures/sp-addserver-transact-sql.md
The following cases of CAST() of a DATETIME value to TIME datatype, fail in Babelfish: SQL Server: ``` 1> SELECT CAST('19980223 14:23:05' AS time) 2> go ---------------------- 14:23:05.0000000 1> SELECT...
Babelfish should provide support for the T-SQL built-in function `PERMISSIONS()` . Reference: [https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/functions/permissions-transact-sql.md](https://github.com/MicrosoftDocs/sql-docs/blob/live/docs/t-sql/functions/permissions-transact-sql.md)
This sequence crashes in v.1.8.1 (and 1.8.0, other versions not tested). Same for GEOMETRY type. Occurs both on Windows and Linux. ``` 1> declare @v geography 2> select @v 3>...