MOSS Forum

 
Home » Forum » MOSS       Ask a questionRSS Feeds

Site Collections Deletion Fails?

  Asked By: Harshini Avchat         Date: Oct 23, 2007      Category: MOSS      Views: 612
 

I've got a very odd problem that I REALLY need help with:

In the middle of deleting a site collection, the deletion blew up and
did not complete successfully.

Now I've got a site '/sites/research' that doesn't appear to exist in
IIS, but that MOSS seems to think is still there. (Under the list of
site collections...)

How do I complete the removal of this site?

[I'm getting errors during indexing / searching because the site doesn't
actually exist... and so on.]

Oh, and when I run stsadm commands to delete it, I get stuff like:

'The system cannot find the path specified. (Exception from HRESULT:
0x80070003)'

Tagged:        

 

5 Answers Found

 
Answer #1       Answered By: Christie Carlson          Answered On: Oct 23, 2007       

Use the STSADM operation 'databaserepair' to see if the site  is orphaned. If
so, use the same operation to remove the orphans.

 
Answer #2       Answered By: Dorothy Farmer          Answered On: Oct 23, 2007       

I did not get a chance to use it though, as I found an obscure reference
to someone else's post about the problem.

It turns out that every now and then moss  2007 blows up when the GUI is
used for deleting  a LARGE site  collection.

By the time I got your reply I'd already performed a manual intervention
by going to the SiteMap table and removing the entry for the
/sites/research entry.

Specifically, I ran an SQL Query statement against the table under the
_Config database.

DELETE FROM SiteMap

WHERE Id = '<Insert long Alpha Numeric Site ID number here>'

All the problems went away. Obviously, should I run  into difficulty
when on production, then I'll try the other commands first.

 
Answer #3       Answered By: Jacklyn Burnett          Answered On: Oct 23, 2007       

MS really, really, really hates it when you do anything in SQL. They really
hate it. They hate it to the point of refusing support if they think that
caused it. SharePoint doesn't do any kind of referrential integrity checks, so
it's possible to remove things in SQL and cause some huge problems.

Always look at SQL as a very last resort.

 
Answer #4       Answered By: Breann Beach          Answered On: Oct 23, 2007       

But SQL edits are fun and enjoyable for everyone.

Okay, so I definitely agree with you that editing the database directly is
risky, but there are some things that you just have to do (in fact with WSS
v2 / SPS 03, MS released cute little additions to run  that were basically
just running stored procs for you with arguments rather than telling you to
go and run them yourself).

 
Answer #5       Answered By: Vinay Thakur          Answered On: Oct 23, 2007       

In this case I now know that we should delete  large site  collections
using the command line tools. Fortunately, this was my pre-production
test environment that I'm running in VMware ESX... So I just took a snap
shot and started running commands!

 
Didn't find what you were looking for? Find more on Site Collections Deletion Fails? Or get search suggestion and latest updates.


Your Answer
  • Answer should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].