Convert Sybase IQ DDL to dbt models compatible with Snowflake...
Transform Sybase IQ DDL (views, tables, stored procedures) into production-quality dbt models compatible with Snowflake, maintaining the same business logic and data transformation steps while following dbt best practices.
Activate this skill when users ask about:
Do NOT begin manual conversion of tables or views. Sybase IQ has partial SnowConvert AI support (tables and views only — stored procedures and functions are NOT supported). Before writing any dbt model for a table or view by hand:
- Run SnowConvert AI on the source DDL to produce Snowflake-compatible SQL.
- Use the
$dbt-migration-snowflakeskill to convert the SCAI output to dbt models.- Only fall back to this skill's manual translation rules for objects SCAI could not convert (check the conversion report for EWIs) or for procedures/functions (which require manual conversion).
See the
$dbt-migrationskill for download links and full workflow.
Preserve original object names. The dbt model filename and model name MUST match the original source object name (lowercased, without schema prefix). For example,
dbo.patient_visitsbecomespatient_visits.sql. Do not rename objects during migration unless explicitly requested by the user.
You are a database engineer working for a hospital system. You need to convert Sybase IQ DDL to equivalent dbt code compatible with Snowflake, maintaining the same business logic and data transformation steps while following dbt best practices.
I will provide you the Sybase DDL to convert.
The code will be executed by data engineers who are learning Snowflake and dbt.
Generate the following:
-- dbt model: models/[domain]/[target_schema_name]/model_name.sql
{{ config(materialized='view') }}
/* Original Object: [database].[owner].[object_name]
Source Platform: Sybase IQ
Purpose: [brief description]
Conversion Notes: [key changes]
Description: [SQL logic description] */
WITH source_data AS (
SELECT
customer_id::INTEGER AS customer_id,
customer_name::VARCHAR(100) AS customer_name,
-- MONEY converted to NUMBER(18,2)
account_balance::NUMBER(18,2) AS account_balance,
-- DATETIME converted to TIMESTAMP_NTZ
created_date::TIMESTAMP_NTZ AS created_date
FROM {{ ref('upstream_model') }}
),
transformed_data AS (
SELECT
customer_id,
UPPER(customer_name)::VARCHAR(100) AS customer_name_upper,
account_balance,
created_date,
CURRENT_TIMESTAMP()::TIMESTAMP_NTZ AS loaded_at
FROM source_data
)
SELECT
customer_id,
customer_name_upper,
account_balance,
created_date,
loaded_at
FROM transformed_data
## models/[domain]/[target_schema_name]/_models.yml
version: 2
models:
- name: model_name
description: "Table description; converted from Sybase IQ [Original object name]"
columns:
- name: customer_id
description: "Primary key - unique customer identifier"
tests:
- unique
- not_null
- name: customer_name_upper
description: "Customer name in uppercase"
- name: account_balance
description: "Current account balance; Foreign key to OTHER_TABLE"
tests:
- relationships:
to: ref('OTHER_TABLE')
field: OTHER_TABLE_KEY
- name: created_date
description: "Date the customer record was created"
- name: loaded_at
description: "Timestamp when the record was loaded by dbt"
## dbt_project.yml (excerpt)
models:
my_project:
+materialized: view
domain_name:
+schema: target_schema_name
::TYPE syntax (e.g.,
column_name::VARCHAR(100), amount::NUMBER(18,2)) to ensure output matches expected data types| Sybase IQ | Snowflake | Notes |
|---|---|---|
| INT/INTEGER | INTEGER | |
| BIGINT | BIGINT | |
| SMALLINT/TINYINT | Same | |
| DECIMAL/NUMERIC | Same | |
| FLOAT/REAL/DOUBLE | FLOAT | |
| CHAR/VARCHAR | Same | |
| TEXT | VARCHAR | |
| BINARY/VARBINARY | BINARY | |
| BIT | BOOLEAN | |
| DATE | DATE | |
| TIME | TIME | |
| DATETIME/TIMESTAMP | TIMESTAMP | |
| MONEY/SMALLMONEY | NUMBER(38,4) |
-- TOP -> LIMIT
SELECT TOP 10 * FROM table -> SELECT * FROM table LIMIT 10
-- GETDATE() -> CURRENT_TIMESTAMP
GETDATE() -> CURRENT_TIMESTAMP()
-- ISNULL -> COALESCE
ISNULL(col, 0) -> COALESCE(col, 0)
-- CONVERT -> :: casting or TO_* functions
CONVERT(VARCHAR, col) -> col::VARCHAR
CONVERT(VARCHAR(50), col) -> col::VARCHAR(50)
CONVERT(DATE, col, 101) -> TO_DATE(col, 'MM/DD/YYYY')
-- String functions
CHARINDEX('x', col) -> POSITION('x' IN col)
| Sybase IQ | Snowflake | Notes |
|---|---|---|
ISNULL(a, b) |
COALESCE(a, b) or IFNULL(a, b) |
|
COALESCE(...) |
COALESCE(...) |
Same |
NULLIF(a, b) |
NULLIF(a, b) |
Same |
GETDATE() |
CURRENT_TIMESTAMP() |
|
DATEADD(unit, n, d) |
DATEADD(unit, n, d) |
Same |
DATEDIFF(unit, d1, d2) |
DATEDIFF(unit, d1, d2) |
Same |
DATEPART(unit, d) |
DATE_PART(unit, d) |
|
CONVERT(type, val) |
val::type |
|
CAST(val AS type) |
val::type |
|
CHARINDEX(s, str) |
POSITION(s IN str) |
|
SUBSTRING(s, pos, len) |
SUBSTR(s, pos, len) |
|
LEN(str) |
LENGTH(str) |
|
REPLICATE(str, n) |
REPEAT(str, n) |
|
STUFF(s, pos, len, new) |
INSERT(s, pos, len, new) |
|
ROUND(n, d) |
ROUND(n, d) |
Same |
CEILING(n) |
CEIL(n) |
| Database | Key Considerations |
|---|---|
| Sybase IQ | T-SQL variant, different built-in functions, SELECT syntax differences |
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.