“In the end we’ll remember not the words of our enemies, but the silence of our friends.”
- Martin Luther King, Jr.
The basics of the Azure SQL Data Warehouse system views are listed above.
SELECT name
,max_length
,precision
,scale
FROM sys.all_columns
The sys.all_columns view shows columns for both user-defined and system objects.
SELECT Name
,Type_Desc
,Create_Date
,Modify_Date
FROM sys.all_objects
WHERE name = 'Emp_Intl'
The sys.all_objects views shows user-defined ...
No credit card required