摘要: 1、查询现有的sql server 实例中的账号信息: select t.name,t.sid,t.password_hash from sys.sql_logins t where t.name not like '%MS%' --排除sa以及微软系统账号 and t.name<>'sa'; 2、 阅读全文
posted @ 2023-03-24 14:01 踏雪无痕2017 阅读(473) 评论(0) 推荐(0)