DRP for SQL Server in French - traduction en français du plan de relève – part 2
Part 2 of the translation for the French version of the Disaster Recovery for SQL Server Databases - comments welcome. Donc,...
2009-09-24
1,510 reads
Part 2 of the translation for the French version of the Disaster Recovery for SQL Server Databases - comments welcome. Donc,...
2009-09-24
1,510 reads
There are about 45 paragraphs that I hope to progressively and quickly translate for the French version of the Disaster...
2009-09-16
1,219 reads
As mentioned by Phil Factor during the previous post’s comments regarding an example disaster recovery template/plan, and to keep in...
2009-09-07
1,923 reads
Well, it finally happened, the complete disaster recovery article was reviewed, reviewed again, rewritten, revisited…you get the picture…and published. As described...
2009-09-03
2,175 reads
Recently, we began the install of a new instance on a VMware Host and ran into an issue with a problematic outdated...
2009-08-24
962 reads
In the Spring of 2008 Idera launched its SQL admin toolset at a super low deal of around two hundred...
2009-08-18
1,799 reads
Let's say it is a late Monday morning, because something always comes up before you are required at your vocation,...
2009-08-10
5,608 reads
As far as operating systems go, I can be pretty conservative with respect to what operating system I chose to have at...
2009-08-09
770 reads
Let's say it is a late Monday morning, because something always comes up before you are required at your vocation,...
2009-08-04
7,916 reads
After reading several pages of comments on this posting, I'm taking a stab at helping Canadian Unity on my beloved...
2009-07-14
3,700 reads
Do you know if your SQL Server is really running at its best? To...
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...
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