External Article

SQL Server 2008: Table Valued Parameters

In SQL Server 2005 and earlier, it is not possible to pass a table variable as a parameter to a stored procedure. When multiple rows of data to SQL Server need to send multiple rows of data to SQL Server, developers either had to send one row at a time or come up with other workarounds to meet requirements. While a VB.Net developer recently informed me that there is a SQLBulkCopy object available in .Net to send multiple rows of data to SQL Server at once, the data still can not be passed to a stored proc.

Blogs

T-SQL Tuesday #198 Invitation: How Do You Detect Data Changes?

By

It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...

Understanding Fabric MCP

By

Model Context Protocol, or MCP, is one of those technical ideas that sounds more...

AWS RDS Aurora - our first approach

By

When starting with AWS RDS Aurora for managing relational databases in the cloud, many...

Read the latest Blogs

Forums

BCA KCU SUDIRMAN tlpn/wa: (0831)10703017

By abhiuproi2

BCA KCU SUDIRMAN tlpn/wa: (0831)10703017 Jl. Jenderal Sudirman No.21, Kuningan, Karet Kuningan, Kecamatan Setiabudi, Kota...

BCA KCP Sunter Bisma. Tlp/wa:(+62) 85373737845

By no1cricketid

Pertokoan Paradise, Jl. Paradise 11 No.23 Blok J-1 No. 6 & 7, Papanggo, Kec....

BCA KCU SUDIRMAN tlp/wa ?(0831)10703017

By abhiuproi2

BCA KCU SUDIRMAN ?/wa ?(0831)10703017 Jl. Jenderal Sudirman No.21, Kuningan, Karet Kuningan, Kecamatan Setiabudi, Kota...

Visit the forum

Question of the Day

Creating a JSON Document III

I have this data in a table called dbo.NFLTeams

TeamID  TeamName       City             YearEstablished
------  --------       ----             ---------------
1       Cowboys        Dallas           1960
2       Eagles         Philadelphia     1933
3       Packers        Green Bay        1919
4       Chiefs         Kansas City      1960
5       49ers          San Francisco    1946
6       Broncos        Denver           1960
7       Seahawks       Seattle          1976
8       Patriots       New England      1960
If I run this code, how many rows are returned?
SELECT TOP 2 
  json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;

See possible answers