T-SQL limitations
In this chapter, you will learn about functional differences between Babelfish and Microsoft SQL Server.
Missing features
The following table contains a list of SQL Server features that are currently not implemented in Babelfish. Note that the list of limitations may change in the future.
Functionality or Syntax | Notes |
---|---|
ADD SIGNATURE | Functionality related to this command is not supported. |
CREATE AGGREGATE | Functionality related to this command is not supported. |
Aggregate functions | APPROX_COUNT_DISTINCT , CHECKSUM_AGG , GROUPING_ID , ROWCOUNT_BIG , STDEV , STDEVP , VAR , and VARP are not supported. |
ALTER statement | You can’t use an ALTER statement to modify the following objects: AGGREGATE , APPLICATION ROLE , ASSEMBLY , ASYMMETRIC KEY , AUTHORIZATION , AVAILABILITY GROUP , BROKER PRIORITY , COLUMN ENCRYPTION KEY , CONTRACT , BACKUP CERTIFICATE , CREDENTIAL , TABLE ... IDENTITY , USER , CRYPTOGRAPHIC PROVIDER , DATABASE ENCRYPTION KEY , DATABASE AUDIT SPECIFICATION , DEFAULT , ENDPOINT , EXTERNAL FILE FORMAT , EVENT NOTIFICATION , EVENT SESSION , FULLTEXT CATALOG , FULLTEXT INDEX , FULLTEXT STOPLIST , INDEX , SPATIAL INDEX , XML INDEX , COLUMNSTORE INDEX , EXTERNAL LANGUAGE , EXTERNAL LIBRARY , LOGIN , MASTER KEY , MESSAGE TYPE , EXTERNAL LANGUAGE , EXTERNAL LIBRARY , LOGIN , PARTITION FUNCTION , PARTITION SCHEME , QUEUE , REMOTE SERVICE BINDING , RESOURCE POOL , EXTERNAL RESOURCE POOL , RESOURCE GOVERNOR , ROLE , ROUTE , RULE , SCHEMA , SEARCH PROPERTY LIST , SECURITY POLICY , SEARCH PROPERTY LIST , SERVER AUDIT , SERVER AUDIT SPECIFICATION , SERVER ROLE , SERVICE , SERVICE MASTER KEY , SYMMETRIC KEY , TABLE ... GRANT IDENTITY clauses, EXTERNAL TABLE , TRIGGER (schema qualified), TYPE , USER , WORKLOAD GROUP , WORKLOAD CLASSIFIER , SELECTIVE XML INDEX , XML SCHEMA COLLECTION |
CREATE/ALTER/DROP APPLICATION ROLE | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP ASSEMBLY | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP ASYMMETRIC KEY | Functionality related to this syntax is not supported. |
Assembly modules and CLR routines | Functionality related to assembly modules and CLR routines is not supported. |
CREATE/ALTER/DROP AUTHORIZATION | Functionality related to these commands is not supported. |
CREATE/ALTER/DROP AVAILABILITY GROUP | Functionality related to these commands is not supported. |
BACKUP statement | This command is not supported. You will have to backup the database using PostgreSQL techniques. |
BEGIN DISTRIBUTED TRANSACTION | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP BROKER PRIORITY | Functionality related to these command is not supported. |
Bulk copy in and out | Functionality related to bulk copy is not supported. |
BULK INSERT | This syntax is not supported. |
CERTENCODED function | This function is not supported. |
CERTID function | This function is not supported. |
CERTPRIVATEKEY function | This function is not supported. |
CERTPROPERTY function | This function is not supported. |
SQL keywords CLUSTERED and NONCLUSTERED for indexes and constraints | Babelfish accepts and ignores the CLUSTERED and NONCLUSTERED keywords. |
Collation, index on type dependent on the ICU library | An index on a user-defined type that depends on the ICU collation library (the library used by Babelfish) will not be invalidated when the version of the library is changed. For more information about collations, see the locale documentation. |
COLLATIONPROPERTY function | Collation properties are only implemented for the supported BBF collation types. For more information about collations see the locale documentation. |
Column default | When creating a column default, the constraint name is ignored. To drop a column default, use the following syntax: ALTER TABLE...ALTER COLUMN..DROP DEFAULT... |
Column name: IDENTITYCOL | This column name is not supported. |
Column name: $IDENTITY | This column name is not supported. |
Column name: $ROWGUID | This column name is not supported. |
COLUMNPROPERTY() | This function is not supported. |
Column without alias in result sets | SQL Server and Babelfish handle result set columns without aliases in different ways. SQL Server returns a blank column name, while Babelfish returns a generated column name. |
Column name case | Column names will be stored as lowercase in the PostgreSQL pg_attribute catalog, but are stored in whatever case was specified in the CREATE TABLE statement in an internal Babelfish catalog. The SELECT * operation currently returns column names in lower case rather than in the case specified on the CREATE TABLE statement. This will be fixed in a future version of Babelfish, but until then a workaround is to either specify the columns explicitly in the SELECT statement, or to use SELECT * from a view. |
Virtual computed columns (non-persistent) | The columns will be created as persistent. |
Column attributes | ROWGUIDCOL , SPARSE , FILESTREAM , MASKED aren’t supported. |
CREATE/ALTER/DROP COLUMN ENCRYPTION KEY | Functionality related to these commands is not supported. |
COLUMN MASTER KEY | Functionality related to this object type is not supported. |
COMPATIBILITY_LEVEL | ALTER DATABASE ... SET COMPATIBILITY LEVEL is accepted and ignored. |
sysdatabases.cmptlevel | sysdatabases.cmptlevel will always be NULL . ALTER DATABASE ... SET COMPATIBILITY LEVEL is accepted and ignored. |
CREATE CONTRACT | Functionality related to this command is not supported. |
CREATE/ALTER/DROP, BACKUP CERTIFICATE | Functionality related to these commands is not supported. |
CONTRACT | Functionality related to this object type is not supported. |
CONNECTIONPROPERTY() function | The unsupported properties include: local_net_address , client_net_address , physical_net_transport . |
Constraints | PostgreSQL doesn’t support enabling and disabling individual constraints. The statement is ignored and a warning is raised. |
Constraints created with DESC (descending) columns. | Constraints will be created with ASC (ascending) columns. |
Constraints with IGNORE_DUP_KEY | Constraints will be created without this property. |
BEGIN CONVERSATION TIME | This syntax is not supported. |
END/MOVE CONVERSATION | This syntax is not supported. |
GET CONVERSATION GROUP | This syntax is not supported. |
CREATE/ALTER/DROP CREDENTIAL | This syntax is not supported. |
ALTER DATABASE | This syntax is not supported. |
ALTER DATABASE SCOPED CREDENTIAL | This syntax is not supported. |
CREATE statement | You can’t use a CREATE statement to create the following object types: AGGREGATE , APPLICATION ROLE , ASSEMBLY , ASYMMETRIC KEY , AUTHORIZATION , AVAILABILITY GROUP , BROKER , PRIORITY , COLUMN ENCRYPTION KEY , CONTRACT , BACKUP CERTIFICATE , CREDENTIAL , TABLE ... , IDENTITY , USER , CRYPTOGRAPHIC PROVIDER , DATABASE ENCRYPTION KEY , DATABASE AUDIT , SPECIFICATION , DEFAULT , ENDPOINT , EXTERNAL , FILE FORMAT , EVENT NOTIFICATION , EVENT , SESSION , FULLTEXT CATALOG , FULLTEXT INDEX , FULLTEXT STOPLIST , INDEX , SPATIAL INDEX , XML , INDEX , COLUMNSTORE INDEX , EXTERNAL LANGUAGE , EXTERNAL LIBRARY , LOGIN , MASTER KEY , MESSAGE , TYPE , EXTERNAL LANGUAGE , EXTERNAL LIBRARY , LOGIN , PARTITION FUNCTION , PARTITION SCHEME , QUEUE , REMOTE SERVICE BINDING , RESOURCE POOL , EXTERNAL RESOURCE POOL , RESOURCE GOVERNOR , ROLE , ROUTE , RULE , SCHEMA , SEARCH PROPERTY , LIST , SECURITY POLICY , SEARCH PROPERTY LIST , SERVER AUDIT , SERVER AUDIT SPECIFICATION , SERVER ROLE , SERVICE , SERVICE MASTER KEY , SYMMETRIC KEY , TABLE ... GRANT/IDENTITY clauses, EXTERNAL TABLE , TRIGGER (schema qualified), TYPE , USER , WORKLOAD GROUP , WORKLOAD CLASSIFIER , SELECTIVE XML INDEX , XML , SCHEMA COLLECTION |
CREATE DATABASE keywords and clauses | Options except COLLATE and CONTAINMENT=NONE are not supported. |
CREDENTIAL | Functionality related to this object type is not supported. |
Cross-database object reference | Three-part object names are only supported if they refer to the current database. |
Remote object references | Four-part object names are not supported. |
CRYPTOGRAPHIC PROVIDER | Functionality related to this object type is not supported. |
Cursors (updatable) | Functionality related to this object type is not supported. |
Cursors (global) | GLOBAL cursors are not supported. |
Cursor (fetch behaviors) | The following cursor behaviors are not supported: FETCH PRIOR , FIRST , LAST , ABSOLUTE , RELATIVE |
Cursor-typed (variables and parameters) | Cursor-typed variables and parameters are not supported. |
CROSS APPLY | Lateral joins are not supported. |
CREATE/ALTER/DROP CRYPTOGRAPHIC PROVIDER | This syntax is not supported. |
Cursor Options | SCROLL , KEYSET , DYNAMIC , FAST_FORWARD , SCROLL_LOCKS , OPTIMISTIC , TYPE_WARNING , FOR UPDATE are not supported. |
DBCC commands | DBCC commands are not supported. |
CREATE DATABASE case-sensitive collation | Case-sensitive collations are not supported with the CREATE DATABASE statement. |
ALTER DATABASE/ALTER DATABASE SET | Functionality related to these commands is not supported. |
CREATE/ALTER/DROP DATABASE ENCRYPTION KEY | Functionality related to these commands is not supported. |
Contained databases | Contained databases with logins authenticated at the database level rather than at the server level are not supported. |
CREATE/ALTER/DROP DATABASE AUDIT SPECIFICATION | Functionality related to this object type is not supported. |
CREATE/ALTER EXTERNAL DATA SOURCE | Functionality related to this object type is not supported. |
Datatype: ROWVERSION | This data type is not supported. |
Datatype: NATIONAL CHARACTER | This data type is not supported. |
CREATE/DROP DEFAULT | Functionality related to this object type is not supported. |
DENY | This syntax is not supported. |
DIAGNOSTIC SESSION | Functionality related to this object type is not supported. |
BEGIN DIALOG CONVERSATION | This syntax is not supported. |
DROP statements that drop multiple objects | This functionality is not supported. |
DROP IF EXISTS | This syntax is not supported for USER and SCHEMA objects. It is supported for the following objects: TABLE , VIEW , PROCEDURE , FUNCTION, DATABASE . |
Data encryption | Data encryption is not supported. |
Encryption | Built in functions and statements do not support encryption. |
ENCRYPT_CLIENT_CERT connections | Client certificate connections are not supported. |
CREATE/ALTER/DROP ENDPOINT | This syntax is not supported. |
EXECUTE AS clause | This syntax is not supported. |
EXECUTE AS SELF clause | Not supported in functions, procedures, or triggers. |
CREATE ... EXECUTE AS OWNER clause | EXECUTE AS OWNER/CALLER is supported for permission, but not for name resolution. |
EXECUTE AS USE clause | This clause is not supported in functions, procedures, or triggers. |
EXECUTE with AS LOGIN or AT option | This syntax is not supported. |
Using EXECUTE to call | This syntax is not supported. |
EVENTDATA function | This function is not supported. |
CREATE/DROP EVENT NOTIFICATION | This functionality is not supported. |
CREATE/ALTER/DROP EVENT SESSION | Functionality related to this syntax is not supported. |
CREATE EXTERNAL FILE FORMAT | This syntax is not supported. |
SQL keyword clause ON filegroup | Currently ignored. |
Foreign Key constraints referencing database name | Foreign Key constraints that reference the database name are not supported. |
CREATE/ALTER/DROP FULLTEXT CATALOG | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP FULLTEXT INDEX | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP FULLTEXT STOPLIST | Functionality related to this syntax is not supported. |
Full-text Search | Search with a gist index is not supported. |
Full-text Search | Full-text search built-in functions and statements are not supported. |
ALTER FUNCTION | This syntax is not supported. |
Function declarations with > 100 parameters | Function declarations that contain more than 100 parameters are not supported. |
Function calls that calls DEFAULT | DEFAULT is not a supported parameter value for a function call. |
Function calls that include :: | Function calls that include :: are not supported. |
Functions, externally defined | External functions, including SQL Common Language Runtime (CLR) are not supported. |
GEOMETRY | Datatype and all associated functionality is not supported. |
GEOGRAPHY | Datatype and all associated functionality is not supported. |
GET_TRANSMISSION_STATUS | This function is not supported. |
Graph functionality | All SQL graph functionality is not supported. |
GRANT | This command is not supported. |
GROUP BY ALL clause | This syntax is not supported. |
GROUP BY ROLLUP clause | This syntax is not supported. |
GROUP BY CUBE clause | This syntax is not supported. |
ALTER DATABASE SET HADR | This syntax is not supported. |
HASHBYTES() function | The only supported algorithms are: MD5, SHA1, and SHA256 |
HIERARCHYID | The datatype and methods are not supported. |
Hints | Hints are not supported for joins, queries, or tables and will be ignored. |
INFORMATION_SCHEMA catalog | Information schema views are not supported. |
Identifiers exceeding 63 characters | PostgreSQL supports a maximum of 63 characters for identifiers. Babelfish converts identifiers longer than 63 characters to a name that uses a hash of the original name. Use the original name with T-SQL, but the converted name if accessing the database on the PostgreSQL listener port (5432). |
Identifiers with leading dot characters | Identifiers that start with a . are not supported. |
Identifiers (variables/parameters) with multiple leading @ characters | Identifiers that start with more than one leading @ are not supported. |
Identifiers: table or column names that contain @ or [] characters | Table or column names that contain an @ sign or square brackets are not supported. |
Identifiers with multiple @ characters | Babelfish does not support system-defined @@variables other than: @@VERSION , @@SPID , @@ROWCOUNT , @@TRANCOUNT , @@IDENTITY , @@ERROR , @@FETCH_STATUS , @@MAX_PRECISION , @@SERVERNAME , @@DATEFIRST |
IDENTITY columns support | IDENTITY columns are supported for data types tinyint , smallint , int , bigint , numeric , and decimal . SQL Server supports precision up to 38 for data types numeric and decimal in IDENTITY columns. PostgreSQL supports precision up to 19 for data types numeric and decimal in IDENTITY columns. |
Indexes with IGNORE_DUP_KEY | Syntax that creates an index that includes IGNORE_DUP_KEY will create an index as if this property was omitted. |
Indexes with more than 32 columns | An index may not include more than 32 columns; INCLUDE d index columns count towards the limit in PostgreSQL, but not in SQL Server. |
Inline indexes | Inline indexes are not supported. |
Indexes (clustered) | Clustered indexes are created as if NONCLUSTERED was specified. |
Indexed views | Functionality related to this object type is not supported. |
CREATE COLUMNSTORE INDEX | This syntax is not supported. |
CREATE/ALTER/DROP INDEX | This syntax is not supported. |
CREATE/ALTER/DROP SPATIAL INDEX | This syntax is not supported. |
CREATE/ALTER/DROP XML INDEX | This syntax is not supported. |
Index clauses | The following clauses are ignored: FILLFACTOR , ALLOW_PAGE_LOCKS , ALLOW_ROW_LOCKS , PAD_INDEX , STATISTICS_NORECOMPUTE , OPTIMIZE_FOR_SEQUENTIAL_KEY , SORT_IN_TEMPDB , DROP_EXISTING , ONLINE , COMPRESSION_DELAY , MAXDOP , DATA_COMPRESSION |
INSERT ... TOP | This syntax is not supported. |
INSERT ... DEFAULT VALUES | This syntax is not supported. |
JSON | Datatypes, Built-in Functions, and statements are unsupported. |
KILL | This syntax is not supported. |
CREATE/ALTER/DROP EXTERNAL LANGUAGE | This syntax is not supported. |
CREATE/ALTER/DROP EXTERNAL LIBRARY | Functionality related to this object type is not supported. |
Localization of messages | Only English error messages and date names are currently supported. |
CREATE/ALTER LOGIN clauses are supported with limited syntax | The CREATE LOGIN ... PASSWORD clause, ...DEFAULT_DATABASE clause, and ...DEFAULT_LANGUAGE clause are supported. The ALTER LOGIN ... PASSWORD clause is supported, but ALTER LOGIN ... OLD_PASSWORD clause is not supported. Only a sysadmin login user can modify a password. |
LOGIN objects | All options for LOGIN objects except: PASSWORD , DEFAULT_DATABASE , ENABLE , DISABLE |
LOGINPROPERTY() function | This function is not supported. |
CREATE/ALTER/DROP OPEN/CLOSE, BACKUP/RESTORE MASTER KEY , | Functionality related to this syntax is not supported. |
Materialized Views | Materialized views are not supported. |
CREATE/ALTER/DROP MESSAGE TYPE | This syntax is not supported. |
NEWSEQUENTIALID() function | Implemented as NEWID(); sequential behavior is not supported. |
MERGE | This syntax is not supported. |
NEWSEQUENTIALID() function | When calling NEWSEQUENTIALID() , PostgreSQL cannot guarantee a higher GUID value, so it will generate a new GUID value instead, just like NEWID() does. |
NEXT VALUE FOR sequence clause | This syntax is not supported. |
NOT FOR REPLICATION clause | This syntax is accepted and ignored. |
SET NUMERIC_ROUNDABORT ON | This setting is not supported. |
OBJECTPROPERTY() | This function is not supported. |
OBJECTPROPERTYEX() | This function is not supported. |
ODBC escape functions | ODBC escape functions are not supported. |
OUTER APPLY | Lateral joins are not supported. |
Procedure or function parameter limit | PostgreSQL supports a maximum of 100 parameters for a procedure or function. |
Partitioning | Table and index partitioning is not supported. |
CREATE/ALTER/DROP PARTITION FUNCTION | This syntax is not supported. |
CREATE/ALTER/DROP PARTITION SCHEME | This syntax is not supported. |
ALTER PROCEDURE statement | This syntax is not supported. |
Procedures WITH RECOMPILE | WITH RECOMPILE (when used in conjunction with the DECLARE and EXECUTE statements) is not supported. |
Procedure declarations with more than 100 parameters | Declarations with more than 100 parameters are not supported. |
Procedure calls that includes DEFAULT as a parameter value | DEFAULT is not a supported parameter value. |
Procedures, externally defined | Externally defined procedures (including SQL Common Language Runtime (CLR)) are not supported. |
Invoking a procedure whose name is in a variable | Using a variable as a procedure name is not supported. |
Procedure versioning | Procedure versioning is not supported. |
CREATE/ALTER/DROP QUEUE | Functionality related to this syntax is not supported. |
READTEXT | This syntax is not supported. |
Remote object access | Remote object access (including tables, views, and procedures) is not supported. |
CREATE/ALTER/DROP REMOTE SERVICE BINDING | Functionality related to this object type is not supported. |
CREATE/ALTER/DROP RESOURCE POOL | This syntax is not supported. |
CREATE/ALTER/DROP EXTERNAL RESOURCE POOL | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP RESOURCE GOVERNOR | Functionality related to this syntax is not supported. |
RESTORE statement | This command is not supported. You have to backup and restore the database using PostgreSQL techniques. |
REVERT | This syntax is not supported. |
REVOKE | This syntax is not supported. |
CREATE/ALTER/DROP ROLE | This syntax is not supported. |
Roles: Server-level roles other than sysadmin | Server-level roles (other than sysadmin) are not supported. |
Roles: Database-level roles other than db_owner | Database-level roles other than db_owner are not supported. |
ROLLBACK : table variables do not support transactional rollback | Processing may be interrupted if a rollback occurs in a session with table variables. |
CREATE/ALTER/DROP ROUTE | Functionality related to this syntax is not supported. |
ROWGUIDCOL | Currently ignored. Queries referencing $GUIDGOL will cause a syntax error. |
Row-level security | Row-level security with CREATE SECURITY POLICY and inline table-valued functions is currently not supported. |
ROWSET functions | The following ROWSET functions are not supported: OPENXML() , OPENJSON() , OPENROWSET() , OPENQUERY() , OPENDATASOURCE() |
ROWVERSION | This datatype is not supported. |
CREATE/DROP RULE | Functionality related to this syntax is not supported. |
ALTER DATABASE SCOPED CONFIGURATION | This syntax is not supported. |
ALTER SCHEMA | This syntax is not supported. |
CREATE SCHEMA ... supporting clause | You can use the CREATE SCHEMA command to create an empty schema. Use later commands to create schema objects. |
CREATE/ALTER/DROP SECURITY POLICY | This syntax is not supported. |
CREATE/ALTER/DROP SEARCH PROPERTY LIST | This syntax is not supported. |
SEQUENCE object support | SEQUENCE objects are supported for data support types tinyint , smallint , int , bigint , numeric , and decimal . PostgreSQL supports precision to 19 places for data types numeric and decimal in a SEQUENCE . |
CREATE/ALTER/DROP SERVER AUDIT | Functionality related to this object type is not supported. |
CREATE/ALTER/DROP SERVER AUDIT SPECIFICATION | Functionality related to this object type is not supported. |
SELECT PIVOT/UNPIVOT | This syntax is not supported. |
SELECT TOP x PERCENT WHERE x \< or \> 100 | This syntax is not supported. |
SELECT TOP ... WITH TIES | This syntax is not supported. |
SELECT ... FOR XML PATH, ELEMENTS | Supported without the ELEMENTS clause. |
SELECT ... FOR XML RAW, ELEMENTS | Supported without the ELEMENTS clause. |
SEND | This syntax is not supported. |
ALTER SERVER CONFIGURATION | This syntax is not supported. |
SERVERPROPERTY() | Unsupported properties: BuildClrVersion , ComparisonStyle , ComputerNamePhysicalNetBIOS , EditionID , EngineEdition , HadrManagerStatus , InstanceDefaultDataPath , InstanceDefaultLogPath , InstanceName , IsAdvancedAnalyticsInstalled , IsBigDataCluster , IsClustered , IsFullTextInstalled , IsHadrEnabled , IsIntegratedSecurityOnly , IsLocalDB , IsPolyBaseInstalled , IsXTPSupported , LCID , LicenseType , MachineName , NumLicenses , ProcessID , ProductBuild , ProductBuildType , ProductLevel , ProductMajorVersion , ProductMinorVersion , ProductUpdateLevel , ProductUpdateReference , ProductVersion , ResourceLastUpdateDateTime , ResourceVersion , ServerName , SqlCharSet , SqlCharSetName , SqlSortOrder , SqlSortOrderName , FilestreamShareName , FilestreamConfiguredLevel , FilestreamEffectiveLevel |
CREATE/ALTER/DROP SERVER ROLE | Functionality related to this syntax is not supported. |
CREATE/ALTER/DROP SERVICE | Functionality related to this syntax is not supported. |
ALTER SERVICE, BACKUP/RESTORE SERVICE MASTER KEY clause | Functionality related to this syntax is not supported. |
SESSIONPROPERTY() | Unsupported properties: ANSI_NULLS , ANSI_PADDING , ANSI_WARNINGS , ARITHABORT , CONCAT_NULL_YIELDS_NULL , NUMERIC_ROUNDABORT |
Service Broker functionality | Service Broker functionality is not supported. |
SERVICE MASTER KEY | Functionality related to this object type is not supported. |
SET ANSI_NULL_DFLT_OFF ON | This setting is not supported. |
SET ANSI_NULL_DFLT_ON OFF | This setting is not supported. |
SET ANSI_PADDING OFF | This setting is not supported. |
SET ANSI_WARNINGS OFF | This setting is not supported. |
SET ARITHABORT OFF | This setting is not supported. |
SET ARITHIGNORE ON | This setting is not supported. |
SET CONTEXT_INFO | This syntax is not supported. |
SET CURSOR_CLOSE_ON_COMMIT ON | This setting is not supported. |
SET DATEFORMAT | This syntax is not supported. |
SET DEADLOCK_PRIORITY | This syntax is not supported. |
SET FORCEPLAN | This syntax is not supported. |
SET FMTONLY | This syntax is not supported. |
SET LANGUAGE | This syntax is not supported with any value other than english or us_english . |
SET LOCK_TIMEOUT | This syntax is not supported. |
SET NUMERIC_ROUNDABORT ON | This syntax is not supported. |
SET REMOTE_PROC_TRANSACTIONS | This syntax is not supported. |
SET ROWCOUNT n WHERE n != 0 | This syntax is not supported. |
SET ROWCOUNT @variable | This syntax is not supported. |
SET SHOWPLAN_ALL | This syntax is not supported. |
SET SHOWPLAN_TEXT | This syntax is not supported. |
SET SHOWPLAN_XML | This syntax is not supported. |
SET STATISTICS | This syntax is not supported. |
SET STATISTICS IO | This syntax is not supported. |
SET STATISTICS PROFILE | This syntax is not supported. |
SET STATISTICS TIME | This syntax is not supported. |
SET STATISTICS XML | This syntax is not supported. |
SET TRANSACTION ISOLATION LEVEL REPEATABLE READ | This syntax is not supported. |
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE | This syntax is not supported. |
SET OFFSETS | This syntax is not supported. |
SETUSER statements | SETUSER statements are not supported. |
SHUTDOWN statement | This syntax is not supported. |
SP_CONFIGURE | This syntax is not supported. |
SQL keyword SPARSE | The keyword SPARSE (related to SQL Server-specific aspects of data storage) is accepted and ignored. |
System-provided stored procedures are partially supported | SP_HELPDB , SP_GETAPPLOCK , SP_RELEASEAPPLOCK are supported. All other stored procedures are not supported. |
Unquoted string values in stored procedure calls and default values | String value calls to stored procedures and default values must be enclosed in single-quotes. |
SYNONYM | Functionality related to this object type is not supported. |
CREATE/ALTER/DROP, OPEN/CLOSE SYMMETRIC KEY | Functionality related to this object type is not supported. |
CREATE TABLE ... GRANT clause | Functionality related to this syntax is not supported. |
CREATE TABLE ... IDENTITY clause | Functionality related to this syntax is not supported. |
CREATE EXTERNAL TABLE | Functionality related to this syntax is not supported. |
Table value constructor syntax (FROM clause) | The unsupported syntax is for a derived table constructed with the FROM clause. |
tempdb is not reinitialized at restart | Permanent objects (like tables and procedures) created in tempdb are not removed when the database is restarted. |
Time precision | Babelfish supports 6-digit precision for fractional seconds. Babelfish doesn’t perform SQL Server 3-millisecond rounding. No adverse effects are anticipated with this behavior. |
TIMESTAMP | SQL Server’s TIMESTAMP is unrelated to PostgreSQL TIMESTAMP . |
TYPEPROPERTY() function | This function is not supported. |
Global temporary tables (tables with names that start with ## ) | Global temporary tables are not supported. |
Temporary procedures are not dropped automatically | This functionality is not supported. |
Temporal tables | Temporal tables are not supported. |
TEXTIMAGE_ON filegroup | Babelfish ignores the TEXTIMAGE_ON filegroup clause. |
Transaction isolation levels | READUNCOMMITTED is treated the same as READCOMMITTED . REPEATABLEREAD , SERIALIZABLE , and SNAPSHOT are not supported. |
ALTER TRIGGER | This syntax is not supported. |
CREATE TRIGGER (schema qualified) | Schema qualified trigger names are not supported. |
ENABLE/DISABLE TRIGGER | This syntax is not supported. |
DDL trigger | DDL triggers are not supported. |
LOGON trigger | LOGON triggers are not supported. |
Triggers, externally defined | Externally defined triggers including SQL Common Language Runtime (CLR) are not supported. |
INSTEAD_OF Triggers | INSTEAD_OF triggers are not supported. |
Trigger for multiple DML actions | Triggers that reference multiple DML actions cannot reference transition tables. |
CREATE/ALTER/DROP TYPE | This syntax is not supported. |
SELECT ... FOR XML AUTO | This syntax is not supported. |
SELECT ... FOR XML EXPLICIT | This syntax is not supported. |
UPDATE STATISTICS | This syntax is not supported. |
CREATE USER | This syntax is not supported. The PostgreSQL statement, CREATE USER does not create a user that is equivalent to the SQL Server CREATE USER syntax. |
UPDATETEXT | This syntax is not supported. |
USER | Functionality related to this object type is not supported. |
Variable | Using a transaction or savepoint name in a variable is not supported. |
ALTER VIEW | This syntax is not supported. |
VIEW ... VIEW_METADATA clause | This syntax is not supported. |
VIEW ... CHECK OPTION clause | This syntax is not supported. |
@@version | The value returned by @@version is slightly different from the value returned by SQL Server. Your code might not work correctly if it depends on the formatting of @@version . |
WAITFOR DELAY | This syntax is not supported. |
WAITFOR/RECEIVE | This syntax is not supported. |
WAITFOR TIME | This syntax is not supported. |
WITH ENCRYPTION clause | This syntax is not supported for functions, procedures, triggers, or views. |
CREATE/ALTER/DROP WORKLOAD CLASSIFIER | Functionality related to this syntax is not supported. |
CREATE/DROP WORKLOAD CLASSIFIER | This syntax is not supported. |
WRITETEXT | This syntax is not supported. |
OPENXML() | This function is not supported. |
XML datatype with schema (xmlschema) | XML type without schema is supported. |
XML methods | This includes .VALUES(), .NODES(), and other methods. |
XML indexes | XML indexes are not supported. |
XPATH expressions | This syntax is not supported. |
WITH XMLNAMESPACES construct | This syntax is not supported. |
WITHOUT SCHEMABINDING clause | Not supported in functions, procedures, triggers, or views. The object will be created, but as if WITH SCHEMABINDING was specified. |
CREATE/ALTER/DROP SELECTIVE XML INDEX clause | This syntax is not supported. |
CREATE/ALTER/DROP XML SCHEMA COLLECTION | This syntax is not supported. |
However, there are other differences besides the variations in features. For example, backup and recovery work differently in SQL Server and PostgreSQL, and you will have to use the PostgreSQL tools to backup Babelfish. It is important to understand such differences as well.
Babelfish escape hatches
To better deal with statements that might fail, Babelfish allows you to define escape hatches. An escape hatch is a flag that can be adjusted by the user and specifies the behavior of Babelfish when it encounters an unsupported feature or syntax.
You can use the sp_babelfish_configure
stored procedure to display or change the settings of each escape hatch. Use it to specify if an escape hatch should be set to ignore
or strict
.
If an escape hatch is set to ignore
, Babelfish will suppress the error that the corresponding syntax would otherwise cause. By default, the change applies to the current session only. Include the server
keyword to apply the changes persistently on the cluster level as well.
When you create a new Babelfish cluster, various escape hatches are initialized to strict
, meaning that you may encounter error messages if your SQL code contains unsupported syntax. To suppress all these error messages, set all escape hatches to ignore
with
sp_babelfish_configure '%', 'ignore', 'server'
The following escape hatches exist:
Escape hatch | Description | Default |
---|---|---|
babelfishpg_tsql.escape_hatch_constraint_name_for_default | Controls Babelfish behavior related to default constraint names. | strict |
babelfishpg_tsql.escape_hatch_database_misc_options | Controls Babelfish behavior related to the following options on CREATE or ALTER DATABASE : CONTAINMENT , DB_CHAINING , TRUSTWORTHY , PERSISTENT_LOG_BUFFER . | ignore |
babelfishpg_tsql.escape_hatch_for_replication | Controls Babelfish behavior related to the [NOT] FOR REPLICATION clause when creating or altering a table. | strict |
babelfishpg_tsql.escape_hatch_fulltext | Controls Babelfish behavior related to FULLTEXT features, such as DEFAULT_FULLTEXT_LANGUAG in CREATE/ALTER DATABASE , CREATE FULLTEXT INDEX , or sp_fulltext_database . | strict |
babelfishpg_tsql.escape_hatch_index_clustering | Controls Babelfish behavior related to the CLUSTERED or NONCLUSTERED keywords for indexes and PRIMARY KEY or UNIQUE constraints. When CLUSTERED is ignored, the index or constraint is still created as if NONCLUSTERED was specified. | ignore |
babelfishpg_tsql.escape_hatch_index_columnstore | Controls Babelfish behavior related to the COLUMNSTORE clause. If you specify ignore, Babelfish creates a regular B-tree index. | strict |
babelfishpg_tsql.escape_hatch_join_hints | Controls the behavior of keywords in a JOIN operator: LOOP , HASH , MERGE , REMOTE , REDUCE , REDISTRIBUTE , REPLICATE . | ignore |
babelfishpg_tsql.escape_hatch_language_non_english | Controls Babelfish behavior related to languages other than English for onscreen messages. Babelfish currently supports only us_english for on-screen messages. SET LANGUAGE might use a variable containing the language name, so the actual language being set can only be detected at run time. | strict |
babelfishpg_tsql.escape_hatch_login_hashed_password | HASHED password is not supported for CREATE LOGIN and ALTER LOGIN . | strict |
babelfishpg_tsql.escape_hatch_login_misc_options | This deals with various other unsupported options for CREATE LOGIN and ALTER LOGIN | strict |
babelfishpg_tsql.escape_hatch_login_old_password | The OLD_PASSWORD option of ALTER LOGIN is not supported. | strict |
babelfishpg_tsql.escape_hatch_login_password_must_change | The MUST_CHANGE password option is not supported for CREATE LOGIN and ALTER LOGIN . | strict |
babelfishpg_tsql.escape_hatch_login_password_unlock | The UNLOCK password option is not supported for CREATE LOGIN and ALTER LOGIN . | strict |
babelfishpg_tsql.escape_hatch_nocheck_add_constraint | Controls Babelfish behavior related to the WITH CHECK or NOCHECK clause for constraints. | strict |
babelfishpg_tsql.escape_hatch_nocheck_existing_constraint | Controls Babelfish behavior related to FOREIGN KEY or CHECK constraints. | strict |
babelfishpg_tsql.escape_hatch_query_hints | Controls Babelfish behavior related to query hints. When this option is set to ignore, the server ignores hints that use the OPTION (...) clause to specify query processing aspects. Examples include SELECT FROM ... OPTION(MERGE JOIN HASH, MAXRECURSION 10)) . | ignore |
babelfishpg_tsql.escape_hatch_rowguidcol_column | Controls Babelfish behavior related to the ROWGUIDCOL clause when creating or altering a table. | strict |
babelfishpg_tsql.escape_hatch_schemabinding_function | Controls Babelfish behavior related to the WITH SCHEMABINDING clause. By default, the WITH SCHEMABINDING clause is ignored when specified with the CREATE or ALTER FUNCTION command. | ignore |
babelfishpg_tsql.escape_hatch_schemabinding_procedure | Controls Babelfish behavior related to the WITH SCHEMABINDING clause. By default, the WITH SCHEMABINDING clause is ignored when specified with the CREATE or ALTER PROCEDURE command. | ignore |
babelfishpg_tsql.escape_hatch_schemabinding_trigger | Controls Babelfish behavior related to the WITH SCHEMABINDING clause. By default, the WITH SCHEMABINDING clause is ignored when specified with the CREATE or ALTER TRIGGER command. | ignore |
babelfishpg_tsql.escape_hatch_schemabinding_view | Controls Babelfish behavior related to the WITH SCHEMABINDING clause. By default, the WITH SCHEMABINDING clause is ignored when specified with the CREATE or ALTER VIEW command. | ignore |
babelfishpg_tsql.escape_hatch_session_settings | Controls Babelfish behavior toward unsupported session-level SET statements. | ignore |
babelfishpg_tsql.escape_hatch_storage_on_partition | Controls Babelfish behavior related to the ON partition_scheme column clause when defining partitioning. Babelfish currently doesn’t implement partitioning. | strict |
babelfishpg_tsql.escape_hatch_storage_options | Escape hatch on any storage option used in CREATE /ALTER for DATABASE , TABLE and INDEX . This includes the clauses (LOG) ON , TEXTIMAGE_ON , FILESTREAM_ON that define storage locations (partitions, filegroups) for tables, indexes, and constraints, and also for a database. This escape hatch setting applies to all of these clauses (including ON PRIMARY and ON DEFAULT ). The exception is when a partition is specified for a table or index with ON partition_scheme (column) . | ignore |
babelfishpg_tsql.escape_hatch_table_hints | Controls the behavior of table hints specified using the WITH (...) clause. | ignore |
babelfishpg_tsql.escape_hatch_unique_constraint | Controls Babelfish behavior toward unsupported session-level SET statements. | strict |