|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
问题是他们究竟是喜欢他们是使用软件时,速度快还是速度慢好.(当然在3秒以内).无论是他们输入资料时,查找资料时,分析资料时.存储历程|数据|数据布局/****************************************************************************/
/**/
/*FileName:bbs.sql*/
/**/
/*Description:bbs数据布局*/
/**/
/*Table:*/
/**/
/*Procedure:*/
/**/
/*Author:bigeaglehttp://bigeagle.yeah.net*/
/**/
/*Date:2001/1/29*/
/**/
/*History:*/
/**/
/****************************************************************************/
/*数据布局*/
/*bbs用户表*/
ifexists(select*fromsysobjectswhereid=object_id(BBSUser))
droptableBBSUser
go
createtableBBSUser
(
idintidentityprimarykey,
UserNamevarchar(20)defaultnotnull,
Passwordvarchar(10)defaultnotnull,
Emailvarchar(100)defaultnotnull,
Homepagevarchar(150)defaultnotnull,
Signaturevarchar(255)defaultnotnull,
SignDatedatetimedefaultgetdate()notnull,
Pointintdefault0notnull
)
go
createindexix_bbsuseronbbsuser(id,username,password)
/*bbs心情表*/
ifexists(select*fromsysobjectswhereid=object_id(Face))
droptableFace
go
createtableFace
(
idtinyintidentityprimarykey,
Facevarchar(30)defaultnotnull
)
go
/*bbs表*/
ifexists(select*fromsysobjectswhereid=object_id(BBS))
droptableBBS
go
createtableBBS
(
idintidentityprimarykey,
RootIDintdefault0notnull,--根ID
FatherIDintdefault0notnull,--父ID
Layertinyintdefault0notnull,--层
OrderNumfloat(53)default0notnull,--排序基数
UserIDintdefault0notnull,--讲话人ID
ForumIDtinyintdefault1notnull,--版面ID
Subjectvarchar(255)defaultnotnull,--主题
Contenttextdefaultnotnull,--内容
FaceIDtinyintdefault1notnull,--心情
Hitsintdefault0notnull,--点击数
IPvarchar(20)defaultnotnull,--发贴IP
Timedatetimedefaultgetdate()notnull,--宣布工夫
Postedbitdefault0notnull--是不是精髓贴子
)
go
createindexix_bbsonbbs(id,rootid,layer,fatherid,subject,posted)withDROP_EXISTING
createindexix_bbs1onbbs(fatherid,forumid)withDROP_EXISTING
createindexix_bbs2onbbs(forumid,rootid,ordernum)withdrop_existing
/*精髓区*/
ifexists(select*fromsysobjectswhereid=object_id(PostedTopic))
droptablePostedTopic
go
createtablePostedTopic
(
idintidentityprimarykey,
UserIDintdefault0notnull,--讲话人ID
ForumIDtinyintdefault1notnull,--版面ID
Subjectvarchar(255)defaultnotnull,--主题
Contenttextdefaultnotnull,--内容
FaceIDtinyintdefault1notnull,--心情
Hitsintdefault0notnull,--点击数
IPvarchar(20)defaultnotnull,--发贴IP
Timedatetimedefaultgetdate()notnull--宣布工夫
)
go
/*forum版面表*/
ifexists(select*fromsysobjectswhereid=object_id(forum))
droptableforum
go
createtableForum
(
IDtinyintidentityprimarykey,
RootIDtinyintdefault0notnull,--根ID
FatherIDtinyintdefault0notnull,--父ID
Layertinyintdefault0notnull,--层
Titlevarchar(50)defaultnotnull,--版面称号
Descriptionvarchar(255)defaultnotnull,--版面形貌
MasterIDintdefault1notnull,--版主ID
TopicCountintdefault0notnull,--贴子总数
Timedatetimedefaultgetdate()notnull,--创立工夫
IsOpenbitdefault0notnull--是不是开放
)
go
insertintoforum(rootid,fatherid,layer,title,description,masterid)values(1,0,0,"聊天说地","在不背犯国度功令的情形下,你能够宣布你本人的行动。",1)
insertintoforum(rootid,fatherid,layer,title,description,masterid)values(2,0,0,"体育","在不背犯国度功令的情形下,你能够对体育宣布你本人的批评。",1)
insertintoforum(rootid,fatherid,layer,title,description,masterid)values(1,1,1,"笑话站","笑话,让你在事情间隙放松一下。",1)
insertintoforum(rootid,fatherid,layer,title,description,masterid)values(2,2,1,"体育沙龙","体育总和批评。",1)
insertintoforum(rootid,fatherid,layer,title,description,masterid)values(2,2,1,"足球","足球批评。",1)
insertintoforum(rootid,fatherid,layer,title,description,masterid)values(2,2,1,"海牛俱乐部","海牛球迷的会商场地。",1)
select*fromforum
/*论坛公告表*/
ifexists(select*fromsysobjectswhereid=object_id</p>ASP.NET和ASP的比较,技术上比较已经没什么可说的了.新一代在大部分程度来说当然是比旧一代好了.关键看你对所做软件的理解了.因人而定.会写的话也可能比ASP.NET写得更有效率和更方便重用 |
|