<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>scriptio Forum Rss Feed</title><link>http://www.codeplex.com/scriptio/Thread/List.aspx</link><description>scriptio Forum Rss Description</description><item><title>New Post: Is this project still alive ?</title><link>http://scriptio.codeplex.com/discussions/299512</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I would like to use it, adding a &amp;quot;script data content&amp;quot; option.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It should not be difficult, but will help a lot with the goal of automating Tasks/Generate Scripts.&lt;/p&gt;
&lt;/div&gt;</description><author>GuillaumeJAY</author><pubDate>Thu, 09 Feb 2012 09:30:27 GMT</pubDate><guid isPermaLink="false">New Post: Is this project still alive ? 20120209093027A</guid></item><item><title>New Post: Latest Source Code?</title><link>http://scriptio.codeplex.com/discussions/256178</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;As a follow up, I found another project on codeplex called scriptdb that appears to do everything I wanted.&amp;nbsp; It is basically the command line version of Scriptio.&amp;nbsp; Works with sql server 2008 R2 as well. Can script permissions, extended properties, puts everything in folders organized like sql server management studio, etc.&amp;nbsp; I highly recommend it, and its source code is available.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://scriptdb.codeplex.com/"&gt;http://scriptdb.codeplex.com/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>tradergordo</author><pubDate>Tue, 03 May 2011 20:00:53 GMT</pubDate><guid isPermaLink="false">New Post: Latest Source Code? 20110503080053P</guid></item><item><title>New Post: Latest Source Code?</title><link>http://scriptio.codeplex.com/discussions/256178</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;The source code from SVN or the download link is for version 0.5.5, but the latest download version is 0.6.1&lt;/p&gt;
&lt;p&gt;Can you make the latest code available?&amp;nbsp; I would like to contribute to this project.&amp;nbsp; This is basically what I've been looking for, but would like to add a command line version and some other small enhancements (ability to store single file output
 to different folders for each type of object).&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Gordo&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>tradergordo</author><pubDate>Tue, 03 May 2011 17:51:07 GMT</pubDate><guid isPermaLink="false">New Post: Latest Source Code? 20110503055107P</guid></item><item><title>New Post: To Do Items</title><link>http://scriptio.codeplex.com/Thread/View.aspx?ThreadId=29300</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Requests:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Extract the meat of the utility into a cmd line interface, and change the UI to merely exercise the cmd line exe. I might do this myself and commit patches. This would be a big improvement over the database publishing wizard that cannot script to separate files and it would make the tool an improved replacement for scptxfr.exe.&lt;/li&gt;
&lt;li&gt;Include a regex exclusions section so that you can easily leave out tables and views created by sql features such as sql replication and SSMS diagram support in views. IE: a textbox that you type in sys* into and press the Add button to add sys* to a new datagrid for all of the exclusions. All objects starting with sys would become unchecked in the script selection datagrid.&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description><author>molafish</author><pubDate>Thu, 06 May 2010 19:39:14 GMT</pubDate><guid isPermaLink="false">New Post: To Do Items 20100506073914P</guid></item><item><title>New Post: To Do Items</title><link>http://www.codeplex.com/scriptio/Thread/View.aspx?ThreadId=29300</link><description>&lt;div style="line-height: normal;"&gt;Apologies in advance if there is a more appropriate area for new feature requests.&lt;br&gt;
&lt;br&gt;
Would there be any way to make the filter section able to select indexes, foreign keys, and primary keys as separate check boxes? &lt;br&gt;
&lt;br&gt;
I frequently have the need to just script one or more without scripting all the tables and other objects.&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
Jon&lt;br&gt;
&lt;/div&gt;</description><author>jhunolt</author><pubDate>Thu, 12 Feb 2009 19:59:40 GMT</pubDate><guid isPermaLink="false">New Post: To Do Items 20090212075940P</guid></item><item><title>New Post: To Do Items</title><link>http://www.codeplex.com/scriptio/Thread/View.aspx?ThreadId=29300</link><description>&lt;div style="line-height: normal;"&gt;Here is what I did to rebuild from source for Katmai (SQL 2008):&lt;br&gt;
&lt;ol&gt;
    &lt;li&gt;Remove the following References (they will appear with an error icon in Visual Studio if you don't have SQL 2005 installed):
    &lt;ul&gt;
        &lt;li&gt;Microsoft.SqlServer.ConnectionInfo&lt;/li&gt;
        &lt;li&gt;Microsoft.SqlServer.Smo&lt;/li&gt;
        &lt;li&gt;Microsoft.SqlServer.SmoEnum&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;Add the following References with Version 10.0.0.0 (of course, you need to have SQL 2008 installed first):
    &lt;ul&gt;
        &lt;li&gt;Microsoft.SqlServer.ConnectionInfo&lt;/li&gt;
        &lt;li&gt;Microsoft.SqlServer.Smo&lt;/li&gt;
        &lt;li&gt;Microsoft.SqlServer.SqlEnum [note the slight name change]&lt;/li&gt;
        &lt;li&gt;Microsoft.SqlServer.Management.Sdk.Sfc&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;Add the following line to the using statements near the top of Form1.cs:&lt;br&gt;
    using Microsoft.SqlServer.Management.Sdk.Sfc;&lt;/li&gt;
&lt;/ol&gt;
The project referenced an app.config file which was not included in the
download, but Scriptio doesn't actually need it, so I simply deleted it
from the project. I used Visual Studio 2008 SP1 but I left the project targeting .NET 2.0 so I assume this would work with Visual Studio 2005 as well.&lt;br&gt;
&lt;/div&gt;</description><author>ronnyong</author><pubDate>Sun, 07 Dec 2008 02:02:48 GMT</pubDate><guid isPermaLink="false">New Post: To Do Items 20081207020248A</guid></item><item><title>New Post: To Do Items</title><link>http://www.codeplex.com/scriptio/Thread/View.aspx?ThreadId=29300</link><description>&lt;div style="line-height: normal;"&gt;I've been using Scriptio adn I love it. I have a few more suggestions myself, in addition to those to do items listed above. I would love to see them incorporated in the next release. Here they are:&lt;br&gt;
&lt;br&gt;
- Create a config file in which prefered settings are saved and be&amp;nbsp;loaded&amp;nbsp;back in the next time&amp;nbsp;I log back into Scriptio,&amp;nbsp;so that there is no need to re-enter those settings manually the next time around.&lt;br&gt;
&lt;br&gt;
- There is a bug when the server is changed and reconnected to. The error message is &amp;quot;Unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately. Cannot clear this list.&amp;quot;&lt;br&gt;
&lt;br&gt;
- Ability to save individual files in different folders simultaneously according to object type (by tables, views, procs, etc.)&lt;br&gt;
&lt;br&gt;
- Add an aditional sorting level within an existing sort. For example, it would be nice to sort first by object type, then by object name. Indeed, currently when object are sorted by type, objects cannot be sorted in alphabetical order within each type, which makes it a little more tedious to find a specific table for example.&lt;br&gt;
&lt;br&gt;
- Add&amp;nbsp;2 filters in the display of object list:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; one by object type&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; one by file name matching pattern&lt;br&gt;
&lt;br&gt;
Thank you.&lt;br&gt;
&lt;br&gt;
Trung Nguyen, Emerson Process Management, Boulder, CO.
&lt;/div&gt;</description><author>tnemerson</author><pubDate>Fri, 03 Oct 2008 19:11:14 GMT</pubDate><guid isPermaLink="false">New Post: To Do Items 20081003071114P</guid></item><item><title>NEW POST: To Do Items</title><link>http://www.codeplex.com/scriptio/Thread/View.aspx?ThreadId=29300</link><description>&lt;div style="line-height: normal;"&gt;&lt;span style="font-size:11px;font-family:verdana"&gt;These are &amp;quot;optional extras&amp;quot; - niceties that we should work on next. I'd like some more input from everyone once people start using the project BEFORE we commit to a solid to do list. Feel free to discuss. These to do items are at the beginning of the main source for Form1.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;- NB: Build a pretty install that checks for pre-reqs. I know, I suck at OneClick, it's all my fault:-P&lt;br&gt;
&lt;br&gt;
&amp;nbsp;- NB: Check if this works with SQL 2008 (Katmai)&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;nbsp;- NB: Find a way of integrating with SQL 2005's context menu; maybe have Scriptio as a contex menu item on a&lt;br&gt;
&amp;nbsp;&amp;nbsp; database level, and then launch Scriptio with the authentication items already filled in, the database list&lt;br&gt;
&amp;nbsp;&amp;nbsp; populated with a single item (the database we've right clicked, obviously) and grayed out, and fire off the&lt;br&gt;
&amp;nbsp;&amp;nbsp; PopulateDatabases method. Also, see if we can't integrate it with SQL 2008 as well whilst we're about it.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;- Build intelligence into the selection system, so that when you select an item in the DataGrid it checks if&lt;br&gt;
&amp;nbsp;&amp;nbsp; all Stored Procs, for example, have been manually ticked in the DataGrid, and then reflects that in the&lt;br&gt;
&amp;nbsp;&amp;nbsp; CheckedListBox by ticking the StoredProc's item.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;nbsp;- &amp;quot;Beautify&amp;quot; the items in clbType, so that it puts a space between capitalised words - ie. when it adds&lt;br&gt;
&amp;nbsp;&amp;nbsp; UserDefinedTypes to the clbType items collection, it should add it as &amp;quot;User Defined Types&amp;quot;. Beautify the&lt;br&gt;
&amp;nbsp;&amp;nbsp; description in the DataGrid too so that they match.&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;nbsp;- Add other encoding options (UTF-7, UTF-8, UTF-32, BigEndianUnicode), dependant on demand&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;nbsp;- Make sure we've exposed ALL relevant ScriptingOptions properties to the user, you never know what oddity might&lt;br&gt;
&amp;nbsp;&amp;nbsp; be required by a single person in a single environment&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
Riccardo&lt;/span&gt;&lt;span style="font-family:verdana"&gt;&lt;br&gt;
&lt;/span&gt;
&lt;/div&gt;</description><author>riccardospagni</author><pubDate>Mon, 09 Jun 2008 13:17:57 GMT</pubDate><guid isPermaLink="false">NEW POST: To Do Items 20080609011757P</guid></item></channel></rss>