在键入任何命令都会报这个错的时候:
You must reset your password using ALTER USER statement before executing this statement.
意思是需要重设密码,重设密码的命令如下:
alter user user() identified by "密码";
例如:
alter user user() identified by "123456";
helloworld 参考文章
在键入任何命令都会报这个错的时候:
You must reset your password using ALTER USER statement before executing this statement.
意思是需要重设密码,重设密码的命令如下:
alter user user() identified by "密码";
例如:
alter user user() identified by "123456";