<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/script-sql-db/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/script-sql-db/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/script-sql-db/bugs/</id><updated>2008-03-14T20:41:11Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>SqlServer.Management.Smo.UnsupportedFeatureExceptiion</title><link href="https://sourceforge.net/p/script-sql-db/bugs/3/" rel="alternate"/><published>2008-03-14T20:41:11Z</published><updated>2008-03-14T20:41:11Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net33712c7ed3592c026370875c4c59c4c33e87bb2a</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;While scripting database on MS SQL 2005 Express server, call to db.FullTextCatalogs throws exception of type Microsoft.SqlServer.Management.Smo.UnsupportedFeatureException&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>ScriptAllDBs Error</title><link href="https://sourceforge.net/p/script-sql-db/bugs/2/" rel="alternate"/><published>2007-09-28T21:44:48Z</published><updated>2007-09-28T21:44:48Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.neta7f74e049c6ce0de2101a6e45c1f62d2291193eb</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;ScriptAllDBs.exe tries to call the ScriptDB executable but it doesn't seem to pass over the parameters that ScriptDB is expecting. Specifically it doesn't pass over the connection string information. This causes ScriptDB to fail.&lt;/p&gt;
&lt;p&gt;Is there a newer version? &lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>System tables not filtered properly</title><link href="https://sourceforge.net/p/script-sql-db/bugs/1/" rel="alternate"/><published>2007-03-06T21:07:22Z</published><updated>2007-03-06T21:07:22Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netb89f6f81790b6903496699d7e7ecac6f91deceb1</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The system status of a table is determined by owner (dbo) and table prefix (sys).  This prevents user tables beginning with sys that are owned by dbo from being scripted.&lt;/p&gt;
&lt;p&gt;scriptdb.cs line 273:&lt;br /&gt;
// skip system tables&lt;br /&gt;
//if (tbl.Schema == "dbo" &amp;amp;&amp;amp; tbl.Name.StartsWith("sys"))&lt;br /&gt;
...&lt;/p&gt;
&lt;p&gt;Recommend using the IsSystemObject of Table to determine the system status of tables:&lt;br /&gt;
if (tbl.IsSystemObject)&lt;br /&gt;
...&lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.table.issystemobject.aspx" rel="nofollow"&gt;http://msdn2.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.table.issystemobject.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This could also apply to views, functions, procedures and users&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>