Working with Tables in Azure SQL Data Warehouse
In this next installment of our series on Azure SQL Data Warehouse, we'll look at tables and the options for how we decide to create them for optimum performance.
2017-04-18
2,082 reads
In this next installment of our series on Azure SQL Data Warehouse, we'll look at tables and the options for how we decide to create them for optimum performance.
2017-04-18
2,082 reads
Learn how you can create an Azure SQL Warehouse database quickly and easily.
2017-04-14
902 reads
Learn how to scale an Azure SQL Datawarehouse up or down, and how to pause it when not in use.
2017-04-10
447 reads
Learn about Azure SQL Data Warehouse and how to get started.
2017-04-05
999 reads
By Steve Jones
This is my last week of the year working (I guess I come back...
By Steve Jones
This is my last week of the year working (I guess I come back...
I recently read the book Agile Data Warehouse Design – Collaborative Dimensional Modeling, from...
I have an ADF pipeline that copies Files from source to destination. Both Source...
Comments posted to this topic are about the item Function Defaults
I have created this function in SQL Server 2022:
CREATE FUNCTION dbo.AddInt (@one INT, @two INT = 1) RETURNS INT AS BEGIN RETURN @one + @two ENDHow can I call this and invoke the default value for @two? See possible answers