Restore SSP || Create SSP with Backup|| Create SSP with Full customization again
Friends, Life is not easy and every time we cannot create a fresh/new server, environment or a new configuration. What...
2013-02-12
750 reads
Friends, Life is not easy and every time we cannot create a fresh/new server, environment or a new configuration. What...
2013-02-12
750 reads
Friends, As covered in one of my previous blog:
How crawl works in SharePoint ||How indexing work||Basic concept .
We were...
2013-01-28
1,238 reads
Yesterday I was working with my team mates and their came a requirement to create a site collection but with...
2013-01-21
1,132 reads
Hey Friends,
Let’s today discuss on the topic How search works. We have already discussed the crawling concept in previous blog:
How...
2013-01-14
687 reads
Thank You all for your support to give me inspiration . It is the result of this that I have achieved...
2013-01-09
438 reads
Hey Friends,
Today I am here with some concept task . How a search work in SharePoint, but for a search to...
2013-01-08
563 reads
New Year begins,
Let us pray that it will be a year with new peace, new happiness and abundance of new...
2012-12-31
1,027 reads
Hey Friends,
Sometime we may feel the need to move SharePoint site collection to new content db. Below step can be...
2012-12-11
954 reads
Hey Friends,
Sometime when we build a new SharePoint site or site collection. We may feel to create in a new...
2012-12-04
378 reads
Hey Friends,
Sometime when we try to access central administration and certain tabs like operation and Application management we face issues....
2012-11-26
490 reads
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...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
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...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
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