Steps to Quickly Configure an AWS RDS SQL Server instance
Learn how to configure and deploy a new Amazon AWS RDS SQL Server instance with this step-by-step article.
Learn how to configure and deploy a new Amazon AWS RDS SQL Server instance with this step-by-step article.
Building software is becoming harder as new attacks try to inject malicious code into products.
Learn how to build scatter plots in Power BI and use the clustering option to automatically find clusters within the report data for easy visualization.
Before data can be read from of a SQL Server database table, the table needs to contain rows of data. One of the most typical ways to get data into a table is to use the INSERT statement.
Deploy resources in Azure using reusable code with Terraform modules.
Steve shares a few things he's learned from customers trying to migrate their systems to cloud computing platforms.
This article looks at a simple example of using explicit transactions when modifying data in SQL Server tables.
On nights and weekends, I've been playing with Arduino controllers. I have a couple of projects I'm working through (building a robot that can roll around with "eyes" to avoid obstacles). I've also been trying to work with STM32 controllers, because in a lot of ways, they're more powerful than an Arduino. However, I've hit […]
Building a toolbox of useful scripts and code is important for any technology professional.
Learn about how static data masking differs from dynamic masking and learn which one might be best for your organization.
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
Every Scooby-Doo mystery starts with a haunted house, a strange villain, and a trail...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
Comments posted to this topic are about the item The Tightly Linked View
Comments posted to this topic are about the item Build a Test Lab of...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers