• 在SYBASE中如何设置用户口令为空


    为了调试方便,一般测试时都不会设置sybase的sa口令,缺省为空,但一旦设置了口令,可能sybase出于安全的考虑,则无法直接再设置为空,需要使用如下方法才能设置为空。
      1. 使用sa登录Server
        isql -Usa -Psa_password -Sserver_name
      2. 记录当前版本号(以当前版本号12000为例):

    1>      sp_configure "upgrade version"

    2>      go

      1. 修改当前值为492

    1>      sp_configure "upgrade version",492

    2>      go

      1. 将某用户口令设置为NULL(以sa为例,当前口令为"123456"):

    1>      sp_password '123456',NULL,sa

    2>      go

      1. 重新设置当前版本号:

    1>      sp_configure "upgrade version",12000

    2>      go

  • 相关阅读:
    Python2.7-zlib
    Python2.7-sqlite3
    Python2.7-dbm、gdbm、dbhash、bsddb、dumbdb
    Python2.7-anydbm
    Python2.7-marshal
    Python2.7-shelve
    Python2.7-copy_reg
    Python2.7-pickle, cpickle
    Python2.7-shutil
    Python2.7-fnmacth
  • 原文地址:https://www.cnblogs.com/Jasmin/p/588807.html
Copyright © 2020-2023  润新知