Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
21 January 2012
change the database name in sqlserver using query
Supported in SQL Server 2000 and 2005 exec sp_renamedb 'databasename' , 'newdatabasename'
Supported in SQL Server 2005 and later version ALTER DATABASE 'databasename' MODIFY NAME = 'newdatabasename'
No comments:
Post a Comment