shenpeng

SQL、ASP.NET、C#技术

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  SQL Server

摘要:来源:http://zhidao.baidu.com/question/1236568.html 本文首先讨论了基于第三范式的数据库表的基本设计,着重论述了建立主键和索引的策略和方案,然后从数据库表的扩展设计和库表对象的放置等角度概述了数据库管理系统的优化方案。 关键词: 优化(Optimizing) 第三范式(3NF) 冗余数据(Redundant Data) 索引(Index) 数据分割(... 阅读全文
posted @ 2008-03-17 23:37 shenpeng 阅读(5294) 评论(0) 推荐(0)

摘要:EXEC sp_password NULL, '你的新密码', 'sa' sp_password存储过程的功能是更改SQL Server登录的密码;语法格式: 1sp_password [ [ @old = ] \'old_password\' , ] 2{ [ @new =] \'new_password\' } 3[ , [ @loginame = ] \'login\' ] 4 5参数说明... 阅读全文
posted @ 2007-05-29 17:22 shenpeng 阅读(1082) 评论(0) 推荐(0)