Raw Materials - Cloud Computing, the Next Generation
The pros and cons of having computing power close at hand.
2011-06-16 (first published: 2009-04-15)
8,535 reads
The pros and cons of having computing power close at hand.
2011-06-16 (first published: 2009-04-15)
8,535 reads
This white paper describes how operations engineers can test, monitor, capacity plan, and troubleshoot Microsoft SQL Server Analysis Services OLAP solutions in SQL Server 2005, SQL Server 2008, and SQL Server 2008 R2.
2011-06-16
3,291 reads
As responsibilities are growing every day, a DBA or developer needs to improve his/her productivity. One way to do this is to use as many shortcuts as possible instead of using your mouse and the menus. In this tip we take a look at common tasks you may perform when using SSMS and the associated shortcut keys.
2011-06-15
6,025 reads
2011-06-14 (first published: 2009-04-08)
7,727 reads
Is your SQL query crashing? Nine times out of ten it will be for one of these 5 reasons!
2011-06-14
13,321 reads
Arshad Ali outlines different types of authentication modes for communicating across SQL Server Service Broker (SSBS) services.
2011-06-14
2,937 reads
Your job is to read the input string and generate a result set that represents the position of pieces in a chess board.
2011-06-13
1,759 reads
Typically transactional data is quite detailed and analyzing an entire dataset on a graph is not feasible. Generally such data is analyzed using some form of aggregation or frequency distribution. One of the specialized charts generally used in Reporting Services for statistical distribution is Histogram Charts. In this tip we look at how Histogram Charts can be used for statistical distribution analysis and how to create and configure this type of chart in SSRS.
2011-06-13
4,532 reads
This article demonstrates an Index Management strategy to tackle day to day performance issues due to improper indexes.
2011-06-10 (first published: 2009-10-20)
25,441 reads
SQL Server Essentials Part 1: A look at the key responsibility of a DBA and why it is so vital.
2011-06-10 (first published: 2009-09-14)
24,204 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
I have mentioned this several times over several years. Can someone please help me...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers