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
740 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
740 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,226 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,129 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
680 reads
Thank You all for your support to give me inspiration . It is the result of this that I have achieved...
2013-01-09
436 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
551 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,026 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
951 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
375 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
486 reads
Here’s a way to centralize management, rotate secrets conveniently without downtime, automate synchronization and...
This may or may not be helpful in the long term, but since I’m...
By Steve Jones
“I’m sick of hearing about Red Gate.” The first article in the book has...
Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...
I have read that the collation at the instance level cannot be changed. I...
hi our on prem STD implementation of SSAS currently occupies about 3.6 gig of...
In SQL Server 2022, I run this code:
CREATE SEQUENCE myseqtest START WITH 1 INCREMENT BY 1; GO CREATE TABLE NewMonthSales (SaleID INT , SecondID int , saleyear INT , salemonth TINYINT , currSales NUMERIC(10, 2)); GO INSERT dbo.NewMonthSales (SaleID, SecondID, saleyear, salemonth, currSales) SELECT NEXT VALUE FOR myseqtest , NEXT VALUE FOR myseqtest , ms.saleyear , ms.salemonth , ms.currMonthSales FROM dbo.MonthSales AS ms; GO SELECT * FROM dbo.NewMonthSales AS nmsAssume the dbo.MonthSales table exists. If I run this, what happens? See possible answers