.NET news » Database Database Rss Feed

< 1 2 3 4 5 6 7 8 9 10 11 12 >
download
Common Table Expressions (CTE) in SQL Server 2005
When crafting a query in SQL, there are often times when we may need to operate over a set of data that doesn't inherently exist within the system. For example, the database for an eCommerce web application would have the standard tables - Products, Customers, Orders, OrderDetails, and so on - but we may need to run reports on a particular subset of the data or against aggregate data across these tables. Or the reporting queries we need might need to group or filter by results returned by scalar subqueries. Typically, views are used to break down complex queries into digestible chunks or to provide scalar subquery results that can be grouped and filtered. Views, however, are sometimes overkill, as they are permanent objects at the system-level. If we only need to reference this complex query in a single stored procedure or UDF, another option is to use a derived table. Unfortunately, derived tables muddle the readability of the query and must be repeated for each use in a statement..
18 Jul 2006, 19:00:00   Source: Common Table Expressions (CTE) in SQL Server 2005   Tags: Database
Using NHibernate with Multiple Databases
This article describes using NHibernate with multiple databases concurrently.
18 Jul 2006, 00:14:00   Source: Using NHibernate with Multiple Databases   Tags: Database
SQL Server 2005 Query Notifications Tell .NET 2.0 Apps When Critical Data Changes
.NET 2.0 and SQL Server 2005 combine in Query Notifications to notify applications when critical data changes occur and eliminate the need to repeatedly ask the database, "Has it changed yet?"
28 Jun 2006, 18:45:07   Source: SQL Server 2005 Query Notifications Tell .NET 2.0 Apps...   Tags: Database
NHibernate Helper Kit
Here is a tool to help you build your NHibernate ORM applications.
23 Jun 2006, 04:26:00   Source: NHibernate Helper Kit   Tags: Software Database
Dissecting and Putting the Visual Studio 2005 Generated Data Access Layer Into Perspective

Do more with less code is the slogan of Visual Studio 2005.When it comes to reducing the amount of written code, wizards are definitely a viable option. Visual Studio 2005 has a lot of wizardry in it, especially to generate data access code. Any code that gets silently injected in your project follows a strict logic and a well-known design pattern. A full understanding how Visual Studio 2005 does it puts you on the right track to modify and extend the code to build your made-to-measure data access layer. This article dissects the code behind table adapters and binding source components to unveil patterns and best practices.

15 Jun 2006, 19:00:00   Source: Dissecting and Putting the Visual Studio 2005 Generated...   Tags: Database
Database Concurrency Conflicts in the Real World

A lot of articles have been written about database concurrency conflict detection and the various ways of handling them.Unfortunately most of these articles, and accompanying solutions, have one major flaw in that they focus on the technical issues and database implementation instead of real-world data and how people use the data. In this article, I will try to show the difference between focusing on the database implementation and on the real-world data. I will show some possible approaches on how to solve these concurrency issues.

15 Jun 2006, 19:00:00   Source: Database Concurrency Conflicts in the Real World   Tags: Database
Making Sense of the XML DataType in SQL Server 2005
In SQL Server 2005, XML becomes a first-class data type. Developers can make minor remote modifications to stored XML documents easily, taking advantage of new support for XML schema-based strong typing, and server-based XML data validation.
13 Jun 2006, 11:44:50   Source: Making Sense of the XML DataType in SQL Server 2005   Tags: Database XML
System.Transactions and ADO.NET 2.0
If you use DataAdapters and love their automatic connection-opening and closing capabilities—and ever use transactions, you should first understand what's really going on underneath the covers.
10 Jun 2006, 21:56:55   Source: System.Transactions and ADO.NET 2.0   Tags: Database
Data Points: Reporting controls in SQL Server 2005 Reporting Services
SQL Server™ 2005 Reporting Services lets you embed code in a report that can be accessed by various properties of that report, and it takes this concept a step further by allowing you to access external .NET libraries. It also offers a few techniques to integrate expressions and .NET code within a report, providing access to business logic and XML files.
7 Jun 2006, 19:00:00   Source: Data Points: Reporting controls in SQL Server 2005...   Tags: Database
Security in the CLR World Inside SQL Server
Is running .NET Framework code within SQL Server 2005 exciting or a threat? Which is it? This article explores the security issues of SQLCLR code so that both developers and DBAs can make informed decisions about its use.
22 May 2006, 14:10:06   Source: Security in the CLR World Inside SQL Server   Tags: Database Security
< 1 2 3 4 5 6 7 8 9 10 11 12 >