REALLY URGENT: Repository Lost

This forum is now locked, since Gold Support is no longer offered.

Moderator: SourceGear

jclausius
Posts: 3702
Joined: Tue Dec 16, 2003 1:17 pm
Location: SourceGear
Contact:

Post by jclausius » Wed Jun 29, 2005 9:16 am

OK. Assuming Vault 3.0.7 was installed after the repository was running, can you try to restart the Vault server (iisreset.exe) and then modifying the file?
Jeff Clausius
SourceGear

aluetjen
Posts: 40
Joined: Wed May 19, 2004 1:00 am
Location: Germany, Karlsruhe
Contact:

Post by aluetjen » Wed Jun 29, 2005 9:36 am

An iisreset has no effect on the checkin error. And I still have an error if I try to view the properties of the parentfolder.
update4u Software AG

jclausius
Posts: 3702
Joined: Tue Dec 16, 2003 1:17 pm
Location: SourceGear
Contact:

Post by jclausius » Wed Jun 29, 2005 9:57 am

Alright. Let's get some information. I need to see a tree to look see if some versions of objects are out of sync. Can you run the following query, save the results as tab delimited, and then send them to me? Do you still have my email address?


DECLARE @repid [int], @lasttxid [bigint];
SELECT @repid = 7, @lasttxid = -1;

DECLARE @@t TABLE
( treelevel int not null,
pph int not null,
objverid bigint not null,
objid bigint not null,
objversion bigint not null,
name nvarchar(256) not null,
objprops smallint not null,
pinnedfromobjverid bigint not null,
fph int not null,
fullpath nvarchar(1024) null,
primary key (treelevel, pph, fph, objid)
)

INSERT INTO @@t (treelevel, pph, objverid, objid, objversion, name,
objprops, pinnedfromobjverid, fph) SELECT treelevel, parentpathhash,
objverid, objid, objversion, LOWER(name), objprops, pinnedfromobjverid,
fullpathhash FROM sgvault.dbo.ufngettreestructure(@repid, @lasttxid, default)

DECLARE @@treelevel int, @@rowsaffected int

SET @@treelevel = 0
UPDATE @@t SET fullpath = name WHERE treelevel = @@treelevel SET
@@rowsaffected = @@ROWCOUNT WHILE ( @@rowsaffected > 0 ) BEGIN
UPDATE t SET t.fullpath = prev.fullpath + N'/' + t.name
FROM @@t t INNER JOIN
@@t prev ON (prev.treelevel = @@treelevel) AND
(prev.fph = t.pph)
WHERE (t.treelevel = (@@treelevel + 1))

SELECT @@rowsaffected = @@ROWCOUNT, @@treelevel = @@treelevel +
1 END -- WHILE

-- you could join on objid here to find the items affected
SELECT * FROM @@t ORDER BY treelevel, pph, name;
Jeff Clausius
SourceGear

jclausius
Posts: 3702
Joined: Tue Dec 16, 2003 1:17 pm
Location: SourceGear
Contact:

Post by jclausius » Wed Jun 29, 2005 2:21 pm

We resolved this offline.

The repository had a synchronization problem with one of the folders. Syncrhonzing the folder version resolved the problem.
Jeff Clausius
SourceGear

Locked