Utilizing SQL Server 2005 and C#.NET 2005 or 2008 how can I create a new dataset and view that in a datagridview or something. Here is the SQL i have and it seems to work correctly using the SQL M...
I'm using the following Connection String to connect to my SQL Database.
SqlConnection conn = new SqlConnection("server=MyComputerName\\SQLEXPRESS;integrated security=true;" + "database=myDataba...
We have a requirement to run a SQL Server 2000 stored procedure and then write the results to a CSV file which needs to be emailed. Ideally all this to be automated to be done once daily. Anybody h...