码迷,mamicode.com
首页 >  
搜索关键字:reorganize tables    ( 4145个结果
MongoDB操作
通过服务器中转访问其他服务器:su - ptkfcz输入passwordssh 用户@转接服务IP使用locate命令定位mongo位置进入mongo的bin目录下:输入命令进去mongoDB:./mongo IP:端口show dbs,use db,show tables
分类:数据库   时间:2014-06-18 20:18:05    阅读次数:248
sql: Compare Tables
---使用 UNION、INTERSECT 或 EXCEPT 运算符合并的所有查询必须在其目标列表中有相同数目的表达式select * from BookInfoList--存在不同的select BookInfoID,BookInfoBarCode from BookInfoList where ...
分类:数据库   时间:2014-06-16 09:25:43    阅读次数:264
dataset 用法(2)
1、为DataTable添加列(1)添加列DataTable tbl = ds.Tables.Add("User");DataColumn col =tbl.Columns.Add("UserID",typeof(int));col.AllowDBNull = false;col.MaxLength...
分类:其他好文   时间:2014-06-16 08:11:39    阅读次数:263
用SQL server导出到oracle,查询时提示“表或视图不存在ORA-00942”错误
用SQL server2005的导出工具,将数据导出表到oracle,表名称里看到有这张表了,但查询或删除时都提示“ORA-00942表或者试图不存在”的错误,上网查了一下,是如下原因:“查询或删除名称存在的表时,却提示不存在,你看看在user_tables里这几个表名是小写吗? 那说明你建表的时候...
分类:数据库   时间:2014-06-15 07:23:08    阅读次数:303
dbms_tdb包解析
The procedure or function in this packagechecks if a database is ready to betransported to a target platform.and if a database has external tables,dir...
分类:数据库   时间:2014-06-15 00:38:40    阅读次数:412
MySQL忘记root密码
首先cmd中输入 net stop mysql,或者在系统服务中关闭MySQL注册的服务。 然后在my.ini文件中的[mysqld]下面一行添加:skip_grant_tables mysql -uroot -p输入任意的密码都可以登录数据库,输入下面2行命令:UPDATE mysql.user....
分类:数据库   时间:2014-06-12 14:50:14    阅读次数:234
重置mysql的root密码
在my.ini的段[mysqld]中增加skip-grant-tables(只增加它即可)2.重启mysql服务3.打开cmd,转向mysql的安装路径C:\ProgramFiles\MySQL\MySQLServer5.1\bin4.输入mysql-uroot-p5.密码输入空,这时会自动转向sql输入方式6.输入usemysql7.输入updateusersetpassword=password(‘新..
分类:数据库   时间:2014-06-10 23:21:56    阅读次数:342
MySQL忘记root密码后的处理
在用root用户登录mysql时发现密码错了[root@gk~]#mysql-uroot-pEnterpassword:ERROR1045(28000):Accessdeniedforuser‘root‘@‘localhost‘(usingpassword:NO)解决方法1.停止mysqld服务[root@gk~]#servicemysqldstop停止mysqld:[确定]2.执行mysqld_safe--skip-grant-tables[root@..
分类:数据库   时间:2014-06-10 22:36:18    阅读次数:330
MySQL恢复备份读书笔记
1. 任何执行时间长于 wait_timeout或interactive_timeout选项值得备份,都会导致会话被关闭,这也会隐含执行UNLOCK TABLES命令。2. 对于使用FLUSH TABLES WITH READ LOCK的备份策略来讲,一个共同的缺陷是它们需要两个独立的线程来完成备份...
分类:数据库   时间:2014-06-09 16:49:27    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!