cancel
Showing results for 
Search instead for 
Did you mean: 

How could I delete files with name string with "TAL" and older than 05.05.

Former Member
0 Kudos

How could I delete files with name string with "TAL" and older than 05.05.2009 on unix

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Our ECC Ides system today was not responsible. For first time 17 users were working on the systtem (IWN2008/SQL2005 based). Before the people were maximally 5.

The server is done by making a homogeneous system copy from an blade machine(now it is an VIrTUAL)

There was enaught disk space. However I checked Wokload 03sdn transaction) inn system. and found out that at that time of restarting(I had to restart system 3 times to get logged on the system and even then it was almost unresponsive.

I can found in there top abap."Login_Pw", "SESSION_MANAGER", "?". (BAtch), "ADMSBUF, >DEleyed Function call, RSPOWPOO""RSWWclear", ""VA01", "SAPMHHTP "Buf Sync" >DDLOC CLEANUP)""rsbtctE"

What can I do?

¸

Who could interfer SAP_CCMS_MONI_BATCH_DPSAP_CCMS_MONI_BATCH_DP

the 2 main users under users profile were ZUGTIN running and SAPSYS( running many system jobs)

How to approach the problem

Former Member
0 Kudos

Jan,

Only One Question Per Posting. Check Rules of Engagement.

https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement.

Thanks,

Sushil

Former Member
0 Kudos

solved

Former Member
0 Kudos

Hi,

Can you try by below command.

find . -mtime +5 -exec rm TAL* '{}' \;

this will delete 5 day older files.

Thanks

Sushil