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

2016-01-29 12:29 7 1 收藏

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

【 tulaoshi.com - ASP.NET 】


按如下方法(网上查到的): 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 servernameinstancename (e.g. SQLCMD -E -S guntherb01sqlexpress) - 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 servernameinstance -E (or -U sa -P password) - :r "C:Program FilesMicrosoft SQL Server 2000 Sample Database Scriptsinstpubs.sql" - :r "C:Program FilesMicrosoft SQL Server 2000 Sample Database Scriptsinstnwnd.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

来源:https://www.tulaoshi.com/n/20160129/1486307.html

延伸阅读
标签: 咖啡
咖啡经验分享 图钉问: 我一开始是咖啡色的液体,后来慢慢变得有点红,而且很痒,是怎么了,很少,有时候有,有时候没有 图老师答: 这个的话,也不是什么大的问题的,月经期间注意下卫生就是了,注意避免辛辣的饮食。 咖啡的妙用 去异味 1、一般的炒锅用久了就会有一股油腻的味道,把湿的咖啡渣放入锅中炒干,咖...
语法:ROW_NUMBER() OVER(PARTITION BY COLUMN ORDER BY COLUMN) BR 例子: 代码如下: select * from ( select *, ROW_NUMBER() OVER(Order by a.CreateTime DESC ) AS RowNumber from table_name as a ) as b where RowNumber BETWEEN 1 and 5 将会返回table表 其中有一列名字为 RowNumber, 编号从1开始 示例: ...
查询资料后知道有 sp_addlinkedserver 这个系统存储过程,可通过ODBC连接MySql,于是下载ODBC驱动,这个可通过MySql官网得到,地址:http://dev.mysql.com/downloads/。 安装驱动后配置数据源,这里注意,要用系统数据源,我在用户数据源中配置后数据源能连上MySql,但无法能过SqlServer连接,报错:Data source name not found and no defaul...
微信怎样开始使用QQ离线消息插件   微信怎样开始使用QQ离线消息插件          第一次使用时,必须先启用QQ离线消息这个插件,在微信通讯录里,找到QQ离线消息这个联系人,进到它的详细资料界面,点击头像旁边的启用按钮。 微信是腾讯公司于2011年1月21日推出的一款通过网络快速发送语音短信、视...
启用 SQL Server Browser 服务 在 Windows 防火墙中创建例外 在 Windows 防火墙中为 SQL Server 2005 创建例外 在 Windows 防火墙中为 SQL Server Browser 服务创建例外 简介 在尝试从远程计算机连接到 Microsoft SQL Server 2005 实例时,可能会接收到错误消息。在使用任何程序连接到 SQL Server 时都可能会发生此问题。例如,在使用 S...

经验教程

964

收藏

17
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部