Emergency Preparedness
Being prepared for things to go wrong is important, more so these days than in much of our past.
2020-09-04
88 reads
Being prepared for things to go wrong is important, more so these days than in much of our past.
2020-09-04
88 reads
In this tip we look at how to restore a missing or corrupt SQL Server model database.
2019-12-23
Disaster recovery is no joke at Google, where they really test their systems, people, and processes.
2019-12-05
223 reads
Today Steve asks about HA and DR. What compromises and choices do you make in your environment and how do you ensure your clients can get to their data.
2019-11-22
227 reads
Learn how to turn on and use newer SQL Server database recovery option called “Accelerated Database Recover”.
2019-10-31
This Script will read the Estimated Time for recovery from Error Log
2019-07-08 (first published: 2019-06-26)
696 reads
Severe weather events cause disruptions that could lead to security vulnerabilities.
2019-05-15
When trying to find the causes for why the SQL Server service doesn’t start, one of the best places to start is the SQL Server Error log, but there is a problem!
2018-09-10
1,345 reads
Hot standby disaster recovery process where SharePoint farm will become available in minutes
2018-03-15
4,252 reads
2017-07-20
986 reads
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
Hi everyone I am writing an SP where there is logic inside the SP...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
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