<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Visual Studio Data : SQL Server Express</title><link>http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx</link><description>Tags: SQL Server Express</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Debugging with Local Database File</title><link>http://blogs.msdn.com/vsdata/archive/2009/07/31/debugging-with-local-database-file.aspx</link><pubDate>Fri, 31 Jul 2009 04:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9853950</guid><dc:creator>Yang Cao</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/9853950.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=9853950</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=9853950</wfw:comment><description>&lt;P&gt;Most of the time, your business application needs to deal with data stored in a database. Sometimes the database is on a remote server, while sometimes it is a local database file (SQL Server Compact database file, SQL Server Express database file, or Microsoft Access database file). &lt;BR&gt;One of the frequently asked questions about debugging an application that has a local database file is: “&lt;A&gt;my update method executes successfully, why the database data is not updated&lt;/A&gt;?” &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;My data is not updated!&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;For example, my project has a SQL Server Compact database file (Northwind.sdf), and I add a dataset with Customer table data in my database file: &lt;BR&gt;&lt;A href="file:///C:/Users/yangcao/AppData/Local/Temp/WindowsLiveWriter-429641856/supfiles1AF77F5/image3.png" mce_href="file:///C:\Users\yangcao\AppData\Local\Temp\WindowsLiveWriter-429641856\supfiles1AF77F5\image3.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image001 border=0 alt=clip_image001 src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image001_35144abc-ab79-4385-9101-71c193216193.png" width=332 height=307 mce_src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image001_35144abc-ab79-4385-9101-71c193216193.png"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In Program.cs file, input following code to Main method:&amp;nbsp; &lt;BR&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'NSimSun','serif'; FONT-SIZE: 9pt; mso-fareast-font-family: nsimsun; mso-bidi-font-family: nsimsun; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: #2b91af"&gt;NorthwindDataSet&lt;/SPAN&gt; ds = &lt;SPAN style="COLOR: blue"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR: #2b91af"&gt;NorthwindDataSet&lt;/SPAN&gt;(); &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;NorthwindDataSetTableAdapters.&lt;SPAN style="COLOR: #2b91af"&gt;CustomersTableAdapter&lt;/SPAN&gt; ta = &lt;SPAN style="COLOR: blue"&gt;new&lt;/SPAN&gt; ConsoleApplication1.NorthwindDataSetTableAdapters.&lt;SPAN style="COLOR: #2b91af"&gt;CustomersTableAdapter&lt;/SPAN&gt;();&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-fareast-font-family: 宋体; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa; mso-ascii-theme-font: minor-latin; mso-fareast-theme-font: minor-fareast; mso-hansi-theme-font: minor-latin; mso-bidi-theme-font: minor-bidi"&gt; &lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'NSimSun','serif'; FONT-SIZE: 9pt; mso-fareast-font-family: nsimsun; mso-bidi-font-family: nsimsun; mso-ansi-language: en-us; mso-fareast-language: zh-cn; mso-bidi-language: ar-sa"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;ta.Fill(ds.Customers); &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;ds.Customers[0].Postal_Code = &lt;SPAN style="COLOR: #a31515"&gt;"11111"&lt;/SPAN&gt;; &lt;BR&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;int&lt;/SPAN&gt; result = ta.Update(ds);&lt;/SPAN&gt; &lt;/P&gt;
&lt;P&gt;Now if you hit F5 to debug this project and check the return value of Update method, the value is 1, which means one row was successfully updated. Now double click the Northwind.sdf file in Solution Explorer, and choose “Show Table Data” on Customers table: &lt;BR&gt;&lt;A href="file:///C:/Users/yangcao/AppData/Local/Temp/WindowsLiveWriter-429641856/supfiles1AF77F5/image[4].png" mce_href="file:///C:\Users\yangcao\AppData\Local\Temp\WindowsLiveWriter-429641856\supfiles1AF77F5\image%5b4%5d.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image002_ad809305-8a7e-43c4-a2de-18c1fbb1dfa4.png" width=338 height=344 mce_src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image002_ad809305-8a7e-43c4-a2de-18c1fbb1dfa4.png"&gt;&lt;/A&gt; &lt;BR&gt;You will notice that the Postal_Code is not updated at all! &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;What happened?&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Let’s check the property of the local database file: &lt;BR&gt;&lt;A href="file:///C:/Users/yangcao/AppData/Local/Temp/WindowsLiveWriter-429641856/supfiles1AF77F5/image[9].png" mce_href="file:///C:\Users\yangcao\AppData\Local\Temp\WindowsLiveWriter-429641856\supfiles1AF77F5\image%5b9%5d.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image003 border=0 alt=clip_image003 src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image003_e8edce6f-4d99-40f4-bf64-7e101b228d74.png" width=353 height=248 mce_src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image003_e8edce6f-4d99-40f4-bf64-7e101b228d74.png"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;There’s a property “Copy to Output Directory” and the default value is “Copy if newer” (if you’re using .mdf or .mdb file, the default value is “Copy always”). You could check &lt;A href="http://msdn.microsoft.com/en-us/library/ms233817.aspx" mce_href="http://msdn.microsoft.com/en-us/library/ms233817.aspx"&gt;this MSDN document&lt;/A&gt; to learn what this property means. In short, the local database file will be copied to Output directory, and THAT database is the one that will get updated.&lt;/P&gt;
&lt;P&gt;Let’s select “Show All Files” button on upper left corner of Solution Explorer, and navigate to bin/Debug folder. Now you could see the Northwind.sdf file in output directory: &lt;BR&gt;&lt;A href="file:///C:/Users/yangcao/AppData/Local/Temp/WindowsLiveWriter-429641856/supfiles1AF77F5/image[14].png" mce_href="file:///C:\Users\yangcao\AppData\Local\Temp\WindowsLiveWriter-429641856\supfiles1AF77F5\image%5b14%5d.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image004 border=0 alt=clip_image004 src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image004_13030b8c-e634-4e08-aa94-44b1966228e6.png" width=315 height=355 mce_src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image004_13030b8c-e634-4e08-aa94-44b1966228e6.png"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If you double click on this file, Server Explorer will create a connection to this database file. “Show Table Data” now! You will see the Postal_Code of first customer is now "11111”.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;What other options do I have?&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If you don’t want Visual Studio to copy the database file for you, you could set the “Copy to Output Directory” property to “Do not copy”. Then it’s your choice when and how to overwrite the database file. Of course, you still need two copies of database file: at design time, you’re using the database file in solution directory, while at run time, you’re modifying the one in output directory.&lt;/P&gt;
&lt;P&gt;If you want to get rid of this “two-copy-confusion” and want both design time and run time using the same copy of database file, you should select No when IDE offers to “copy the file to your project and modify the connection”. &lt;BR&gt;&lt;A href="file:///C:/Users/yangcao/AppData/Local/Temp/WindowsLiveWriter-429641856/supfiles1AF77F5/image[18].png" mce_href="file:///C:\Users\yangcao\AppData\Local\Temp\WindowsLiveWriter-429641856\supfiles1AF77F5\image%5b18%5d.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image005 border=0 alt=clip_image005 src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image005_2659ca89-c6a6-4180-8c4c-831c45a19192.png" width=445 height=178 mce_src="http://blogs.msdn.com/blogfiles/vsdata/WindowsLiveWriter/DebuggingwithLocalDatabaseFile_89AB/clip_image005_2659ca89-c6a6-4180-8c4c-831c45a19192.png"&gt;&lt;/A&gt; &lt;BR&gt;One thing worth mentioning is, if you leave the database file outside of your project, the path of the database file will actually be hardcoded into your project. Before deployment, please update this setting and replace the full path with a relative path.&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;
&lt;P&gt;08/04 Update: this &lt;A href="http://msdn.microsoft.com/en-us/library/ms246989(VS.100).aspx" target=_blank mce_href="http://msdn.microsoft.com/en-us/library/ms246989(VS.100).aspx"&gt;MSDN How to&lt;/A&gt; is helpful too. It describes in detail how to manage local data files in your project.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9853950" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category><category domain="http://blogs.msdn.com/vsdata/archive/tags/Business+Object/default.aspx">Business Object</category><category domain="http://blogs.msdn.com/vsdata/archive/tags/Debugging/default.aspx">Debugging</category><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Compact/default.aspx">SQL Server Compact</category></item><item><title>SSEUtil RTM version is now available (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2005/11/03/SSEUtil.aspx</link><pubDate>Fri, 04 Nov 2005 09:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:488959</guid><dc:creator>YAG</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/488959.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=488959</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=488959</wfw:comment><description>&lt;P&gt;For all you developers who love the command line, or want an easy way to perform simple administration functions on SQL Server 2005, you can now &lt;A href="http://go.microsoft.com/fwlink/?LinkId=44178"&gt;download the SQL Server Express Utility&lt;/A&gt;. Among its capabilities, you can:&lt;/P&gt;
&lt;UL&gt;
&lt;LI class=MsoNormal style="TEXT-JUSTIFY: inter-ideograph; MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in; LINE-HEIGHT: 150%; TEXT-ALIGN: justify"&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;Connect to the main instance or user-instance of SQL Server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="TEXT-JUSTIFY: inter-ideograph; MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in; LINE-HEIGHT: 150%; TEXT-ALIGN: justify"&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;Create/Attach/Detach/List databases on the server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="TEXT-JUSTIFY: inter-ideograph; MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in; LINE-HEIGHT: 150%; TEXT-ALIGN: justify"&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;Upgrade database files to match the version of the server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="TEXT-JUSTIFY: inter-ideograph; MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in; LINE-HEIGHT: 150%; TEXT-ALIGN: justify"&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;Execute SQL statements via the console (similar to SQLCMD) or the console window (UI).&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="TEXT-JUSTIFY: inter-ideograph; MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in; LINE-HEIGHT: 150%; TEXT-ALIGN: justify"&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;List the instances of SQL Server on the local machine or on remote machines.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI class=MsoNormal style="TEXT-JUSTIFY: inter-ideograph; MARGIN-LEFT: 0.75in; TEXT-INDENT: -0.25in; LINE-HEIGHT: 150%; TEXT-ALIGN: justify"&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;Log all input/output.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;SPAN style="FONT-SIZE: 10pt; LINE-HEIGHT: 150%; FONT-FAMILY: Arial"&gt;
&lt;P&gt;and more! One hint - it works with more than just SQL Express. It will work with SQL Server 2000 and SQL Server 2005 as well.&lt;/P&gt;&lt;/SPAN&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=488959" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Global launch events (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2005/10/14/launch-events.aspx</link><pubDate>Fri, 14 Oct 2005 22:21:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:481204</guid><dc:creator>YAG</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/481204.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=481204</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=481204</wfw:comment><description>&lt;P&gt;I'll be in San Francisco at the November 7th launch event for Visual Studio 2005, SQL Server 2005 and Biztalk 2006. If you are there, please stop by and say hello. I'll be hanging out at the Visual Studio area. If you can't make it, we'll be having global launch events over the next few months. You can find the list and register at &lt;A title=http://www.microsoft.com/launchtour2005/ href="http://www.microsoft.com/launchtour2005/"&gt;www.microsoft.com/launchtour2005/&lt;/A&gt;.&lt;IMG height=1 src="/aggbug.aspx?PostID=480763" width=1&gt; &lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=481204" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/VS+DATA+General/default.aspx">VS DATA General</category><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>New SQL Server Editions (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2005/02/25/380745.aspx</link><pubDate>Sat, 26 Feb 2005 01:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:380745</guid><dc:creator>vsdata</dc:creator><slash:comments>5</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/380745.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=380745</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=380745</wfw:comment><description>&lt;p&gt;I'm a few days late posting this, but I wanted to point y'all to &lt;a href="http://www.microsoft.com/sql/spotlight/expandsqlserver.asp"&gt;Tom's article&lt;/a&gt; on the new set of SKUs for SQL Server - including the new Workgroup Edition which is even available now for SQL Server 2000. &lt;/p&gt; &lt;p&gt;Here's a picture of the SQL Server 2005 packaging and pricing:&lt;/p&gt;&lt;img height="420" alt="SQL Server 2005 Packaging and Pricing" src="http://www.microsoft.com/sql/spotlight/images/expand_550x420.gif" width="550" border="0" /&gt; &lt;p&gt;It doesn't include the Developer Edition which will still be available.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=380745" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/VS+DATA+General/default.aspx">VS DATA General</category><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Milind is on Channel9 (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2005/01/28/362635.aspx</link><pubDate>Fri, 28 Jan 2005 19:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:362635</guid><dc:creator>vsdata</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/362635.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=362635</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=362635</wfw:comment><description>&lt;A href="http://blogs.msdn.com/vsdata/archive/2004/06/22/162907.aspx"&gt;Milind Lele&lt;/a&gt; from our team did an interview with Robert Scoble about SQLCLR and Visual Studio integration. He discusses what's so great about it, and shows some demos. &lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=38286"&gt;Twenty one minutes of video goodness&lt;/a&gt;... &amp;lt;g&amp;gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=362635" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>SSE and app building</title><link>http://blogs.msdn.com/vsdata/archive/2005/01/21/358530.aspx</link><pubDate>Sat, 22 Jan 2005 02:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:358530</guid><dc:creator>vsdata</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/358530.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=358530</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=358530</wfw:comment><description>&lt;p&gt;Well, it's been a ride in getting SSE ready for our upcoming beta.&amp;nbsp; Getting a server product to work in local data scenarios has been hard.&amp;nbsp; There are a lot of issues.&amp;nbsp; But, we're getting there. &amp;nbsp;&lt;/p&gt; &lt;p&gt;But Wow.&amp;nbsp; It is totally cool.&amp;nbsp; &lt;/p&gt; &lt;p&gt;All of the same APIs I use for full SQL work exactly the same for SSE.&amp;nbsp; But, I&amp;nbsp;get Xcopy functionality on top.&amp;nbsp; So, moving the app around on machines that have SSE is seamless.&amp;nbsp;&lt;/p&gt; &lt;p&gt;I've been doing app building with SSE since early December for both Win and Web apps.&amp;nbsp; (Helping find the little issues here and there that need to get cleaned up.)&amp;nbsp; That's been fun since I am a self-described ASP idiot -- so I'm learning ASP along the way.&amp;nbsp; With both SSE and Cassinni, I can develop and play with local web apps that leverage&amp;nbsp; SQL Server to my heart's content.&amp;nbsp; I have to say that ASP's web developer product A.K.A. Venus makes web development pretty easy.&amp;nbsp; I have had an interesting time with some of the bugs ....&lt;/p&gt; &lt;p&gt;Wrt to Yag's post, I've also been using the new report control in the apps as well.&amp;nbsp; Works great.&amp;nbsp; In a demo I did for the Envision conference that's going on, I did a simple little form that uses the report control and Xcopied it with the .exe and the MDF to a different location to show it working.&amp;nbsp; Now, if I can just get the list elements in the report control to behave a little better ...&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=358530" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>SQL Reporting Services in VS2005 (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2005/01/21/358304.aspx</link><pubDate>Fri, 21 Jan 2005 19:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:358304</guid><dc:creator>vsdata</dc:creator><slash:comments>8</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/358304.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=358304</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=358304</wfw:comment><description>&lt;p&gt;A few days ago, &lt;A href="http://blogs.msdn.com/vsdata/archive/2005/01/18/355788.aspx"&gt;I pointed &lt;/a&gt;to a &lt;a href="http://weblogs.asp.net/jackieg/archive/2005/01/18/355454.aspx"&gt;blog entry&lt;/a&gt; by Jackie Goldstein in which he discussed his favorite data enabling features in VS2005 and promised that I'd be watching it for comments. Well, Alex Kazovic asked &lt;a href="http://weblogs.asp.net/jackieg/archive/2005/01/18/355454.aspx#356127"&gt;a question&lt;/a&gt;:&lt;/p&gt; &lt;blockquote dir="ltr" style="MARGIN-RIGHT: 0px"&gt; &lt;blockquote dir="ltr" style="MARGIN-RIGHT: 0px"&gt; &lt;p&gt;Do you know if the next Beta of SQL RS 2005 will work with SQL Server Express? Whilst, I’m using the full version of SQL Server, I’m sure there are a lot of people using MSDE or Jet that are thinking of using SQL Server Express, but would like a good reporting deigner.&lt;/p&gt;&lt;/blockquote&gt;&lt;/blockquote&gt; &lt;p&gt;Good question, Alex. There are two aspects to this question - data you report against and the database that manages the reports that you're running. Additionally, the answer is somewhat different between windows forms and web forms.&lt;/p&gt; &lt;p&gt;In Reporting Services, you can run against any data that has a provider - so yes, you can report against data in SSE, Access, Fox, SQL, Oracle, etc. That's the case today and will continue to be the case.&lt;/p&gt; &lt;p&gt;Reporting Services today is a server based product. So, you license it via a license of SQL Server and it runs as a web front end - and accessible through web services for your own front ends. In VS2005 this changes. There will be reporting controls for Windows Forms that allows you to drop the control on the form and specify a datasource for a given report. That report will run locally (the control has the smarts to run the RDL) against your datasource. Note that these are the same datasources you build forms against - even objects! So, for applications that take advantage of Windows Forms, you'll be licensed with VS to run it locally. If you want to take advantage of server features like scheduled reports, email blasts, etc., you'll have to have a copy of SQL Server and license it as usual. For web applications, the same licensing as today applies.&lt;/p&gt; &lt;p&gt;Hope that answers your question, Alex!&lt;/p&gt; &lt;p&gt;Caveat: As always, this information may change as we get closer to release.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=358304" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Four most compelling issues in VS 2005 around data access (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2005/01/18/355788.aspx</link><pubDate>Wed, 19 Jan 2005 05:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:355788</guid><dc:creator>vsdata</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/355788.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=355788</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=355788</wfw:comment><description>&lt;p&gt;Jackie has a post discussing the move from Access to .NET. As part of it, he focuses on what he thinks are the key features for data-centric developers. Numbers one and two are:&lt;/p&gt; &lt;p&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;&lt;font face="Times New Roman"&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;(1) The improved experience and productivity of designing/building data-centric WinForms&lt;br /&gt;(2) The improvement in easily building forms that use automatic data binding and actually work correctly&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; COLOR: blue; FONT-FAMILY: Arial"&gt;&lt;font face="Times New Roman"&gt;&lt;font size="3"&gt;&lt;font color="#000000"&gt;for the rest, check out &lt;a href="http://weblogs.asp.net/jackieg/archive/2005/01/18/355454.aspx"&gt;his entry&lt;/a&gt;! I'll be looking in on his site for comments... Thanks for the kudos, Jackie... I'll be sure to pass this along to all the teams that were involved.&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=355788" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>SQL Server Express 2005 December Community Tech Preview (by Mairead)</title><link>http://blogs.msdn.com/vsdata/archive/2004/12/08/278489.aspx</link><pubDate>Wed, 08 Dec 2004 20:32:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:278489</guid><dc:creator>vsdata</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/278489.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=278489</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=278489</wfw:comment><description>&lt;p&gt;&lt;font face="Arial" size="2"&gt;The SQL Server Express Team has released their December Community Tech Preview and it's available for you to download for free off &lt;/font&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=66120BE8-826A-482A-8264-B1836F28FD79&amp;amp;displaylang=en"&gt;&lt;font face="Arial" size="2"&gt;MSDN&lt;/font&gt;&lt;/a&gt;&lt;font face="Arial" size="2"&gt;. Lance (VS DATA Program Manager Lead) will provide&amp;nbsp;some&amp;nbsp;more information from on&amp;nbsp;this over the upcoming days. Stay tuned ;-)&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=278489" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Learning more about SQL Server Express 2005 (by Mairead)</title><link>http://blogs.msdn.com/vsdata/archive/2004/12/02/273843.aspx</link><pubDate>Thu, 02 Dec 2004 18:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:273843</guid><dc:creator>vsdata</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/273843.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=273843</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=273843</wfw:comment><description>&lt;font face="Arial" size="2"&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;If would like to get extra information about SQL Server Express 2005, check out the Whitepaper that Rajesh George&amp;nbsp;a Program Manager on the SSE team&amp;nbsp;has up on &lt;/span&gt;&lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/sseoverview.asp"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;MSDN&lt;/span&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=273843" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Blog entries about SQL Server Management Studio (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2004/11/27/271085.aspx</link><pubDate>Sun, 28 Nov 2004 05:27:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:271085</guid><dc:creator>vsdata</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/271085.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=271085</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=271085</wfw:comment><description>&lt;p&gt;I'm just cleaning up a few last items before I &lt;A href="http://blogs.msdn.com/vsdata/archive/2004/11/12/256768.aspx"&gt;head to India&lt;/a&gt;, and noticed that Bill Ramos is &lt;A href="http://blogs.msdn.com/billramo/articles/271054.aspx"&gt;blogging about the management tools&lt;/a&gt; that are coming in SQL Server 2005. I look forward to seeing his take on the tools. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=271085" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>SQL Server Express and VB6 (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2004/10/27/248539.aspx</link><pubDate>Wed, 27 Oct 2004 16:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:248539</guid><dc:creator>vsdata</dc:creator><slash:comments>5</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/248539.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=248539</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=248539</wfw:comment><description>&lt;p&gt;Scott Swigart over at 3Leaf has posted a blog entry titled &lt;a href="http://ea.3leaf.com/2004/10/sql_express_the.html"&gt;"SQL Express: The Little Engine that Could"&lt;/a&gt;. In it, he shows how the great new capabilities of SSE can be used by VB6 developers instead of Jet (Access) databases. &lt;/p&gt; &lt;p&gt;My only response to this is "yup!" &amp;lt;g&amp;gt;.&amp;nbsp;&lt;a href="http://lab.msdn.microsoft.com/express/sql/default.aspx"&gt;SQL Server Express &lt;/a&gt;is one of the projects I've most enjoyed working on in this release. The ability to have a database that is XCOPY deployable, that can be connected to via a file path, that will run as Normal User and needs no upgrading to work under SQL Server is awesome . Before I came to Microsoft, one decision we often had to make was how to support both local data stores and SQL Server as the application grew or moved to a larger office. SSE now gives us the best of both worlds - the ease of Access or Fox data files, with the simple movement to SQL Server.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=248539" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Check out the SQL Server 2005 Yukon website (by Mairead)</title><link>http://blogs.msdn.com/vsdata/archive/2004/08/26/220879.aspx</link><pubDate>Thu, 26 Aug 2004 14:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:220879</guid><dc:creator>vsdata</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/220879.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=220879</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=220879</wfw:comment><description>&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Tahoma"&gt;Just in case you have not seen it already, check out the SQL Server 2005 (Yukon) &lt;a href="http://www.microsoft.com/sql/"&gt;site&lt;/a&gt; for the latest information of what features are part of the Yukon release, the latest information on SQL Server Express 2005 and lots of whitepapers to while away your wet and windy afternoon(at least that’s what the weather is like here in Seattle&lt;/span&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Wingdings; mso-ascii-font-family: Tahoma; mso-hansi-font-family: Tahoma; mso-bidi-font-family: Tahoma; mso-char-type: symbol; mso-symbol-font-family: Wingdings"&gt;&lt;span style="mso-char-type: symbol; mso-symbol-font-family: Wingdings"&gt;L&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=220879" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>SQL Express Management Tool (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2004/07/28/199409.aspx</link><pubDate>Wed, 28 Jul 2004 08:30:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:199409</guid><dc:creator>vsdata</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/199409.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=199409</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=199409</wfw:comment><description>&lt;P&gt;&lt;A href="http://weblogs.asp.net/pleloup/archive/2004/06/29/168900.aspx "&gt;Paschal blogs&lt;/A&gt;: &lt;FONT face=Verdana size=2&gt;&lt;EM&gt;My wish is for the Microsoft guys is that you make a separate manager for SQL Express 2005. &lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&lt;A href="http://sqljunkies.com/WebLog/euang/archive/2004/06/29/3350.aspx "&gt;Euan blogs&lt;/A&gt; (separately): &lt;EM&gt;One of the tools that was shown in the demo(if it went as planned) at TechEd should have been Express Manager ( XM ). This is a new lightweight query and admin tool. We are going to make it available for download sometime in August as it is lagging a little behind the rest of Yukon. XM is built in managed code and the goal is to make the download size really small, the initial version that supports query only will be a 2MB download if you have the NETFx 2.0 and SMO on the machine.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I just love bringing people together &amp;lt;g&amp;gt;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=199409" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item><item><title>Congrats to the SQL team! (by yag)</title><link>http://blogs.msdn.com/vsdata/archive/2004/07/28/199402.aspx</link><pubDate>Wed, 28 Jul 2004 08:23:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:199402</guid><dc:creator>vsdata</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/vsdata/comments/199402.aspx</comments><wfw:commentRss>http://blogs.msdn.com/vsdata/commentrss.aspx?PostID=199402</wfw:commentRss><wfw:comment>http://blogs.msdn.com/vsdata/rsscomments.aspx?PostID=199402</wfw:comment><description>A little late, I know, but SQL Server 2005 hit Beta 2 this week. You can get an overview of its features &lt;A href="http://www.microsoft.com/sql/2005/"&gt;here&lt;/A&gt;. &lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=199402" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/vsdata/archive/tags/SQL+Server+Express/default.aspx">SQL Server Express</category></item></channel></rss>