Database to dbt Model Conversion
Purpose
Transform database DDL (views, tables, stored procedures) from any source platform into
production-quality dbt models compatible with Snowflake, maintaining the same business logic and
data transformation steps while following dbt best practices.
When to Use This Skill
Activate this skill when users ask about:
- Converting database views or tables to dbt models
- Migrating stored procedures to dbt
- Translating SQL syntax from one database to Snowflake
- Generating schema.yml files with tests and documentation
- Handling database-specific syntax conversions
Task Description
You are a database engineer working for a hospital system. You need to convert SQL DDL to equivalent
dbt code compatible with Snowflake, maintaining the same business logic and data transformation
steps while following dbt best practices.
Input Requirements
I will provide you the SQL DDL to convert. Please ask for the source database platform if not
obvious from the syntax.
Audience
The code will be executed by data engineers who are learning Snowflake and dbt.
Output Requirements
Generate the following:
- One or more dbt models with complete SQL for every column
- A corresponding schema.yml file with appropriate tests and documentation
- A config block with materialization strategy
- Explanation of key changes and architectural decisions
- Inline comments highlighting any syntax that was converted
Conversion Guidelines
General Principles
- Replace procedural logic with declarative SQL where possible
- Break down complex procedures into multiple modular dbt models
- Implement appropriate incremental processing strategies
- Maintain data quality checks through dbt tests
- Use Snowflake SQL functions rather than macros whenever possible
Sample Response Format
-- dbt model: models/[domain]/[target_schema_name]/model_name.sql
{{ config(materialized='view') }}
/* Original Object: [source_db].[schema].[object_name]
Source Platform: [Teradata|Oracle|SQL Server|etc.]
Purpose: [brief description]
Conversion Notes: [key changes]
Description: [SQL logic description] */
WITH source_data AS (
SELECT
COLUMN1 AS COLUMN1_ALIAS,
COLUMN2 AS COLUMN2_ALIAS,
COLUMN3 AS COLUMN3_ALIAS,
COLUMN4 AS COLUMN4_ALIAS
FROM {{ ref('upstream_model') }}
),
transformed_data AS (
SELECT
UPPER(COLUMN1) AS COLUMN_ALIAS1,
LOWER(COLUMN2) AS COLUMN_ALIAS2,
COLUMN3 || COLUMN4 AS COLUMN_ALIAS3
FROM source_data
)
SELECT
COLUMN_ALIAS1,
COLUMN_ALIAS2,
COLUMN_ALIAS3
FROM transformed_data
# models/[domain]/[target_schema_name]/schema.yml
version: 2
models:
- name: model_name
description: "Table description; converted from [Source Platform] [Original object name]"
columns:
- name: COLUMN_ALIAS1
description: "Column description; Primary key"
tests:
- unique
- not_null
- name: COLUMN_ALIAS2
description: "Column description; Foreign key to OTHER_TABLE"
tests:
- relationships:
to: ref('OTHER_TABLE')
field: OTHER_TABLE_KEY
- name: COLUMN_ALIAS3
description: "Column description"
# dbt_project.yml
models:
my_project:
? [domain]
? [target_schema_name]
+schema: [target_schema_name]
Specific Translation Rules
dbt Specific Requirements:
- If the source is a view, use a view materialization in dbt
- Include appropriate dbt model configuration (materialization type)
- Add documentation blocks for a schema.yml
- Add descriptions for tables and columns
- Include relevant tests
- Define primary keys and relationships
- Assume that upstream objects are models
- Comprehensively provide all the columns in the output
- Break complex procedures into multiple models if needed
- Implement appropriate incremental strategies for large tables
- Use Snowflake SQL functions rather than macros whenever possible
Performance Optimization:
- Suggest clustering keys if needed
- Recommend materialization strategy (view vs table)
- Identify potential performance improvements
Dependencies:
- List any upstream dependencies
- Suggest model organization in dbt project
Validation Checklist
- [] Source platform identified
- [] Every DDL statement has been accounted for in the dbt models
- [] SQL in models is compatible with Snowflake
- [] All business logic preserved
- [] All columns included in output
- [] Data types correctly mapped
- [] Functions translated to Snowflake equivalents
- [] Materialization strategy selected
- [] Tests added
- [] SQL logic description complete
- [] Table descriptions added
- [] Column descriptions added
- [] Dependencies correctly mapped
- [] Incremental logic (if applicable) verified
- [] Inline comments added for converted syntax
Related Skills
- dbt-modeling: For CTE patterns and SQL structure guidance
- dbt-testing: For implementing comprehensive dbt tests
- dbt-architecture: For project organization and folder structure
- dbt-materializations: For choosing materialization strategies (view, table, incremental,
snapshots)
- dbt-performance: For clustering keys, warehouse sizing, and query optimization
- dbt-commands: For running dbt commands and model selection syntax
- dbt-core: For dbt installation, configuration, and package management
- snowflake-cli: For executing SQL and managing Snowflake objects
Supported Source Databases
| Database |
Key Considerations |
| Snowflake |
Native syntax, focus on dbt patterns and best practices |
| Teradata |
QUALIFY, ANSI/TERA session modes, volatile tables, SET/MULTISET, BTEQ/FastLoad/MultiLoad scripts, DBC views |
| Oracle |
PL/SQL, DBMS_* packages, ROWNUM/ROWID, CONNECT BY, sequences, collections/records, wrapped objects, DATE includes time |
| SQL Server / Azure Synapse |
T-SQL procedures, IDENTITY, TOP, #temp tables, TRY...CATCH, sys.* tables, ANSI_NULLS/QUOTED_IDENTIFIER |
| Amazon Redshift |
DISTKEY/SORTKEY, PL/pgSQL procedures, system catalogs (pg_, stl_, stv_), COPY/UNLOAD |
| Google BigQuery |
UNNEST, STRUCT/ARRAY types, backtick identifiers, IS TRUE/FALSE operators, SAFE_* functions |
| PostgreSQL / Greenplum / Netezza |
Array expressions (<> ALL, = ANY), CHAR padding differences, psql commands, distribution keys |
| IBM DB2 |
Inline SQL PL, FETCH FIRST, CONTINUE/EXIT handlers, compound statements |
| Hive / Spark / Databricks |
External tables, PARTITIONED BY, LATERAL VIEW, file formats (PARQUET, ORC), UDFs |
| Vertica |
Projections, flex tables, case sensitivity with quotes, ANY/ALL array predicates |
| Sybase |
T-SQL variant, different built-in functions, SELECT syntax differences |
Translation References
Detailed syntax translation guides are available in the translation-references/ folder.
Copyright Notice: The translation reference documentation in this repository is derived from
Snowflake SnowConvert Documentation
and is © Copyright Snowflake Inc. All rights reserved. Used for reference purposes only.
Full Translation Reference Index
| Folder |
Description |
| bigquery |
BigQuery |
| db2 |
IBM DB2 |
| general |
Cross-database references |
| hive |
Hive, Spark, Databricks |
| oracle |
Oracle |
| postgres |
PostgreSQL, Greenplum, Netezza |
| redshift |
Amazon Redshift |
| ssis |
SSIS |
| sybase |
Sybase IQ |
| teradata |
Teradata |
| transact |
SQL Server / Azure Synapse |
| vertica |
Vertica |
Full Translation Reference Index (Expanded)
| Folder |
Description |
| bigquery |
BigQuery |
| bigquery |
CREATE TABLE (unsupported options) |
| bigquery |
CREATE VIEW |
| bigquery |
Data types mapping |
| bigquery |
Supported Built-in functions |
| bigquery |
Quoted identifier syntax |
| bigquery |
IS operators (IS NULL, IS TRUE, etc.) |
| db2 |
IBM DB2 |
| db2 |
CONTINUE handler behavior |
| db2 |
CREATE FUNCTION |
| db2 |
CREATE PROCEDURE |
| db2 |
CREATE TABLE syntax |
| db2 |
CREATE VIEW |
| db2 |
Data types |
| db2 |
EXIT handler behavior |
| db2 |
FROM clause |
| db2 |
SELECT statement |
| general |
Cross-database references |
| general |
Alphabetical list of Built-in functions (cross-platform) |
| general |
Subqueries in FROM/WHERE clauses |
| hive |
Hive, Spark, Databricks |
| hive |
Built-in functions |
| hive |
Data types mapping |
| hive |
Supported DDL statements |
| hive |
CREATE EXTERNAL TABLE |
| hive |
CREATE VIEW |
| hive |
SELECT |
| hive |
CREATE TABLE |
| oracle |
Oracle |
| oracle |
Data types and arithmetic |
| oracle |
ANY types for flexible parameter/column typing |
| oracle |
Built-in data types (VARCHAR2, NUMBER, DATE, etc.) |
| oracle |
ROWID types |
| oracle |
Spatial and geographic types |
| oracle |
User-defined types (UDTs) |
| oracle |
XML types |
| oracle |
Literals and constant values |
| oracle |
Built-in packages. |
| oracle |
Power BI connection repointing |
| oracle |
Functions |
| oracle |
Custom UDFs for Oracle function equivalence |
| oracle |
PL/SQL to JavaScript |
| oracle |
Helper functions for Oracle features |
| oracle |
Assignment statements and PL/SQL basics |
| oracle |
Collections and Records |
| oracle |
CREATE FUNCTION |
| oracle |
CREATE PROCEDURE |
| oracle |
Cursors |
| oracle |
DML with PL/SQL elements |
| oracle |
Helper functions for unsupported Oracle features |
| oracle |
CREATE PACKAGE |
| oracle |
ROWID pseudocolumn |
| oracle |
Sample data used in examples |
| oracle |
SQL*Plus to SnowSQL |
| oracle |
JOIN operations |
| oracle |
SELECT |
| oracle |
Oracle SQL syntax differences and translations |
| oracle |
Materialized View to Dynamic Table |
| oracle |
CREATE TABLE |
| oracle |
CREATE VIEW |
| oracle |
CREATE TYPE (UDTs) |
| oracle |
Wrapped/encrypted objects |
| postgres |
PostgreSQL, Greenplum, Netezza |
| postgres |
Netezza data types |
| postgres |
PostgreSQL data types |
| postgres |
Greenplum Materialized View |
| postgres |
Materialized View to Dynamic Table |
| postgres |
Greenplum CREATE TABLE |
| postgres |
Netezza CREATE TABLE |
| postgres |
PostgreSQL CREATE TABLE |
| postgres |
PostgreSQL CREATE VIEW |
| postgres |
Power BI connection repointing |
| postgres |
Built-in functions |
| postgres |
<> ALL & = ANY array expressions |
| postgres |
PSQL commands |
| postgres |
String comparison behavior |
| redshift |
Amazon Redshift |
| redshift |
Power BI connection repointing |
| redshift |
Literals |
| redshift |
Names and identifiers |
| redshift |
BETWEEN condition |
| redshift |
CONTINUE handler emulation |
| redshift |
Data types |
| redshift |
EXIT handler via EXCEPTION blocks |
| redshift |
Expression lists |
| redshift |
Built-in functions |
| redshift |
CREATE TABLE AS |
| redshift |
CREATE TABLE |
| redshift |
Supported SQL statements |
| redshift |
System catalog views |
| redshift |
CREATE PROCEDURE |
| redshift |
SELECT INTO |
| redshift |
SELECT |
| ssis |
SSIS |
| sybase |
Sybase IQ |
| sybase |
Built-in functions |
| sybase |
CREATE TABLE |
| sybase |
CREATE VIEW |
| sybase |
Data types mapping |
| sybase |
SELECT statement |
| teradata |
Teradata |
| teradata |
Considerations for migrating data from Teradata |
| teradata |
Power BI connection repointing |
| teradata |
Helper functions for procedures |
| teradata |
BTEQ, FastLoad, MultiLoad, TPT scripts to Python |
| teradata |
BTEQ to Python |
| teradata |
FastLoad to Python |
| teradata |
MultiLoad to Python |
| teradata |
Helper classes for Teradata script to Python conversion |
| teradata |
TPT translation |
| teradata |
Scripts to Snowflake SQL |
| teradata |
BTEQ to Snowflake SQL |
| teradata |
Common script statements |
| teradata |
MultiLoad to Snowflake SQL |
| teradata |
ANSI vs TERA session modes |
| teradata |
Iceberg table transformations |
| teradata |
Teradata SQL to Snowflake |
| teradata |
Analytic functions |
| teradata |
Data types |
| teradata |
Equivalents for DBC objects and columns |
| teradata |
DDL statements |
| teradata |
DML statements |
| teradata |
Built-in functions |
| teradata |
GET DIAGNOSTICS EXCEPTION |
| teradata |
ABORT and ROLLBACK |
| transact |
SQL Server / Azure Synapse |
| transact |
Power BI connection repointing |
| transact |
ALTER statements |
| transact |
ANSI_NULLS setting |
| transact |
Built-in functions |
| transact |
Built-in procedures |
| transact |
Exception handling with TRY...CATCH |
| transact |
User Defined Functions |
| transact |
CREATE INDEX |
| transact |
Materialized View to Dynamic Table |
| transact |
BEGIN/COMMIT transactions |
| transact |
CREATE PROCEDURE to JavaScript |
| transact |
CREATE TABLE |
| transact |
CREATE VIEW |
| transact |
Data types mapping |
| transact |
DML statements and expressions |
| transact |
Exception handling with TRY...CATCH |
| transact |
General statements |
| transact |
QUOTED_IDENTIFIER setting |
| transact |
SELECT in procedures |
| transact |
System tables |
| vertica |
Vertica |
| vertica |
Built-in functions |
| vertica |
CREATE TABLE |
| vertica |
CREATE VIEW |
| vertica |
Data types mapping |
| vertica |
Case sensitivity and quoted identifiers |
| vertica |
Vertica Operators |
| vertica |
ANY & ALL array predicates |
1---2name: dbt-migration-23description: Convert database DDL from any source platform to dbt models compatible with Snowflake. This skill should be used when converting views, tables, or stored procedures from Snowflake, Teradata, Oracle, SQL Server, Redshift, BigQuery, PostgreSQL, DB2, Hive, Vertica, or Sybase to dbt code, generating schema.yml files with tests and documentation, or migrating existing SQL to follow dbt best practices.4---5
6# Database to dbt Model Conversion
7
8## Purpose
9
10Transform database DDL (views, tables, stored procedures) from any source platform into
11production-quality dbt models compatible with Snowflake, maintaining the same business logic and
12data transformation steps while following dbt best practices.
13
14## When to Use This Skill
15
16Activate this skill when users ask about:
17
18- Converting database views or tables to dbt models
19- Migrating stored procedures to dbt
20- Translating SQL syntax from one database to Snowflake
21- Generating schema.yml files with tests and documentation
22- Handling database-specific syntax conversions
23
24---
25
26# Task Description
27
28You are a database engineer working for a hospital system. You need to convert SQL DDL to equivalent
29dbt code compatible with Snowflake, maintaining the same business logic and data transformation
30steps while following dbt best practices.
31
32# Input Requirements
33
34I will provide you the SQL DDL to convert. Please ask for the source database platform if not
35obvious from the syntax.
36
37# Audience
38
39The code will be executed by data engineers who are learning Snowflake and dbt.
40
41# Output Requirements
42
43Generate the following:
44
451. One or more dbt models with complete SQL for every column
462. A corresponding schema.yml file with appropriate tests and documentation
473. A config block with materialization strategy
484. Explanation of key changes and architectural decisions
495. Inline comments highlighting any syntax that was converted
50
51# Conversion Guidelines
52
53## General Principles
54
55- Replace procedural logic with declarative SQL where possible
56- Break down complex procedures into multiple modular dbt models
57- Implement appropriate incremental processing strategies
58- Maintain data quality checks through dbt tests
59- Use Snowflake SQL functions rather than macros whenever possible
60
61## Sample Response Format
62
63```sql
64-- dbt model: models/[domain]/[target_schema_name]/model_name.sql
65{{ config(materialized='view') }}
66
67/* Original Object: [source_db].[schema].[object_name]
68 Source Platform: [Teradata|Oracle|SQL Server|etc.]
69 Purpose: [brief description]
70 Conversion Notes: [key changes]
71 Description: [SQL logic description] */
72
73WITH source_data AS (
74 SELECT
75 COLUMN1 AS COLUMN1_ALIAS,
76 COLUMN2 AS COLUMN2_ALIAS,
77 COLUMN3 AS COLUMN3_ALIAS,
78 COLUMN4 AS COLUMN4_ALIAS
79 FROM {{ ref('upstream_model') }}
80),
81transformed_data AS (
82 SELECT
83 UPPER(COLUMN1) AS COLUMN_ALIAS1,
84 LOWER(COLUMN2) AS COLUMN_ALIAS2,
85 COLUMN3 || COLUMN4 AS COLUMN_ALIAS3
86 FROM source_data
87)
88SELECT
89 COLUMN_ALIAS1,
90 COLUMN_ALIAS2,
91 COLUMN_ALIAS3
92FROM transformed_data
93```
94
95```yaml
96# models/[domain]/[target_schema_name]/schema.yml
97version: 2
98
99models:
100 - name: model_name
101 description: "Table description; converted from [Source Platform] [Original object name]"
102 columns:
103 - name: COLUMN_ALIAS1
104 description: "Column description; Primary key"
105 tests:
106 - unique
107 - not_null
108 - name: COLUMN_ALIAS2
109 description: "Column description; Foreign key to OTHER_TABLE"
110 tests:
111 - relationships:
112 to: ref('OTHER_TABLE')
113 field: OTHER_TABLE_KEY
114 - name: COLUMN_ALIAS3
115 description: "Column description"
116```
117
118```yaml
119# dbt_project.yml
120models:
121 my_project:
122 ? [domain]
123 ? [target_schema_name]
124 +schema: [target_schema_name]
125```
126
127## Specific Translation Rules
128
129### dbt Specific Requirements:
130
131- If the source is a view, use a view materialization in dbt
132- Include appropriate dbt model configuration (materialization type)
133- Add documentation blocks for a schema.yml
134- Add descriptions for tables and columns
135- Include relevant tests
136- Define primary keys and relationships
137- Assume that upstream objects are models
138- Comprehensively provide all the columns in the output
139- Break complex procedures into multiple models if needed
140- Implement appropriate incremental strategies for large tables
141- Use Snowflake SQL functions rather than macros whenever possible
142
143### Performance Optimization:
144
145- Suggest clustering keys if needed
146- Recommend materialization strategy (view vs table)
147- Identify potential performance improvements
148
149### Dependencies:
150
151- List any upstream dependencies
152- Suggest model organization in dbt project
153
154---
155
156# Validation Checklist
157
158- [] Source platform identified
159- [] Every DDL statement has been accounted for in the dbt models
160- [] SQL in models is compatible with Snowflake
161- [] All business logic preserved
162- [] All columns included in output
163- [] Data types correctly mapped
164- [] Functions translated to Snowflake equivalents
165- [] Materialization strategy selected
166- [] Tests added
167- [] SQL logic description complete
168- [] Table descriptions added
169- [] Column descriptions added
170- [] Dependencies correctly mapped
171- [] Incremental logic (if applicable) verified
172- [] Inline comments added for converted syntax
173
174---
175
176## Related Skills
177
178- **dbt-modeling**: For CTE patterns and SQL structure guidance
179- **dbt-testing**: For implementing comprehensive dbt tests
180- **dbt-architecture**: For project organization and folder structure
181- **dbt-materializations**: For choosing materialization strategies (view, table, incremental,
182 snapshots)
183- **dbt-performance**: For clustering keys, warehouse sizing, and query optimization
184- **dbt-commands**: For running dbt commands and model selection syntax
185- **dbt-core**: For dbt installation, configuration, and package management
186- **snowflake-cli**: For executing SQL and managing Snowflake objects
187
188---
189
190## Supported Source Databases
191
192<!-- prettier-ignore -->
193|Database|Key Considerations|
194|---|---|
195|**Snowflake**|Native syntax, focus on dbt patterns and best practices|
196|**Teradata**|QUALIFY, ANSI/TERA session modes, volatile tables, SET/MULTISET, BTEQ/FastLoad/MultiLoad scripts, DBC views|
197|**Oracle**|PL/SQL, DBMS\_\* packages, ROWNUM/ROWID, CONNECT BY, sequences, collections/records, wrapped objects, DATE includes time|
198|**SQL Server / Azure Synapse**|T-SQL procedures, IDENTITY, TOP, #temp tables, TRY...CATCH, sys.\* tables, ANSI_NULLS/QUOTED_IDENTIFIER|
199|**Amazon Redshift**|DISTKEY/SORTKEY, PL/pgSQL procedures, system catalogs (pg\_, stl\_, stv\_), COPY/UNLOAD|
200|**Google BigQuery**|UNNEST, STRUCT/ARRAY types, backtick identifiers, IS TRUE/FALSE operators, SAFE\_\* functions|
201|**PostgreSQL / Greenplum / Netezza**|Array expressions (<> ALL, = ANY), CHAR padding differences, psql commands, distribution keys|
202|**IBM DB2**|Inline SQL PL, FETCH FIRST, CONTINUE/EXIT handlers, compound statements|
203|**Hive / Spark / Databricks**|External tables, PARTITIONED BY, LATERAL VIEW, file formats (PARQUET, ORC), UDFs|
204|**Vertica**|Projections, flex tables, case sensitivity with quotes, ANY/ALL array predicates|
205|**Sybase**|T-SQL variant, different built-in functions, SELECT syntax differences|
206
207## Translation References
208
209Detailed syntax translation guides are available in the `translation-references/` folder.
210
211> **Copyright Notice:** The translation reference documentation in this repository is derived from
212> [Snowflake SnowConvert Documentation](https://docs.snowflake.com/en/migrations/snowconvert-docs)
213> and is © Copyright Snowflake Inc. All rights reserved. Used for reference purposes only.
214
215### Full Translation Reference Index
216
217<!-- prettier-ignore -->
218|Folder|Description|
219|---|---|
220|bigquery|[BigQuery](translation-references/bigquery/README.md)|
221|db2|[IBM DB2](translation-references/db2/README.md)|
222|general|[Cross-database references](translation-references/general/README.md)|
223|hive|[Hive, Spark, Databricks](translation-references/hive/README.md)|
224|oracle|[Oracle](translation-references/oracle/README.md)|
225|postgres|[PostgreSQL, Greenplum, Netezza](translation-references/postgres/README.md)|
226|redshift|[Amazon Redshift](translation-references/redshift/README.md)|
227|ssis|[SSIS](translation-references/ssis/README.md)|
228|sybase|[Sybase IQ](translation-references/sybase/README.md)|
229|teradata|[Teradata](translation-references/teradata/README.md)|
230|transact|[SQL Server / Azure Synapse](translation-references/transact/README.md)|
231|vertica|[Vertica](translation-references/vertica/README.md)|
232
233### Full Translation Reference Index (Expanded)
234
235<!-- prettier-ignore -->
236|Folder|Description|
237|---|---|
238|bigquery|[BigQuery](translation-references/bigquery/README.md)|
239|bigquery|[CREATE TABLE (unsupported options)](translation-references/bigquery/bigquery-create-table.md)|
240|bigquery|[CREATE VIEW](translation-references/bigquery/bigquery-create-view.md)|
241|bigquery|[Data types mapping](translation-references/bigquery/bigquery-data-types.md)|
242|bigquery|[Supported Built-in functions](translation-references/bigquery/bigquery-functions.md)|
243|bigquery|[Quoted identifier syntax](translation-references/bigquery/bigquery-identifiers.md)|
244|bigquery|[IS operators (IS NULL, IS TRUE, etc.)](translation-references/bigquery/bigquery-operators.md)|
245|db2|[IBM DB2](translation-references/db2/README.md)|
246|db2|[CONTINUE handler behavior](translation-references/db2/db2-continue-handler.md)|
247|db2|[CREATE FUNCTION](translation-references/db2/db2-create-function.md)|
248|db2|[CREATE PROCEDURE](translation-references/db2/db2-create-procedure.md)|
249|db2|[CREATE TABLE syntax](translation-references/db2/db2-create-table.md)|
250|db2|[CREATE VIEW](translation-references/db2/db2-create-view.md)|
251|db2|[Data types](translation-references/db2/db2-data-types.md)|
252|db2|[EXIT handler behavior](translation-references/db2/db2-exit-handler.md)|
253|db2|[FROM clause](translation-references/db2/db2-from-clause.md)|
254|db2|[SELECT statement](translation-references/db2/db2-select-statement.md)|
255|general|[Cross-database references](translation-references/general/README.md)|
256|general|[Alphabetical list of Built-in functions (cross-platform)](translation-references/general/built-in-functions.md)|
257|general|[Subqueries in FROM/WHERE clauses](translation-references/general/subqueries.md)|
258|hive|[Hive, Spark, Databricks](translation-references/hive/README.md)|
259|hive|[Built-in functions](translation-references/hive/built-in-functions.md)|
260|hive|[Data types mapping](translation-references/hive/data-types.md)|
261|hive|[Supported DDL statements](translation-references/hive/ddls/README.md)|
262|hive|[CREATE EXTERNAL TABLE](translation-references/hive/ddls/create-external-table.md)|
263|hive|[CREATE VIEW](translation-references/hive/ddls/create-view.md)|
264|hive|[SELECT](translation-references/hive/ddls/select.md)|
265|hive|[CREATE TABLE](translation-references/hive/ddls/tables.md)|
266|oracle|[Oracle](translation-references/oracle/README.md)|
267|oracle|[Data types and arithmetic](translation-references/oracle/basic-elements-of-oracle-sql/data-types/README.md)|
268|oracle|[ANY types for flexible parameter/column typing](translation-references/oracle/basic-elements-of-oracle-sql/data-types/any-types.md)|
269|oracle|[Built-in data types (VARCHAR2, NUMBER, DATE, etc.)](translation-references/oracle/basic-elements-of-oracle-sql/data-types/oracle-built-in-data-types.md)|
270|oracle|[ROWID types](translation-references/oracle/basic-elements-of-oracle-sql/data-types/rowid-types.md)|
271|oracle|[Spatial and geographic types](translation-references/oracle/basic-elements-of-oracle-sql/data-types/spatial-types.md)|
272|oracle|[User-defined types (UDTs)](translation-references/oracle/basic-elements-of-oracle-sql/data-types/user-defined-types.md)|
273|oracle|[XML types](translation-references/oracle/basic-elements-of-oracle-sql/data-types/xml-types.md)|
274|oracle|[Literals and constant values](translation-references/oracle/basic-elements-of-oracle-sql/literals.md)|
275|oracle|[Built-in packages.](translation-references/oracle/built-in-packages.md)|
276|oracle|[Power BI connection repointing](translation-references/oracle/etl-bi-repointing/power-bi-oracle-repointing.md)|
277|oracle|[Functions](translation-references/oracle/functions/README.md)|
278|oracle|[Custom UDFs for Oracle function equivalence](translation-references/oracle/functions/custom_udfs.md)|
279|oracle|[PL/SQL to JavaScript](translation-references/oracle/pl-sql-to-javascript/README.md)|
280|oracle|[Helper functions for Oracle features](translation-references/oracle/pl-sql-to-javascript/helpers.md)|
281|oracle|[Assignment statements and PL/SQL basics](translation-references/oracle/pl-sql-to-snowflake-scripting/README.md)|
282|oracle|[Collections and Records](translation-references/oracle/pl-sql-to-snowflake-scripting/collections-and-records.md)|
283|oracle|[CREATE FUNCTION](translation-references/oracle/pl-sql-to-snowflake-scripting/create-function.md)|
284|oracle|[CREATE PROCEDURE](translation-references/oracle/pl-sql-to-snowflake-scripting/create-procedure.md)|
285|oracle|[Cursors](translation-references/oracle/pl-sql-to-snowflake-scripting/cursor.md)|
286|oracle|[DML with PL/SQL elements](translation-references/oracle/pl-sql-to-snowflake-scripting/dml-statements.md)|
287|oracle|[Helper functions for unsupported Oracle features](translation-references/oracle/pl-sql-to-snowflake-scripting/helpers.md)|
288|oracle|[CREATE PACKAGE](translation-references/oracle/pl-sql-to-snowflake-scripting/packages.md)|
289|oracle|[ROWID pseudocolumn](translation-references/oracle/pseudocolumns.md)|
290|oracle|[Sample data used in examples](translation-references/oracle/sample-data.md)|
291|oracle|[SQL\*Plus to SnowSQL](translation-references/oracle/sql-plus.md)|
292|oracle|[JOIN operations](translation-references/oracle/sql-queries-and-subqueries/joins.md)|
293|oracle|[SELECT](translation-references/oracle/sql-queries-and-subqueries/selects.md)|
294|oracle|[Oracle SQL syntax differences and translations](translation-references/oracle/sql-translation-reference/README.md)|
295|oracle|[Materialized View to Dynamic Table](translation-references/oracle/sql-translation-reference/create-materialized-view.md)|
296|oracle|[CREATE TABLE](translation-references/oracle/sql-translation-reference/create-table.md)|
297|oracle|[CREATE VIEW](translation-references/oracle/sql-translation-reference/create-view.md)|
298|oracle|[CREATE TYPE (UDTs)](translation-references/oracle/sql-translation-reference/create_type.md)|
299|oracle|[Wrapped/encrypted objects](translation-references/oracle/wrapped-objects.md)|
300|postgres|[PostgreSQL, Greenplum, Netezza](translation-references/postgres/README.md)|
301|postgres|[Netezza data types](translation-references/postgres/data-types/netezza-data-types.md)|
302|postgres|[PostgreSQL data types](translation-references/postgres/data-types/postgresql-data-types.md)|
303|postgres|[Greenplum Materialized View](translation-references/postgres/ddls/create-materialized-view/greenplum-create-materialized-view.md)|
304|postgres|[Materialized View to Dynamic Table](translation-references/postgres/ddls/create-materialized-view/postgresql-create-materialized-view.md)|
305|postgres|[Greenplum CREATE TABLE](translation-references/postgres/ddls/create-table/greenplum-create-table.md)|
306|postgres|[Netezza CREATE TABLE](translation-references/postgres/ddls/create-table/netezza-create-table.md)|
307|postgres|[PostgreSQL CREATE TABLE](translation-references/postgres/ddls/create-table/postgresql-create-table.md)|
308|postgres|[PostgreSQL CREATE VIEW](translation-references/postgres/ddls/postgresql-create-view.md)|
309|postgres|[Power BI connection repointing](translation-references/postgres/etl-bi-repointing/power-bi-postgres-repointing.md)|
310|postgres|[Built-in functions](translation-references/postgres/postgresql-built-in-functions.md)|
311|postgres|[<> ALL & = ANY array expressions](translation-references/postgres/postgresql-expressions.md)|
312|postgres|[PSQL commands](translation-references/postgres/postgresql-interactive-terminal.md)|
313|postgres|[String comparison behavior](translation-references/postgres/postgresql-string-comparison.md)|
314|redshift|[Amazon Redshift](translation-references/redshift/README.md)|
315|redshift|[Power BI connection repointing](translation-references/redshift/etl-bi-repointing/power-bi-redshift-repointing.md)|
316|redshift|[Literals](translation-references/redshift/redshift-basic-elements-literals.md)|
317|redshift|[Names and identifiers](translation-references/redshift/redshift-basic-elements.md)|
318|redshift|[BETWEEN condition](translation-references/redshift/redshift-conditions.md)|
319|redshift|[CONTINUE handler emulation](translation-references/redshift/redshift-continue-handler.md)|
320|redshift|[Data types](translation-references/redshift/redshift-data-types.md)|
321|redshift|[EXIT handler via EXCEPTION blocks](translation-references/redshift/redshift-exit-handler.md)|
322|redshift|[Expression lists](translation-references/redshift/redshift-expressions.md)|
323|redshift|[Built-in functions](translation-references/redshift/redshift-functions.md)|
324|redshift|[CREATE TABLE AS](translation-references/redshift/redshift-sql-statements-create-table-as.md)|
325|redshift|[CREATE TABLE](translation-references/redshift/redshift-sql-statements-create-table.md)|
326|redshift|[Supported SQL statements](translation-references/redshift/redshift-sql-statements.md)|
327|redshift|[System catalog views](translation-references/redshift/redshift-system-catalog.md)|
328|redshift|[CREATE PROCEDURE](translation-references/redshift/rs-sql-statements-create-procedure.md)|
329|redshift|[SELECT INTO](translation-references/redshift/rs-sql-statements-select-into.md)|
330|redshift|[SELECT](translation-references/redshift/rs-sql-statements-select.md)|
331|ssis|[SSIS](translation-references/ssis/README.md)|
332|sybase|[Sybase IQ](translation-references/sybase/README.md)|
333|sybase|[Built-in functions](translation-references/sybase/sybase-built-in-functions.md)|
334|sybase|[CREATE TABLE](translation-references/sybase/sybase-create-table.md)|
335|sybase|[CREATE VIEW](translation-references/sybase/sybase-create-view.md)|
336|sybase|[Data types mapping](translation-references/sybase/sybase-data-types.md)|
337|sybase|[SELECT statement](translation-references/sybase/sybase-select-statement.md)|
338|teradata|[Teradata](translation-references/teradata/README.md)|
339|teradata|[Considerations for migrating data from Teradata](translation-references/teradata/data-migration-considerations.md)|
340|teradata|[Power BI connection repointing](translation-references/teradata/etl-bi-repointing/power-bi-teradata-repointing.md)|
341|teradata|[Helper functions for procedures](translation-references/teradata/helpers-for-procedures.md)|
342|teradata|[BTEQ, FastLoad, MultiLoad, TPT scripts to Python](translation-references/teradata/scripts-to-python/README.md)|
343|teradata|[BTEQ to Python](translation-references/teradata/scripts-to-python/bteq-translation.md)|
344|teradata|[FastLoad to Python](translation-references/teradata/scripts-to-python/fastload-translation.md)|
345|teradata|[MultiLoad to Python](translation-references/teradata/scripts-to-python/multiload-translation.md)|
346|teradata|[Helper classes for Teradata script to Python conversion](translation-references/teradata/scripts-to-python/snowconvert-script-helpers.md)|
347|teradata|[TPT translation](translation-references/teradata/scripts-to-python/tpt-translation.md)|
348|teradata|[Scripts to Snowflake SQL](translation-references/teradata/scripts-to-snowflake-sql-translation-reference/README.md)|
349|teradata|[BTEQ to Snowflake SQL](translation-references/teradata/scripts-to-snowflake-sql-translation-reference/bteq.md)|
350|teradata|[Common script statements](translation-references/teradata/scripts-to-snowflake-sql-translation-reference/common-statements.md)|
351|teradata|[MultiLoad to Snowflake SQL](translation-references/teradata/scripts-to-snowflake-sql-translation-reference/mload.md)|
352|teradata|[ANSI vs TERA session modes](translation-references/teradata/session-modes.md)|
353|teradata|[Iceberg table transformations](translation-references/teradata/sql-translation-reference/Iceberg-tables-transformations.md)|
354|teradata|[Teradata SQL to Snowflake](translation-references/teradata/sql-translation-reference/README.md)|
355|teradata|[Analytic functions](translation-references/teradata/sql-translation-reference/analytic.md)|
356|teradata|[Data types](translation-references/teradata/sql-translation-reference/data-types.md)|
357|teradata|[Equivalents for DBC objects and columns](translation-references/teradata/sql-translation-reference/database-dbc.md)|
358|teradata|[DDL statements](translation-references/teradata/sql-translation-reference/ddl-teradata.md)|
359|teradata|[DML statements](translation-references/teradata/sql-translation-reference/dml-teradata.md)|
360|teradata|[Built-in functions](translation-references/teradata/sql-translation-reference/teradata-built-in-functions.md)|
361|teradata|[GET DIAGNOSTICS EXCEPTION](translation-references/teradata/teradata-to-javascript-translation-reference.md)|
362|teradata|[ABORT and ROLLBACK](translation-references/teradata/teradata-to-snowflake-scripting-translation-reference.md)|
363|transact|[SQL Server / Azure Synapse](translation-references/transact/README.md)|
364|transact|[Power BI connection repointing](translation-references/transact/etl-bi-repointing/power-bi-transact-repointing.md)|
365|transact|[ALTER statements](translation-references/transact/transact-alter-statement.md)|
366|transact|[ANSI_NULLS setting](translation-references/transact/transact-ansi-nulls.md)|
367|transact|[Built-in functions](translation-references/transact/transact-built-in-functions.md)|
368|transact|[Built-in procedures](translation-references/transact/transact-built-in-procedures.md)|
369|transact|[Exception handling with TRY...CATCH](translation-references/transact/transact-continue-handler.md)|
370|transact|[User Defined Functions](translation-references/transact/transact-create-function.md)|
371|transact|[CREATE INDEX](translation-references/transact/transact-create-index.md)|
372|transact|[Materialized View to Dynamic Table](translation-references/transact/transact-create-materialized-view.md)|
373|transact|[BEGIN/COMMIT transactions](translation-references/transact/transact-create-procedure-snow-script.md)|
374|transact|[CREATE PROCEDURE to JavaScript](translation-references/transact/transact-create-procedure.md)|
375|transact|[CREATE TABLE](translation-references/transact/transact-create-table.md)|
376|transact|[CREATE VIEW](translation-references/transact/transact-create-view.md)|
377|transact|[Data types mapping](translation-references/transact/transact-data-types.md)|
378|transact|[DML statements and expressions](translation-references/transact/transact-dmls.md)|
379|transact|[Exception handling with TRY...CATCH](translation-references/transact/transact-exit-handler.md)|
380|transact|[General statements](translation-references/transact/transact-general-statements.md)|
381|transact|[QUOTED_IDENTIFIER setting](translation-references/transact/transact-quoted-identifier.md)|
382|transact|[SELECT in procedures](translation-references/transact/transact-select.md)|
383|transact|[System tables](translation-references/transact/transact-system-tables.md)|
384|vertica|[Vertica](translation-references/vertica/README.md)|
385|vertica|[Built-in functions](translation-references/vertica/vertica-built-in-functions.md)|
386|vertica|[CREATE TABLE](translation-references/vertica/vertica-create-table.md)|
387|vertica|[CREATE VIEW](translation-references/vertica/vertica-create-view.md)|
388|vertica|[Data types mapping](translation-references/vertica/vertica-data-types.md)|
389|vertica|[Case sensitivity and quoted identifiers](translation-references/vertica/vertica-identifier-between-vertica-and-snowflake.md)|
390|vertica|[Vertica Operators](translation-references/vertica/vertica-operators.md)|
391|vertica|[ANY & ALL array predicates](translation-references/vertica/vertica-predicates.md)|