vote up 0 vote down star

Hi,

Can u people Help me How to get the sqlserver name used by sharepoint programatically?? is there any such api provided like i have installed sharepoint on the sqlnamed instance. How to get the sqlservername.

Thanks in Advance...

flag

37% accept rate

1 Answer

vote up 2 vote down check

This code should help you and you need to run this code from the SharePoint Server or WFE server.

        public String GetSharePointSQLServerName()
    {
        String sServerName = "notFound";
        foreach (var item in SPFarm.Local.Servers)
        {
            foreach (var svc in item.ServiceInstances)
            {
                 if (svc is SPDatabaseServiceInstance)
                {
                    SPDatabaseServiceInstance s = svc as SPDatabaseServiceInstance;                        
                    sServerName = item.DisplayName+"\\"+s.Instance;
                }
            }             
        }
        return sServerName;
    }
link|flag
Here I am getting the server name as "Demo-64-Test".But i have installed sqlserver as Named instance. "Demo-64-Test\SQLNamed".I have to get this one. – Cute Nov 9 at 4:23
@cute: I have updated the code to get the Instance. – Kusek Nov 9 at 5:54
@Kusek:Thnks It Helps me.But i have a Doubt.If i Installed The sqlserver as Default one then it gives the Default instance only??is is possible with above code?? – Cute Nov 9 at 6:38
HI it is not getting the instance name in server farm??? is thee is other way to do this ??/ – Cute Nov 19 at 13:31
@Cute: I have updated the Answer already to get the Instance of the DB Server. – Kusek Nov 20 at 10:16
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.