Sql Server Management - Option to avoid scripting the collation? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:52:30Zhttp://stackoverflow.com/feeds/question/270003http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/270003/sql-server-management-option-to-avoid-scripting-the-collation0Sql Server Management - Option to avoid scripting the collation?Jim2008-11-06T19:45:52Z2008-11-07T02:43:24Z
<p>I have databases with different collations. I want to be able to script out tables from one database and create them in another. However, when I script out the tables, it includes the collation in the column definitions.</p>
<p>Is there a way to exclude the collations from the generated table creation scripts?</p>
http://stackoverflow.com/questions/270003/sql-server-management-option-to-avoid-scripting-the-collation/270019#2700191Answer by Mitchel Sellers for Sql Server Management - Option to avoid scripting the collation?Mitchel Sellers2008-11-06T19:51:36Z2008-11-06T19:51:36Z<p>Tools -> Options</p>
<p>Under Scripting (in the Table/View section)</p>
<p>Set Include Collation to False! </p>
http://stackoverflow.com/questions/270003/sql-server-management-option-to-avoid-scripting-the-collation/270226#2702260Answer by DJ for Sql Server Management - Option to avoid scripting the collation?DJ2008-11-06T20:49:39Z2008-11-06T20:49:39Z<p>Pretty lame - but do a search and replace on the script after it has been generated??</p>
http://stackoverflow.com/questions/270003/sql-server-management-option-to-avoid-scripting-the-collation/271088#2710880Answer by Dave for Sql Server Management - Option to avoid scripting the collation?Dave2008-11-07T02:43:24Z2008-11-07T02:43:24Z<p>Which version of SSMS are you using? The full edition, or Express edition?</p>
<p>You'll need to apply at least SP2 for 2005 to get the scripting settongs under Tools->Options.</p>
<p>This doesn't need to be applied to the database servers, it can be applied to just the client tools on your admin workstation if required. </p>