#1 (permalink)  
Old 23-09-2008, 04:19 PM
Junior Member
 
Join Date: Sep 2008
Location: Melbourne
Posts: 2
SQL Database Jobs

Hi,
I was wondering if anyone could tell me if the procedure RIMPurgeDeletedUsersBESMgmt is still relevant in 4.1.6 - It's missing from my SQL database but I didn't want to try and 'fix' it until I work out it's definitely supposed to be there.
Thanks
Reply With Quote
  #2 (permalink)  
Old 23-09-2008, 07:19 PM
GaryCutri's Avatar
Moderator
 
Join Date: Sep 2006
Location: Melbourne
Posts: 2,553
Hi,

RIM has removed this procedure from SP5 onwards. For reference here is a copy of the procedure below:

Code:
USE [BESMgmt]
GO
/****** Object:  StoredProcedure [dbo].[RemoveDeletedUsers] Script Date: 11/05/2007 13:11:57  ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER  ON
GO
ALTER PROCEDURE [dbo].[RemoveDeletedUsers]
@Days int = 180 as set nocount on declare  RemoveDeletedUsers_cursor cursor local for SELECT id from DeletedUserConfig  where DATEDIFF(day, DeleteDateTime, GetUtcDate()) > @Days declare @cnt int,  @id int,
@total int begin  transaction
set @cnt = 0
open RemoveDeletedUsers_cursor
fetch next from RemoveDeletedUsers_cursor into  @id
while @@fetch_status = 0
begin 
delete from  DeletedUserConfig where current of RemoveDeletedUsers_cursor
if @cnt >= 10000

begin
set @cnt =  0
commit transaction
begin transaction
end  
else
begin
set @cnt = @cnt + 1  
end
fetch  next from RemoveDeletedUsers_cursor into @id
end
commit  transaction
close
RemoveDeletedUsers_cursor
deallocate RemoveDeletedUsers_cursor
Thanks,

Gary
Reply With Quote
  #3 (permalink)  
Old 24-09-2008, 09:09 AM
Junior Member
 
Join Date: Sep 2008
Location: Melbourne
Posts: 2
Thanks for your quick reply Gary
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +11. The time now is 09:53 PM.

Copyright ©2006 - 2008 BLACKBERRYFORUMS - RIM and Blackberry are Registered Trademarks of Research In Motion


Search Engine Friendly URLs by vBSEO 3.2.0