.NET news » Database Database Rss Feed

download

An Overview of Cryptographic Systems and Encrypting Database Data

As the attacks in which hackers use become more and more sophisticated, and the programs in which they attack become increasingly complex, encryption is becoming the last line of defense in database management system (DBMS) security. Since Microsoft announced their Trustworthy Computing security initiatives four years ago, the industry has been waiting to see how these initiatives would be implemented in upcoming products. With the introduction of Microsoft's newest DBMS, SQL Server 2005, it does indeed seem as though they have provided what they have promised.

What follows is a two-part article series that provides an in-depth examination of encrypting data in SQL Server 2005. In this article we will exploring key challenges facing database systems and the motivations for providing robust encryption mechanisms directly within the database system. We will also look at encryption fundamentals and SQL Server 2005's encryption capabilities.

Serving SQL XML through a WebService (SQL2005)

How to server XML from SQL2005 through a WebService
4 Feb 2007, 04:04:00   Source: Serving SQL XML through a WebService (SQL2005)   Tags: Web Services Database XML

Importing data with SSIS Object model

Describes how to use SSIS object model for importing data to SQL server 2005
3 Feb 2007, 07:09:00   Source: Importing data with SSIS Object model   Tags: Database

Use SQL Parameters to Overcome Ad Hoc Performance Issues

Defining (rather loosely) ad hoc queries as SQL commands built as strings by an SQL client application and submitted to SQL Server.

SQL Database Image Storage & Easy Thumbnails

Shows how to store images in SQL Database Image Storage & create Thumnails easiliy from
6 Jan 2007, 06:31:00   Source: SQL Database Image Storage & Easy Thumbnails   Tags: Database ASP.NET

Custom DataBindable BusinessObjects and The Typed DataSet

An article about Custom Businessobjects in conjunction with the DataSet to Retrieve Data
3 Jan 2007, 23:51:00   Source: Custom DataBindable BusinessObjects and The Typed DataSet   Tags: Database

The SqlReader Object

Cutting your code time in half using a smart SQL frontend.
30 Dec 2006, 01:20:00   Source: The SqlReader Object   Tags: Database

Integrating .NET Code and SQL Server Reporting Services

SQL Server Reporting Services versions 2000 and 2005 (SSRS) has many powerful features. SSRS has a well-designed data access engine, a great set of layout tools, and an excellent expression system for creating complex formulas. While the expression system is quite powerful it is not suitable for all applications. This is where SSRS shines. SSRS gives developers the ability to add custom code to their report layouts. This article demonstrates adding custom code to SQL Server Reporting Services reports.

28 Dec 2006, 18:00:00   Source: Integrating .NET Code and SQL Server Reporting Services   Tags: Database

Data Points: Data Bound Applications with ADO.NET and Custom Objects

The Windows Forms binding controls are vastly improved descendents of the data binding controls of the past. They get you going quickly and handle the redundant tasks associated with setting up forms, and you can customize and extend their behavior significantly. Data can travel in a variety of containers, including DataSets and custom class entities, and the Windows Forms binding tools allow you to bind to all of these types of objects. If you don't want to use a DataSet, you can create custom entities to be used as the data store for your application, and you can use List<T> and other collection types to store a set of your custom entities. These types of custom entities can easily be bound using the BindingSource and the BindingNavigator. In this column I'll demonstrate how to bind a custom list of business entities using the binding tools present in the Microsoft .NET Framework 2.0, and I'll do so by writing a fully functional data-driven Windows Forms application.
20 Dec 2006, 18:00:00   Source: Data Points: Data Bound Applications with ADO.NET and...   Tags: Database

SQL Server 2005: Regular Expressions Make Pattern Matching And Data Extraction Easier

Although T-SQL is extremely powerful for most data processing, it provides little support for text analysis or manipulation. Attempting to perform any sophisticated text analysis using the built-in string functions results in massively large functions and stored procedures that are difficult to debug and maintain. Is there a better way?
In fact, regular expressions provide a much more efficient and elegant solution. It is easy to see how they would be helpful for comparing text to identify records, but there is so much more they can do. I'll show you how to perform a variety of tasks, some simple and some amazing, that were considered impractical or impossible in SQL Server 2000, but are now possible in SQL Server 2005 due to its support for hosting the common language runtime (CLR).
20 Dec 2006, 18:00:00   Source: SQL Server 2005: Regular Expressions Make Pattern...   Tags: Database