<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Demo: A First Look at SQL Server Data Tools</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/posts/SQL11UPD00-REC-02/rss"></atom:link>
	<image>
		<url>http://ak.channel9.msdn.com/ch9/4e6b/96489ac5-6db5-4353-9dd1-cce079794e6b/SQL11UPD00REC02_220.jpg</url>
		<title>Channel 9 - Demo: A First Look at SQL Server Data Tools</title>
		<link></link>
	</image>
	<description>This demo provides a quick tour of the new SQL Server Data Tools. SSDT makes it easy to develop powerful database solutions that target both your on-premise environment and the cloud. Roger Doherty Senior Program Manager, Microsoft </description>
	<link></link>
	<language>en</language>
	<pubDate>Fri, 24 May 2013 08:12:54 GMT</pubDate>
	<lastBuildDate>Fri, 24 May 2013 08:12:54 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Demo: A First Look at SQL Server Data Tools</title>
		<description>
			<![CDATA[<p>You can find all the content associated with this video at <a href="http://bit.ly/sql2012cookbook">http://bit.ly/sql2012cookbook</a>.</p><p>posted by rdoherty</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634667519489858659</link>
		<pubDate>Wed, 07 Mar 2012 21:19:08 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634667519489858659</guid>
		<dc:creator>rdoherty</dc:creator>
	</item>
	<item>
		<title>Re: Demo: A First Look at SQL Server Data Tools</title>
		<description>
			<![CDATA[<p>Roger,</p><p>thanks for a great introduction to the new tools. I can't express how thrilled I am to see this release from Microsoft as it promises to finally provide a solid end to end story for database developers in terms of deploying to on premise and SQL Azure.</p><p>We are running a team here that produces a software product that is subject to quick release cycles (and subsequent refactorings). We're targetting SQL Server 2008 and SQL Azure and currently rely on writing the per-release upgrade scripts using a combination of VSDBCMD (for automated schema diffs) and hand crafted scripts for e.g. renaming columns or moving data around, prior to executing the beforementioned schema diffs produced by VSDBCMD.</p><p>We just started on a new sprint with a user story for improving on quality assurance for upgrade scenarios and automated deployment to SQL Azure. As the person also responsible for the data tier in our software, I can't tell you how happy I am with the release of the new tools. It's going to make a big difference to our team, helping us provide a clear upgrade path with more automation - especially in terms of producing schema diffs for SQL Azure.</p><p>I have a few questions:</p><ol><li>Is there a managed API (like the SQL SMO) that allows us to include dacpac files in our own installer and subsequently deploy (clean install / upgrade) to on premise SQL Server&nbsp;or SQL Azure? </li><li>The scenario I'm thinking of is having a single SQL Server Data Tools project as part of our solution and using TFS builds output dacpac files for SQL Server or SQL Azure (i.e. targetting the two different environments via configuration and then build the dacpacs).<br>Is that possible? </li></ol><p>Again, thanks for producing this video. Can't wait to get started.</p><p>posted by Borum.NET</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634669762313068294</link>
		<pubDate>Sat, 10 Mar 2012 11:37:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634669762313068294</guid>
		<dc:creator>Borum.NET</dc:creator>
	</item>
	<item>
		<title>Re: Demo: A First Look at SQL Server Data Tools</title>
		<description>
			<![CDATA[<p>This stuff looks great.&nbsp; I am really enjoying the new capabilities, but wondering if there is a way to upgrade a data tier application (i.e. change an existing database's schema) without modifying any users or their permissions.&nbsp; Essentially I would like to be able to to use a .dacpac to encapsulate all aspects of a database's schema WITHOUT messing around with stuff like users.&nbsp; The scenario is developing a dacpac in a test environment, and then wanting to use it to upgrade say a production database, which obviously would have different security than in test.</p><p>I did find a bunch of advanced settings under the project settings' Debug tab, but those don't seem to affect the actual compare process when upgrading the data tier application from within SQL Management Studio -- it still insists on dropping existing users in that database, which is obviously not ok.</p><p>Any thoughts?</p><p>posted by lsjames</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634671260152554052</link>
		<pubDate>Mon, 12 Mar 2012 05:13:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634671260152554052</guid>
		<dc:creator>lsjames</dc:creator>
	</item>
	<item>
		<title>Re: Demo: A First Look at SQL Server Data Tools</title>
		<description>
			<![CDATA[<p>@<a href="/posts/SQL11UPD00-REC-02#c634669762313068294">Borum.NET</a>: thanks for the comments!&nbsp; Here's some answers to your questions:</p><p>Q: Is there a managed API (like the SQL SMO) that allows us to include dacpac files in our own installer and subsequently deploy (clean install / upgrade) to on premise SQL Server or SQL Azure?</p><p>A: DAC Fx has an API surface, check out <a href="http://sqldacexamples.codeplex.com">http://sqldacexamples.codeplex.com</a></p><p>Q: The scenario I'm thinking of is having a single SQL Server Data Tools project as part of our solution and using TFS builds output dacpac files for SQL Server or SQL Azure (i.e. targetting the two different environments via configuration and then build the dacpacs). Is that possible?</p><p>A: Absolutely.&nbsp; Think of .dacpac and .bacpac as a single-file deployment capability for schema (.dacpac) and schema &#43; data (.bacpac).</p><p>posted by rdoherty</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634673704573036575</link>
		<pubDate>Thu, 15 Mar 2012 01:07:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634673704573036575</guid>
		<dc:creator>rdoherty</dc:creator>
	</item>
	<item>
		<title>Re: Demo: A First Look at SQL Server Data Tools</title>
		<description>
			<![CDATA[<p>@<a href="/posts/SQL11UPD00-REC-02#c634671260152554052">lsjames</a>:I'd have to dig into your scenario a bit to answer this fully.&nbsp; In general, DAC upgrade will try the most minimally invastive upgrade strategy possible.&nbsp; I'm a bit suprised that&nbsp;it's messing with users, are you using DAC Fx 3.0 (that ships with RTM SQL 2012)?</p><p>posted by rdoherty</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634673706115863717</link>
		<pubDate>Thu, 15 Mar 2012 01:10:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634673706115863717</guid>
		<dc:creator>rdoherty</dc:creator>
	</item>
	<item>
		<title>Re: Demo: A First Look at SQL Server Data Tools</title>
		<description>
			<![CDATA[<p>@<a href="/posts/SQL11UPD00-REC-02#c634673704573036575">rdoherty</a>: Awesome. Thanks for the feedback.&nbsp;I'll get started on the tools starting monday.</p><p>posted by Borum.NET</p>]]>
		</description>
		<link>http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634676856206244118</link>
		<pubDate>Sun, 18 Mar 2012 16:40:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/posts/SQL11UPD00-REC-02#c634676856206244118</guid>
		<dc:creator>Borum.NET</dc:creator>
	</item>
</channel>
</rss>