cancel
Showing results for 
Search instead for 
Did you mean: 

how to delete sap* from MS SQL

senthil_kumar29
Participant
0 Kudos

Hi,

Could you tell me regarding how to delete sap* from MSSQL for client 000.

I know how to do in ORACLE but in MSSQL how to do it?

can you give me steps ?

Thanks senthil

Accepted Solutions (0)

Answers (3)

Answers (3)

senthil_kumar29
Participant
0 Kudos

Thanks Guys..

Former Member
0 Kudos

Don't forget to check your profile parameters.

If you have the following parameter set

login/no_automatic_user_sapstar = 1

You will have to change it to 0 and restart SAP before the default SAP* credentials will work after deleting the SAP* row in USR02

Former Member
0 Kudos

Hi,

run query analyzer if you use SQl server 2000

or run sql server management studio if you use SQL 2005

connect to database

use folloiwng query

in SQL 2005 click on new query

USE SID

DELETE sid.USR02 where MANDT='800' and BNAME = 'SAP*'

where SID = your sap system id ID in uppercase

sid = your sap system id in lowercase

query is case sensitive

reward if helpful

regards,

kaushal

Former Member
0 Kudos

Thank you

Satish