在Sybase中如何设置用户口令为空
使用sa登陆server:isql -Usa -Psa_password -Sserver_name 记录当前版本号(以当前版本号12000为例):sp_configure "update version" go 修改当前值为492:sp_configure "update version",492 go 将某用户口令设置为NULL(以sa为例,当前口令为“123456”):sp_password'123456',NULL,sa go 重新设置当前版本号:sp_configure "update version",12000 go