Ubuntu Linux:1.root账号执行:apt-get install mysql-server2.设置远程连接:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123' WITH GRANT OPTION;CentOS Li...
分类:
数据库 时间:
2014-06-28 18:04:16
阅读次数:
277
登录命令mysql -uroot -p21313新建用户insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234"));刷新权限flush privileges;创建数据库create...
分类:
数据库 时间:
2014-06-21 07:39:29
阅读次数:
263
1、用Eclipse安装APP程序时,报Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE错误,也就是说内存不够用引起的,解决办法有如下两种: a、把手机内的没用安装包清掉一些,或者卸载一些没用的APP,腾出足够的内存,然后在进行安装; ....
分类:
移动开发 时间:
2014-06-18 16:58:18
阅读次数:
220
比如直接查看ORA-01031错误gaosheng-> oerr ora 0103101031, 00000, "insufficient privileges"// *Cause: An attempt was made to change the current username or pass...
分类:
其他好文 时间:
2014-06-18 09:19:08
阅读次数:
210
添加用户并授权:grant ALL PRIVILEGES ON *.* TO 'username'@'%' IDENTIFIED BY 'password';创建数据库(UTF8)CREATEDATABASEIFNOTEXISTSmydatabasedefaultcharsetutf8COLLATE...
分类:
数据库 时间:
2014-06-16 23:24:51
阅读次数:
250
提示 the installer has insufficient privileges to
modify the this
file:c:\windows\system32\MSVCR110.DLL解决方案此时进入C:\Windows\System32\目录,修改msvcr110.dll的权限,...
分类:
其他好文 时间:
2014-06-12 21:25:31
阅读次数:
1125
1. mysql忘记密码
vim /etc/my.conf 文件在mysqld下添加skip-grant-tables,表示mysql在登录的时候不检查权限。登录mysql。直接运行mysql> use mysql;
> update user set Password=password('root') where User='root'
> flush privileges;
> qu...
分类:
数据库 时间:
2014-06-03 02:24:16
阅读次数:
283
DWORD AdjustProcessToken(HANDLE hProcess, LPCTSTR
lpPrivilegeName){ HANDLE hToken; TOKEN_PRIVILEGES tp; tp.PrivilegeCount =1;
tp.Privileg...
分类:
其他好文 时间:
2014-05-29 16:18:44
阅读次数:
263
在64位 Windows 7中水晶报表的错误:Crystal Report Error: Either
the Crystal Reports registy key permission are insufficient or the Crystal
Reports runtime is not ...
分类:
其他好文 时间:
2014-05-26 06:38:07
阅读次数:
219
1、以SYSDBA身份登录PL;[sys/密码 as
sysdba]2、右键“User”->“New”新建用户;3、弹出新建用户窗口,在“general”选项卡中,填写:name:用户名;password:密码;4、切换到“Role
Privileges”选项卡:Role选择connect,勾选“D...
分类:
数据库 时间:
2014-05-25 22:21:34
阅读次数:
511