当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > 开始使用SQLServer2005,没用过MSDE,一开始还不知道怎么下手呢,呵呵

ASP.NET
探讨:ASP.NET技术的学习顺序问题
关于ASP.NET在IIS一些问题的经验总结
ASP.NET中通过对话框方式下载文件
ASP.NET网络编程中常用到的27个函数集
ASP.NET生成静态网页的方法
ASP.NET 2.0中实现弹窗报警提示
复杂ASP.NET服务器控件调整小技巧
ASP.NET调用oracle存储过程实现快速分页
VB.NET实现窗体图标最小化到状态栏
ASP.NET技巧:DataGrid传统分页方式
ASP.NET里的事务处理
ASP.NET 2.0高级数据处理之数据绑定
ASP.NET多频道网站架构实现方法
.NET vs J2EE——面对SOA的荒谬与误解
ASP.NET 2.0中执行数据库操作命令之一
ASP.NET应用程序资源访问安全模型
ASP.NET 2.0中的Web和HTML服务器控件
对.NET Framework 反射的反思
带你走进ASP.NET(1)
带你走进ASP.NET(2)

ASP.NET 中的 开始使用SQLServer2005,没用过MSDE,一开始还不知道怎么下手呢,呵呵


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 38 ::
收藏到网摘: n/a


按如下方法(网上查到的): So onto the Command Prompt ! (wooohooo) SQLCMD.exe will be your friend to explore the Beta 1 build of SQL Express. Here's how: - Open a Command Prompt - SQLCMD -E -S servername\instancename (e.g. SQLCMD -E -S guntherb01\sqlexpress) - select name from sys.databases - go You'll find a list of the default databases in your SQL Express installation (master, tempdb, model, msdb). However, no sample databases - nothing ! So here's an (unofficial) tip to get some sample data in SQL Express (finally, this post is way to long) :-) - Download and install Pubs & NWind T-SQL scripts: http://www.microsoft.com/downloads/details.aspx?FamilyID=06616212-0356-46a0-8da2-eebc53a68034&DisplayLang=en - SQLCMD -S servername\instance -E (or -U sa -P password) - :r "C:\Program Files\Microsoft SQL Server 2000 Sample Database Scripts\instpubs.sql" - :r "C:\Program Files\Microsoft SQL Server 2000 Sample Database Scripts\instnwnd.sql"

To verify you have successfully loaded the db's : - select name from sys.databases- go- Use pubs- select * from authors- go
Note that these T-SQL scripts were designed for SQL2000 (hence unsupported), but hey, they seemed to run perfectly on my SQL Express machine.
Now start enjoying SQL Express 2005 beta 1 !!!
这个版本的SQLServer2005 express 不包括full-text index