码迷,mamicode.com
首页 >  
搜索关键字:tables    ( 4125个结果
SQL Server 记录(更新中...)
sys.databases显示所有数据库信息sys.tables显示当前数据库所有的表的信息Go向 SQL Server 实用工具发出一批 Transact-SQL 语句已结束的信号,Go本身不是T-SQL语句sq_addrole 等等SQL Server系统存储过程以字符 sp_ 开头。EXEC或...
分类:数据库   时间:2014-05-10 01:36:26    阅读次数:454
[BILL WEI]SQL 存储过程学习
--查看数据库exec sp_databases ;--查看表exec sp_tables ;--查看列exec sp_columns WMS_ASN;--查看索引exec sp_helpindex WMS_ASN;--约束exec sp_helpconstraint WMS_ASN;--列出数据库...
分类:数据库   时间:2014-05-09 23:00:05    阅读次数:482
MySql 已用的命令
use databases 显示所有数据库 use schame 使用数据库 show tables 显示当前数据库中的所有表 describe table 显示表结果 其他一些基本操作:例如更新,插入,查询,删除。 参考资料:http://wenku.baidu.com/link...
分类:数据库   时间:2014-05-09 19:20:41    阅读次数:363
PL/SQL 安装出现的一些问题
一 、报错Dynamic Performance Tables not accessible,Automatic Statistics disabled for this sessionYou can disable statistics in the preference menu, or obt...
分类:数据库   时间:2014-05-09 16:39:54    阅读次数:467
Mysql基本用法
#登录数据库mysql -hlocalhost -uroot -p;#修改密码mysqladmin -uroot -pold password new; #显示数据库show databases;#显示数据表show tables;#选择数据库use examples;#创建数据库并设置编码utf....
分类:数据库   时间:2014-05-09 12:19:39    阅读次数:589
DW General - 1 High Level Overview
A dimensional database is a relational database that uses a dimensional data model to organize data. This model uses fact tables and dimension tables in a star or snowflake schema. So in general we ca...
分类:其他好文   时间:2014-05-07 06:29:37    阅读次数:384
InnoDB: Error: Table "mysql"."innodb_table_stats" not found.
1,Mysqldump的时候报错如下:2014-05-05 14:12:37 7f004a9a2700 InnoDB: Error: Table "mysql"."innodb_table_stats" not found.但是show tables我看这个表示存在的:但是show create table innodb_index_stats;报错如下:mysql> show create t...
分类:数据库   时间:2014-05-06 19:46:46    阅读次数:621
mysql忘记密码时 恢复管理员密码
#servicemysqlstop#servicemysqlstart--skip-grant-tables//跳过授权表启动MySQL服务程序#mysql-uroot//不需要密码登录mysql>updatemysql.usersetpassword=password(‘123456‘)wherehost="localhost";//通过修改mysql库中user表的相关记录重置密码QueryOK,0rowsaffected(0.38..
分类:数据库   时间:2014-05-06 16:52:46    阅读次数:439
修改mysql root密码
mysql密码丢失后,在mysql命令行下执行如下命令,即可将root用户密码清空: mysqld_safe --skip-grant-tables&mysql修改密码 mysql修改,可在mysql命令行执行如下: mysql -u root mysql mysql> UPDATE use...
分类:数据库   时间:2014-05-05 10:34:48    阅读次数:366
《linux 内核完全剖析》上帝为什么是右移20,而不是22! dir = (unsigned long *) ((from>>20) & 0xffc)
在memory.c里面有这么一段代码。为了其中的一句话,让我内牛满面啊!  dir = (unsigned long *) ((from>>20) & 0xffc) int free_page_tables(unsigned long from,unsigned long size) { unsigned long *pg_table; unsigned long...
分类:系统相关   时间:2014-05-04 18:22:41    阅读次数:459
4125条   上一页 1 ... 410 411 412 413 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!