Change SQL Server 2005 Server Collation - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T22:50:06Zhttp://stackoverflow.com/feeds/question/169398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/169398/change-sql-server-2005-server-collation0Change SQL Server 2005 Server Collationdragonmantank2008-10-04T00:12:10Z2008-10-04T01:53:42Z
<p>I need to set up an instance of SQL Server 2005 with SQL_Latin1_General_CP850_Bin as the server collation (the vendor did not take into accounting looking at DB collation for a bunch of things so stored procedures and temp tables default to the server level and the default collation will not work). During the install for SQL Server it did not give that as an option so I left it at default and finished installing it.</p>
<p>According to <a href="http://msdn.microsoft.com/en-us/library/ms179254.aspx" rel="nofollow">MSDN</a> and <a href="http://technet.microsoft.com/en-us/library/ms179254.aspx" rel="nofollow">Technet</a> I should need to just run the following command:</p>
<pre><code>setup.exe /q /ACTION=RebuildDatabase /INSTANCENAME=MSSQLSERVER /SAPWD="sa-pwd" /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS" /SqlCollation=SQL_Latin1_General_CP1_CI_AI
</code></pre>
<p>However, whenever I run the above command with my parameters I get the pop-up of the SQL Server installation wizard, accept the agreement, and then it gives me output stating how to use the command.</p>
<p>Any idea what I can do?</p>
http://stackoverflow.com/questions/169398/change-sql-server-2005-server-collation/169413#1694131Answer by GilM for Change SQL Server 2005 Server CollationGilM2008-10-04T00:19:49Z2008-10-04T00:19:49Z<p>I think you're looking at instructions for SQL Server 2008.</p>
<p>See the article <a href="http://msdn.microsoft.com/en-us/library/ms179254(SQL.90).aspx" rel="nofollow">here</a> for instructions for 2005.</p>
http://stackoverflow.com/questions/169398/change-sql-server-2005-server-collation/169532#1695320Answer by SqlACID for Change SQL Server 2005 Server CollationSqlACID2008-10-04T01:53:42Z2008-10-04T01:53:42Z<p>If possible, I would uninstall and reinstall rather than trying to change it. Changing it without re-installing is not a simple process. To change from the default during install, just uncheck the "Hide advanced configuration options" check box on the Registration Information screen; doing that will give you a Collation Settings option about 4 screens later in the install.</p>