Click here to Skip to main content
15,901,122 members
Home / Discussions / Database
   

Database

 
QuestionASP.net (c#) and SQL server Pin
Sasuko10-Nov-05 6:19
Sasuko10-Nov-05 6:19 
AnswerRe: ASP.net (c#) and SQL server Pin
Colin Angus Mackay10-Nov-05 13:50
Colin Angus Mackay10-Nov-05 13:50 
QuestionHELP...SQL Server DTS Package probs... Pin
murrayb302410-Nov-05 6:02
murrayb302410-Nov-05 6:02 
AnswerUpdate Pin
murrayb302410-Nov-05 6:42
murrayb302410-Nov-05 6:42 
QuestionHELP!!!!!!!- How to decompile .DLL file to get source code back??? Pin
vicky4579-Nov-05 14:27
vicky4579-Nov-05 14:27 
AnswerRe: HELP!!!!!!!- How to decompile .DLL file to get source code back??? Pin
Colin Angus Mackay9-Nov-05 22:13
Colin Angus Mackay9-Nov-05 22:13 
QuestionRe: HELP!!!!!!!- How to decompile .DLL file to get source code back??? Pin
toxcct10-Nov-05 0:30
toxcct10-Nov-05 0:30 
AnswerRe: HELP!!!!!!!- How to decompile .DLL file to get source code back??? Pin
Colin Angus Mackay10-Nov-05 2:28
Colin Angus Mackay10-Nov-05 2:28 
AnswerRe: HELP!!!!!!!- How to decompile .DLL file to get source code back??? Pin
S Douglas14-Nov-05 0:58
professionalS Douglas14-Nov-05 0:58 
GeneralRe: HELP!!!!!!!- How to decompile .DLL file to get source code back??? Pin
vicky45710-Nov-05 9:03
vicky45710-Nov-05 9:03 
Questiondatetime and stored proedures Pin
achrafus9-Nov-05 8:54
achrafus9-Nov-05 8:54 
AnswerRe: datetime and stored proedures Pin
Chris Meech9-Nov-05 9:26
Chris Meech9-Nov-05 9:26 
AnswerRe: datetime and stored proedures Pin
Daniel Santillanes9-Nov-05 12:22
professionalDaniel Santillanes9-Nov-05 12:22 
AnswerRe: datetime and stored proedures Pin
n10sive11-Nov-05 17:09
n10sive11-Nov-05 17:09 
QuestionFill DataSet From SQL and update MS Access Pin
marrik9-Nov-05 5:48
marrik9-Nov-05 5:48 
QuestionLookup table in ADO.NET with C# Pin
Billy Whizz9-Nov-05 4:47
Billy Whizz9-Nov-05 4:47 
AnswerRe: Lookup table in ADO.NET with C# Pin
S Douglas14-Nov-05 1:21
professionalS Douglas14-Nov-05 1:21 
QuestionRemoving SQL Beta2 Pin
CSharpDavid9-Nov-05 4:32
CSharpDavid9-Nov-05 4:32 
QuestionFilegroup full error Pin
smita_roy9-Nov-05 2:17
smita_roy9-Nov-05 2:17 
Questionlist all sql server running on a network Pin
totu8-Nov-05 23:00
totu8-Nov-05 23:00 
AnswerRe: list all sql server running on a network Pin
Gavin Taylor9-Nov-05 0:37
professionalGavin Taylor9-Nov-05 0:37 
GeneralRe: list all sql server running on a network Pin
totu9-Nov-05 0:58
totu9-Nov-05 0:58 
yes i have searched
and i got the following code



using System.Data;

using System.Data.Sql ;

using System;

public class Repro

{

public static int Main(string[] args)

{

SqlDataSourceEnumerator sqldatasourceenumerator1 = SqlDataSourceEnumerator.Instance;

DataTable datatable1 = sqldatasourceenumerator1.GetDataSources();

foreach (DataRow row in datatable1.Rows)

{

Console.WriteLine("****************************************");

Console.WriteLine("Server Name:"+row["ServerName"]);

Console.WriteLine("Instance Name:"+row["InstanceName"]);

Console.WriteLine("Is Clustered:"+row["IsClustered"]);

Console.WriteLine("Version:"+row["Version"]);

Console.WriteLine("****************************************");

}

return 1;

}

}








'but i not get the dll for
system.data.sql namespace


GeneralRe: list all sql server running on a network Pin
Gavin Taylor9-Nov-05 2:06
professionalGavin Taylor9-Nov-05 2:06 
AnswerRe: list all sql server running on a network Pin
abhinish11-Nov-05 21:23
abhinish11-Nov-05 21:23 
Questionsql back up advise Pin
Goodway8-Nov-05 4:36
Goodway8-Nov-05 4:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.