![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi Name of my server is ABC, i am going to install SQL Server 2008 Enterpirse on it. I dont want the default instance name "MSSQLSERVER" Even for named instance "KASHIF" after installation it will show it as ABC\KASHIF.How can i keep the instance name just "KASHIF" only or just the servername "ABC" only. |
#3
| |||
| |||
|
|
If you install the default instance on ABC, yes, your instance name will be MSSQLSERVER. But your client will only need to use ABC (without any mention of MSSQLSERVER). I guess effectively that's what you want. Linchi "Kashif Saeed" wrote: Hi Name of my server is ABC, i am going to install SQL Server 2008 Enterpirse on it. I dont want the default instance name "MSSQLSERVER" Even for named instance "KASHIF" after installation it will show it as ABC\KASHIF.How can i keep the instance name just "KASHIF" only or just the servername "ABC" only. |
#4
| |||
| |||
|
|
Thanks for this & it is exact response to my one query. But can you or anybody help me with if i want to install SQL server with named instance but don't want it to be [SERVERNAME]\[NAMED_INSTANCE] But only NAMED_INSTANCE "Linchi Shea" <LinchiShea (AT) discussions (DOT) microsoft.com> wrote in message news:665DCF32-BE34-4D55-9353-1EB6B2FAD241 (AT) microsoft (DOT) com... If you install the default instance on ABC, yes, your instance name will be MSSQLSERVER. But your client will only need to use ABC (without any mention of MSSQLSERVER). I guess effectively that's what you want. Linchi "Kashif Saeed" wrote: Hi Name of my server is ABC, i am going to install SQL Server 2008 Enterpirse on it. I dont want the default instance name "MSSQLSERVER" Even for named instance "KASHIF" after installation it will show it as ABC\KASHIF.How can i keep the instance name just "KASHIF" only or just the servername "ABC" only. |
#5
| |||
| |||
|
|
Thanks for this & it is exact response to my one query. But can you or anybody help me with if i want to install SQL server with named instance but don't want it to be [SERVERNAME]\[NAMED_INSTANCE] But only NAMED_INSTANCE "Linchi Shea" <LinchiShea (AT) discussions (DOT) microsoft.com> wrote in message news:665DCF32-BE34-4D55-9353-1EB6B2FAD241 (AT) microsoft (DOT) com... If you install the default instance on ABC, yes, your instance name will be MSSQLSERVER. But your client will only need to use ABC (without any mention of MSSQLSERVER). I guess effectively that's what you want. Linchi "Kashif Saeed" wrote: Hi Name of my server is ABC, i am going to install SQL Server 2008 Enterpirse on it. I dont want the default instance name "MSSQLSERVER" Even for named instance "KASHIF" after installation it will show it as ABC\KASHIF.How can i keep the instance name just "KASHIF" only or just the servername "ABC" only. |
#6
| |||
| |||
|
|
Without the server name, an application cannot find the instance, except by exhaustive search of all computers (and even then assuming the instance name is unique). Are you trying to hide the server name, or not have it hard coded in the app? If you have Active Directory, perhaps it would help to publish the instance in Active Directory. This creates a ServiceConnectionPoint object (in the server computer object). Then the application can do an efficient query for the ServiceConnectionPoint object that has your name and retrieve the ServerName\InstanceName information from this object. This way the application only needs to know the name of your application. And, the instance can actually be moved to another machine and the application can still find it (assuming the old ServiceConnectionPoint object is removed and the new one created). I use stored procedure sp_ActiveDirectory_SCP to publish the instance. You can also use sp_ActiveDirectory_Obj to publish the database. -- Richard Mueller MVP Directory Services Hilltop Lab - http://www.rlmueller.net -- "Kashif Saeed" <abc (AT) mail (DOT) com> wrote in message news:ewuunqsCKHA.5040 (AT) TK2MSFTNGP04 (DOT) phx.gbl... Thanks for this & it is exact response to my one query. But can you or anybody help me with if i want to install SQL server with named instance but don't want it to be [SERVERNAME]\[NAMED_INSTANCE] But only NAMED_INSTANCE "Linchi Shea" <LinchiShea (AT) discussions (DOT) microsoft.com> wrote in message news:665DCF32-BE34-4D55-9353-1EB6B2FAD241 (AT) microsoft (DOT) com... If you install the default instance on ABC, yes, your instance name will be MSSQLSERVER. But your client will only need to use ABC (without any mention of MSSQLSERVER). I guess effectively that's what you want. Linchi "Kashif Saeed" wrote: Hi Name of my server is ABC, i am going to install SQL Server 2008 Enterpirse on it. I dont want the default instance name "MSSQLSERVER" Even for named instance "KASHIF" after installation it will show it as ABC\KASHIF.How can i keep the instance name just "KASHIF" only or just the servername "ABC" only. |
#7
| |||
| |||
|
![]() |
| Thread Tools | |
| Display Modes | |
| |