The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#9
|
||||
|
||||
![]() Quote:
I can't imagine any advantage to having no post title in contrast to having the correct post title. ![]() Regards. -- Rik --------------- Added [DATE]1233105651[/DATE] at [TIME]1233105651[/TIME] --------------- As I mentioned above, I decided to spread the query forum-by-forum so it doesn't attempt to do everything at once and bring the server to its knees. Here is the code for a mysql STORED PROCEDURE that I'm currently using: HTML Code:
BEGIN
DECLARE count INT default 0;
SET count = 1;
WHILE count <= 550 DO
UPDATE post, thread SET post.title = thread.title WHERE post.threadid = thread.threadid AND post.title <> thread.title AND thread.forumid = count;
SET count = count + 1;
END WHILE;
END
I'm sure this could be improved with more coding (please feel free to advise) but it does what I need without knowing much about writing stored procedures. I hope that this helps someone else. Regards. -- Rik |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|