【IT168 服务器学院】1、使用sa登录Server:
isql -Usa -Psa_password -Sserver_name
2、记录当前版本号(以当前版本号12000为例):
sp_configure "upgrade version"
go
3、修改当前值为492:
sp_configure "upgrade version",492
go
4、将某用户口令设置为NULL(以sa为例,当前口令为"123456"):
sp_password ''123456'',NULL,sa
go
5、重新设置当前版本号:
sp_configure "upgrade version",12000
go
在SYBASE中如何设置用户口令为空
0
相关文章