vote up 2 vote down star
1

What should be the C# code to find all the Database Servers connected in a network(including instance-name, port no, and IP address)?

flag

I nearly marked this as belongs on Server Fault but I think what would be better in this case is to ask the same question on Server Fault without the language specified so you can get a generic answer which you should be able to translate into C#. – Garry Shutler Jul 23 at 15:58
How do you define "Database Server"? – ahockley Jul 23 at 15:58
Any specific vendor? Oracle, MySQL, SQL Server? – adrianbanks Jul 23 at 16:02
No specific vendor. Any RDBMS. – JMSA Jul 23 at 16:48
1  
i do hope you arent a cracker. why not send a mail to the admins? – Noel Kennedy Jul 23 at 20:40

4 Answers

vote up 1 vote down

To combine things said in the previous answers / comments:

Contact your sysadmin, becasue this is undoable. You would need to account for every version of every (R)DBMS out there (or at least the latest ones).

link|flag
vote up 1 vote down

Does it work for any RDBMS Server?

Your answer is always going to be "no" here. Every RDBMS lets you set up a custom port - MySQL could be on 1433 or 1434 or 99999. Every RDBMS responds differently from other RDBMSes and even sometimes from previous versions of itself... You'd have to check every networking port possible on every computer for every RDBMS (and every version of that RDBMS if they change response strings often) and HOPE they have them configured with standard plaintext responses instead of being encrypted or whatnot. This is basic networking - first you portscan the IP range, then you can try to appscan on the active ports you've found to see how they respond to various requests, then you use that information to say "these IPs have apps that appear to be databases on the following ports" -- you're still not going to get things like MS Instance Name without going through the proper channels (as listed with code samples above).

Your best bet for understanding where to start is probably - http://www.nmap.org

link|flag
vote up 0 vote down

You could use the SqlDataSourceEnumerator class for this as well. Keep in mind, this is MS SQL Server specific...

var results = SqlDataSourceEnumerator.Instance.GetDataSources();

foreach (var row in results.Rows)
{
    Console.WriteLine("{0}\{1}", row["ServerName"], row["InstanceName"]);
}

See this link for additional info

link|flag
Does it work for any RDBMS Server? – JMSA Jul 23 at 16:48
See my comment in my previous answer. – David Anderson Jul 23 at 16:56
my answer is MS SQL specific. If you wanted to scan for any type of server, you'd have to know how to query for each one. Oracle, DB2, MySql likely all expose something similar - you'd just have to combine each of those with this code to scan for all of the above. Like David Anderson said in the other comments - this should just give you a start... – Scott Ivey Jul 23 at 18:15
vote up 0 vote down

Resources: http://msdn.microsoft.com/en-us/library/ms162169.aspx http://www.microsoft.com/downloads/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&displaylang=en

You would want to look into SMO. This requires each client to have the Sql Management Objects and CLR types installed. Below is a code snippet from one of my working applications that does just this.

private void OnClicked_RefreshDataSources(object sender, EventArgs e) {
        Cursor = Cursors.WaitCursor;

        DataTable dt = SmoApplication.EnumAvailableSqlServers(false);
        uxDataSource.Items.Clear();

        foreach (DataRow row in dt.Rows) {
            uxDataSource.Items.Add(row["Name"]);
        }

        if (dt.Rows.Count > 0) {
            uxDataSource.SelectedIndex = 0;
        }

        Cursor = Cursors.Default;
    }

    private void OnSelectedIndexChanged_PopulateDatabases(object sender, EventArgs e) {
        ConnectionString.DataSource = uxDataSource.SelectedItem.ToString();

        Server server = new Server(uxDataSource.SelectedItem.ToString());
        server.ConnectionContext.LoginSecure = false;
        server.ConnectionContext.Login = Program.DesktopService.AccountName;

        uxInitialCatalog.Items.Clear();

        try {
            foreach (Database db in server.Databases) {
                uxInitialCatalog.Items.Add(db.Name);
            }

            if (server.Databases.Count > 0) {
                uxInitialCatalog.SelectedIndex = 0;
            }
        }
        catch {
            MessageBox.Show("You do not have access to this server.", "Sql Connection", MessageBoxButtons.OK, 
                MessageBoxIcon.Warning);
            uxInitialCatalog.Items.Clear();
        }
    }
link|flag
Does it work for any RDBMS Server? – JMSA Jul 23 at 16:47
1  
I doubt it. This is strictly Sql Server code, but gives you a good start at what you're looking for. I would assume if you're looking for other types of databases, that those server's may expose an API similar to this – David Anderson Jul 23 at 16:54

Your Answer

Get an OpenID
or

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