An Azure service for ingesting, preparing, and transforming data at scale.
You can use the query Yitzhak provided. Or you can run the following:
sp_help yourViewname
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi Expert,
how we can view columns of the view
i.e. desc view view_name but can not see its column and datatype to copy and create new table using metadata
An Azure service for ingesting, preparing, and transforming data at scale.
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
Additional SQL Server features and topics not covered by specific categories
You can use the query Yitzhak provided. Or you can run the following:
sp_help yourViewname
Hi @Shambhu Rai,
You can try to use INFORMATION_SCHEMA.COLUMNS.
Please see below.
USE AdventureWorks2019;
GO
SELECT *
FROM AdventureWorks2019.INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'vEmployee';