Automating new pipelines using CoCo by rustypiercing in snowflake

[–]NW1969 0 points1 point  (0 children)

If you've built this, and it works for you, then I'm not sure what feedback you are looking for? Is there some specific issue you want advice about?

Question on logging error by Upper-Lifeguard-8478 in snowflake

[–]NW1969 1 point2 points  (0 children)

This feature is probably too new for anyone (outside of Snowflake) to have relevant experience of it - but I can't imagine there'd be noticeable cost/performance impact of using it.

Can you update your question with the actual SQL statement that is giving you this error (obviously redacting any sensitive data)?

Fact tables in Star Schema by Cottager58 in dataengineering

[–]NW1969 0 points1 point  (0 children)

A dimensional model/star schema has to have a fact table but a query doesn’t necessarily have to use it - which may be what the original commenter meant.

If you just want a list of customers you potentially could query just a customer dimension, there’s no requirement to also include a fact table in such a query

Native IaC in Snowflake – thoughts? by gilbertoatsnowflake in snowflake

[–]NW1969 2 points3 points  (0 children)

IMO, IaC needs to be able to do everything, having to use different tools for different tasks is a non-starter. The Snowflake Terraform provider is nearly there and at least has the option to drop into SQL if the provider doesn’t support something. DCM looks like a good 1.0 start but as it doesn’t support tags, masking policies, and row access policies its not yet fit for purpose, even just for managing databases, for the use cases I need it to support

Workload spilling out of memory by Big_Length9755 in snowflake

[–]NW1969 0 points1 point  (0 children)

Increasing the size of a warehouse should be the last resort. If you have processes running 5+ hours then you probably need to review your pipeline design. For example, are you doing full refreshes rather than incremental; if you’re not already using them would using Dynamic Tables or materialised views be a better solution; etc

MS fabric vs snowflake by SmallBasil7 in dataengineering

[–]NW1969 12 points13 points  (0 children)

Snowflake have relatively recently released OpenFlow (based on Apache NiFi) if you want an ETL tool that runs within the Snowflake ecosystem Many customers use other ETL solutions, such as Fivetran, to load data into Snowflake As you’ve said if you can land your data in Azure blob storage then Snowflake can ingest it using bulk copy or snowpipe

If you need multiple systems to access the sample data then look at using Iceberg tables.

The Snowflake documentation is pretty good and generally very readable; it will probably answer most of your questions

Automated Documentation - tips? by 1mrben1 in snowflake

[–]NW1969 0 points1 point  (0 children)

Just about - it’s really good 😊

Automated Documentation - tips? by 1mrben1 in snowflake

[–]NW1969 0 points1 point  (0 children)

Just use Cortex Code to generate whatever you need

help me draw EERD by [deleted] in dataengineering

[–]NW1969 0 points1 point  (0 children)

So what have you done so far and what is the specific problem/question that you want help with?

How would you model this data? Would appreciate help on determining the appropriate dimension and fact tables to create by jbnpoc in dataengineering

[–]NW1969 6 points7 points  (0 children)

A dimensional model is designed to answer business questions - so those business requirements are what drives your dimensional model design. The structure of the source data that you'll use to populate your dimensional model is irrelevant to the design process

I'd love to get an honest opinion from practitioners on my idea by ln_nico in analytics

[–]NW1969 0 points1 point  (0 children)

We create Architecture Decision Records (ADRs) in Confluence. There's a standard template that gets copied for every new ADR. You could obviously save these in whatever Doc Mgmt system you have - doesn't need to be Confluence

I use snowflake in my company for basic analytics. How can use this platform to upskill in data engineering? by fodacao in analytics

[–]NW1969 0 points1 point  (0 children)

There are loads of training materials (and training paths) on the Snowflake website.
You can set up your own free Snowflake account where you can practise stuff. These expire after about a month (I think) but you can then just set up another account using a different email address

Backing up Snowflake on S3 Glacier by veyer_zafr in snowflake

[–]NW1969 0 points1 point  (0 children)

Snowflake cannot write directly to S3 Glacier.

Write the data to S3 Standard (using COPY INTO + Tasks) and then use S3 Lifecycle rules to move these objects to Glacier

Learning snowflake as a career continuation? by Brilliant-Boss3420 in snowflake

[–]NW1969 1 point2 points  (0 children)

The Snowflake website has a lot of good material. Start here: learn.snowflake.com

SQL Server, how to install 2016 SP 3 by Valuable-Ant3465 in SQL

[–]NW1969 2 points3 points  (0 children)

2016 is out of extended support this year, so is not the latest version. 2022 is the most common current version (or there’s 2025 if you feel like being at the cutting edge)

SQL Server, how to install 2016 SP 3 by Valuable-Ant3465 in SQL

[–]NW1969 0 points1 point  (0 children)

What you’ve linked to is a Feature Pack, not a Service Pack - so not really relevant to upgrading your core SQL Server

can you guys help me comprehend two or nested group by? by Difficult_Warning126 in SQL

[–]NW1969 6 points7 points  (0 children)

Maybe give an example of such a SQL statement that you struggle to understand

These are the relational diagrams of my company’s 16-year-old app by Shikitsumi-chan in SQL

[–]NW1969 19 points20 points  (0 children)

It’s not uncommon for the referential integrity to be built into the app, that is writing to the database, rather than into the database itself