First collect the output of the current instance configuration
- sp_helpserver
- select @@servername
Execute the below query to change the instance name
- sp_dropserver ‘old_name’
- go
- sp_addserver ‘new_name’,‘local’
- go
Verify sql server instance configuration by running below queries
- sp_helpserver
- select @@servername

can we create two instances in sql server standard edition?
plz explain.
By: sandeep on June 16, 2009
at 7:07 am
Yes we can create two instances in standard edition
By: JShah on June 17, 2009
at 7:39 am