Tag Archives: SQL Server

Enumerating Instances of SQL Server using C#

One of the project I am worked, I had to enumerate SQL Server instances of the network for creating dynamic connection string. Here is a code snippet which will retrieve all the SQL Server instance in a network using C# … Continue reading

Posted in .Net, ASP.Net, SQL Server | Tagged , , , , | Leave a comment

Implementing Custom Paging in DataRepeater using C# and SQL Server

Normally DataRepeater doesn’t have a paging feature; and you can implement it using LINQ, if you are using .Net 3.5. Here is an implementation which is using SQL Server 2005 feature ROW_NUMBER(). You can get more information about ROW_NUMBER() from … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, SQL Server, Visual Studio | Tagged , , , , , | Leave a comment

How to Store and Retrieve files from SQL Server Database

The forum I joined recently got lot of queries like How to Save Images in the Database, How to save files in SQL Server, How read files from Database etc. So I thought of writing a post regarding this. Even … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, SQL Server, Visual Studio, Windows Forms, WPF | Tagged , , , , , , | 2 Comments

Import / export data in MS Excel using C#

Sometimes we may require to generate Excel file from our reports,read from excel files to import data etc. This can be achieved using Office Interop (Office Automation) assemblies, but Office Automation in Web servers,got some issues;(More details: http://support.microsoft.com/kb/257757). The alternative … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net | Tagged , , , , , , , | 1 Comment

Adding and Reading files from SQL Server 2008 Filestream

Few days back I wrote a Post about FileStream feature in SQL 2008.(Filestream in SQL Server 2008). In this post I am trying to write the how to manage or use the FileStream feature from .Net managed code. For adding … Continue reading

Posted in .Net, .Net 3.0 / 3.5, ASP.Net, SQL Server, Visual Studio, Windows Forms | Tagged , , , , , | Leave a comment