The Consistency Debate
Steve Jones wonders today if data professionals get a little too hung up on the consistency issues between servers.
Steve Jones wonders today if data professionals get a little too hung up on the consistency issues between servers.
I have transactional replication configured in production. The business team has a requirement to rename the subscription database. Is it possible to rename the subscription database and ensure that transactional replication will continue to function as before? If so, how could we achieve this?
In this article we will see how to rebuild system databases in SQL Server 2008 cluster that is failed to restart.
This past week the big news in the SQL Server space was the release to manufacturing of SQL Server 2012.
Developers targeting the SQL Azure platform should make sure their applications are secure. This article walks through the considerations developers need to keep in mind when designing SQL Azure applications.
The first SQL Saturday in Ireland on Mar 24, 2012. Come get a free day of SQL Server training.
Come to a free day of SLQ Server training on Mar 24, 2012 in Huntington Beach, CA.
Impementing iSCSI multi-pathing and redundancy policies
This Friday Steve Jones wants to know about the older versions you are running in your production environments. Are you still using SQL Server 2000?
An interesting result from a recent test of SSDs in SQL Server by Wes Brown. A surprising discovery is important for anyone thinking about using SSDs to know.
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
hi i was hoping for a more elegant way of setting a pkg level...
I have a plan which in sys.query_store_plan shows: Last_compile_start_time of 2026-04-23 00:13:00.7670000 +00:00 Last_execution_time...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams n;See possible answers