cancel
Showing results for 
Search instead for 
Did you mean: 

Check which remotes are out of sync

mmangels
Explorer
0 Kudos
1,607

Hi,

I'm trying to find out how I can check which remotes are out of sync? I know that sysremoteuser gives some data, but I don't know how to interpret this data.

On of there reason I want to know this is because my transactionlog files are not getting cleaned up. I still have a files from 2 years ago. I have set the option that deletes the the log files when they are not needed anymore. Since they are not getting deleted I assume that the synchronisation has a need for that file.

regdomaratzki
Product and Topic Expert
Product and Topic Expert
0 Kudos

The following link describes the purpose of all the columns in the sysremoteuser table :

https://help.sap.com/viewer/93079d4ba8e44920ae63ffb4def91f5b/17.0/en-US/3be9ff0f6c5f1014937ee9f5500b...

Accepted Solutions (1)

Accepted Solutions (1)

VolkerBarth
Contributor

Here's a small query we have used to find remotes that have not sync'ed lately, i.e. ordered by the maximum difference between log_sent and confirm_sent:

select  user_name, time_received, log_sent, confirm_sent, log_sent-confirm_sent as NotYetConfirmed,
resend_count
from sys.sysremoteusers
order by NotYetConfirmed desc, user_name;

So the first entries show the most inactive remotes, possibly because they have not sync'ed at all or it was not successful.

Answers (0)