Gender Differences in the Workplace
Today we have a guest editorial from MVP Jessica Moss that talks about the gender differences in the workplace, and how you can work to get beyond them.
Today we have a guest editorial from MVP Jessica Moss that talks about the gender differences in the workplace, and how you can work to get beyond them.
In this article Mohammad Meimandi explains an issue faced while using SQL-DMO to copy database objects.
Part 2 of the series on using MAP 5.0 looks at using the toolkit to inventory servers, preparing audit reports and server virtualization planning.
As I discussed in my first part of replication SQL Server 2008 Replication: High Availability Solution Part One, replication is...
Today we have a guest editorial from Jen McCown, one half of the Midnight DBAs. Jen wonders why we are still talking about women in technology? Women do the same jobs as men in this field.
A new series from David Ziffer describes a way of building applications in a more standardized fashion, and it provides a basic review of some software that can help.
The following production code is what I used for inserting and updating database tables using XML as the input. These scripts are for processing data for any table to insert or update data. The support functions provided, retrieve the table schema with their data types, functions to deal with XML dates, primary keys of the table and what fields can be updated. The following article breaks down this process from beginning to end.
Here is another one of those strange but true things that I come across every so often which I thought...
A look at Idera's Diagnostic Manager and how it can help you diagnose performance issues on your server instance.
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
Jl. Jend. A. Yani Jl. Mabuun Raya No.KM 220 No. 4-5, Mabu'un, Kec. Murung...
BCA KCP Senayan City Telpon/wa:0813.7887.595.Mall Senayan City Unit 6-09A, Jl. Asia Afrika Lot 19,...
Jl. A. Yani No.KM 33 5, Guntung Payung, Kec. Landasan Ulin, Kota Banjar Baru,...
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 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers