Angela

I started out as a software developer back in 1996 in Denver, CO, doing Client/Server development in PowerBuilder. I am now a Data Architect, living in High Point, NC and I love what I do. I’ve worked with all versions of SQL Server since the infamous split from the Sybase code (a.k.a. version 4.21a). I’ve worn all the hats that come with dealing with SQL Server, developer to data architect and everything in between. Mastodon handle: @SQLSwimmer

Blog Post

Will You Vote?

Voting is one of the many privileges that I have as an American citizen.  It’s a privilege that most Americans...

2013-09-23

570 reads

Blog Post

Saving Grace

According to Merriam-Webster the definition of grace is:
1a : unmerited divine assistance given humans for their regeneration or sanctification; b : a...

2013-05-30

1,241 reads

Blog Post

Certifiable?

I have recently begun to contemplate pursuing the MCSA Certification.  I have been working with SQL Server for almost 20...

2013-05-17

617 reads

Blog Post

Mentoring

I’m putting my money where my mouth is, with respect to my last blog post.  I am officially a mentor...

2012-08-24

639 reads

Blog Post

Paying it Forward

My company has recently put forth an effort to hire fresh college graduates and interns.  I think this is a...

2012-08-24 (first published: )

1,733 reads

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 KCP Sweta WhatsApp 08388331786

By armi

Telepon 08388331786.Jl. Sandubaya No.70-72, Sweta, Bertais, Kec. Sandubaya, Kota Mataram, Nusa Tenggara Bar. 83236

BCA Cabang Pancor WhatsApp 08388331786

By armi

Call 08388331786.9G39+JVQ, Pancor, Kec. Selong, Kabupaten Lombok Timur, Nusa Tenggara Bar. 83611

SQL Password enforcing

By Andre 425568

Hi to all We have situation at a client where someone is illegally changing...

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