# create BI_Tables_Dump_From_Snowflake_noHeader file format.r

sfCreateFileFormat.CSV("BI_Tables_Dump_From_Snowflake_noHeader"
    , comment="For Denormalized tables created from within Snowflake. Uses vertical tab"
    , schema="public"
    , header=FALSE
    , dbname=getSnowflakeDB()
    , gzip = TRUE
    , delim= "\v"
    , quote_string='"'
    , trim_space = FALSE
    , NULL_IF = "NULL"
    , error_on_column_count_mismatch=TRUE
    )
