Articles
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Saturday, May 25, 2013
Home
Articles & Samples
Dev Search
Sample Chapters
Link to US
Contact
Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Database > SQL 6.5, 7.0
Search
DevASP

What's New
What's Hot

Joining Tables in SQL       
Total Hits: 161  |  Today: 0 Author: Abhisek Panda       Rating:  
Read Reviews | Write Review |              Your Rating: 

A query result can include data from multiple tables. To combine data from multiple tables, you can use the JOIN operation from SQL. The JOIN operation matches the rows of one table with rows of another table, based on values in those rows....

Using the SQL Distributed Management Objects       
Total Hits: 400  |  Today: 0 Author: Carvin Wilson       Rating:  
Read Reviews | Write Review |              Your Rating: 

The SQL Distributed Management Objects (SQL-DMO) provide a set of OLE objects that enable applications to use management features of SQL Server. This functionality helps to extend the capabilities of SQL Server by providing access to any 32-bit OLE-compliant application. This article gives an overview of SQL-DMO and provides a demonstration on how to access SQL-DMO via Active Server Pages (ASP)....

Overview of SQL Server Integration Service       
Total Hits: 440  |  Today: 0 Author: chirag       Rating:  
Read Reviews | Write Review |              Your Rating: 

Populating Data Warehouses and Data Marts
- Merging Data from Heterogeneous Data Stores
- Cleaning and Standardizing Data
- Building Business Intelligence into a Data Transformation Process
- Automating Administrative Functions and Data Loading...

Central Management Server in SQL 2008       
Total Hits: 389  |  Today: 0 Author: Sandesh S       Rating:  
Read Reviews | Write Review |              Your Rating: 

A SQL Server CMS is just a central repository that holds a list of managed servers. SQL Server 2008 SSMS introduces a new feature, Multiple Server Query Execution, in Query Editor. Centralize the management and administration of a number of SQL Server instances from a single source can allow the DBA to save significant time and effort. This feature intends to increase the productivity of running same query against multiple servers at once. Some of usage includes: Configure group of servers Gener...

Sql Server Optimization Techniques       
Total Hits: 350  |  Today: 0 Author: : Alwyn       Rating:  
Read Reviews | Write Review |              Your Rating: 

In this article, I have listed the steps to increase the performance of the queries.
If one follow these guidelines, he can boost the performance of the queries which are taking longer time for execution....

Triggers in SQL       
Total Hits: 119  |  Today: 0 Author: Abhisek Panda       Rating:  
Read Reviews | Write Review |              Your Rating: 

A trigger is a special kind of stored procedure that executes automatically when a user attempts the specified data modification statement on the specified table. Miccrosoft SQl server allows the creation of triggers for any given INSERT, UPDATE or DELETE statement....

Handling Diacritics values or Special Characters in SQLServer       
Total Hits: 497  |  Today: 0 Author: Sundar       Rating:  
Read Reviews | Write Review |              Your Rating: 

I faced the issue in the Excel download of my Dotnet Application where the rows were split up in to second line for some records and not for all. The data is from output of a stored procedure in SQL server database....

How to use SQL Server's Coalesce function       
Total Hits: 223  |  Today: 0 Author: Brett Burridge       Rating:  
Read Reviews | Write Review |              Your Rating: 

The Transact SQL Coalesce function is an extremely useful piece of syntax to know as it can be used in place of other longer SQL Server syntax.

Given a number of arguments, the Coalesce function will return the first argument that does not have a value of null. Note that if all of the arguments are null, Coalesce itself will return null!

Incidentally, the case function can often be used instead of coalesce - see the article "How to use the SQL Case function"....

How to use apostrophes in SQL Server's Transact SQL       
Total Hits: 179  |  Today: 0 Author: Brett Burridge       Rating:  
Read Reviews | Write Review |              Your Rating: 

Since strings are normally enclosed within single quotes in Transact SQL, it can be a problem if the string's text contains an apostrophe within it, such as the query below:

SELECT *, FROM Products WHERE ProductName = 'King's Jalapeno Peppers'

Obviously this SQL query would fail due to the apostrophe in the ProductName. Thankfully though, the solution is simple - just put two apostrophes in the string, as shown below:

SELECT *, FROM Products WHERE ProductName = 'King''s Jala...

Using SQL Server Stored Procedures To Prevent SQL Injection       
Total Hits: 89  |  Today: 0 Author: Randy Dyess       Rating:  
Read Reviews | Write Review |              Your Rating: 

An often over-looked method to help prevent SQL Injection attacks is the use of parameterized stored procedures. This first article in a two-part series briefly discusses the use of a parameterized stored procedure to help prevent SQL Injection attacks during your web site logon process....

SQL Injection in Classic ASP and Possible Solutions       
Total Hits: 105  |  Today: 0 Author: Ehsanul Haque       Rating:  
Read Reviews | Write Review |              Your Rating: 

Nowadays, SQL injection is a big threat for websites. It is a technique by which hackers can execute dangerous SQL commands by taking advantage of un-sanitized input opportunities in web application. While there is a good amount of best practices to prevent SQL injection in ASP.NET, ASP has very little information. In this article, Ehsanul examines a quicker and easier way to sanitize input parameters as well as the design plan for a new website to protect from SQL Injection. After a brief intro...

MD5 Hash SQL Server Extended Stored Procedure       
Total Hits: 271  |  Today: 0 Author: Vic Mackey       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is an extended stored procedure for Microsoft SQL Server 2000 that implements an optimized MD5 hash algorithm. It is intended to work much like the MySQL MD5() function. The algorithm was taken from here. I only added the md5_string() function. The DLL should work for older versions of SQL Server too, although I have not tested that. The source was compiled and tested on Microsoft Visual C++ 6.0 and .NET 2003....

Info on the Go: Wireless Internet Database Connectivity with ASP, XML, and SQL Server       
Total Hits: 615  |  Today: 0 Author: Srdjan Vujosevic and Robert Laberge       Rating:  
Read Reviews | Write Review |              Your Rating: 

Many handheld wireless devices such as cellular phones and PDAs already have the ability to access Web sites. So how do you build Web applications that tap this wireless audience? Although there are a number of limitations to wireless devices—such as screen size, navigation, and connection speed—you can use familiar Web development technologies to make your existing Web applications available to mobile users.
This article outlines the services and equipment currently available to support wire...

SQL Server 2005 XQuery and XML-DML - Part 3       
Total Hits: 181  |  Today: 0 Author: Alex Homer       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is the third and final article in a series of three that look at how the latest version of Microsoft’s enterprise-level database, SQL Server 2005, now offers great support and close integration with XML as a data persistence format. This includes new ways to validate, store and query XML documents that are stored within the database. SQL Server 2005 provides native support for XML that can vastly improve application performance, while supporting robust and safe multi-user access to the data...

Using SQL-DMO To Backup and Verify a Database       
Total Hits: 244  |  Today: 0 Author: Carvin Wilson       Rating:  
Read Reviews | Write Review |              Your Rating: 

The SQL Distributed Management objects (SQL-DMO) extend the functionality of SQL Server by providing developers a way to execute common tasks using programming and scripting languages. The first article in this series entitled "Using the SQL Distributed Management Objects", provided an overview of SQL-DMO. This article expands upon those concepts by showing you how to use SQL-DMO to create an Active Server Page application to backup and verify a SQL Server database....

The "Slammer" Worm - Are You Patched?       
Total Hits: 369  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

While it's not strictly ASP news... the worm is affecting businesses large and small:

The "Slammer" virus is an Internet worm targeting un-patched Microsoft SQL Server 2000 and MSDE 2000 systems resulting in a high volume of network traffic on both the Internet and private internal networks.

A patch resolving the vulnerability has been available for some time and yet many systems remain vulnerable. If you're running SQL Server or any version of MSDE, make sure you patch it imm...

Basic Concepts LINQ to SQL       
Total Hits: 172  |  Today: 0 Author: Muhil       Rating:  
Read Reviews | Write Review |              Your Rating: 

1. To add System.Data.Linq.
In Solution Explorer, right-click References, and then click Add Reference And System.Data.Linq assembly
2. Add the following directives
using System.Data.Linq;
using System.Data.Linq.Mapping;
3. In your class...

Managing Concurrent Data Access in Sql Server       
Total Hits: 495  |  Today: 0 Author: Alwyn       Rating:  
Read Reviews | Write Review |              Your Rating: 

Concurrent Data Access is nothing but a set of users accessing the same resource at the same time.
This requires something to prevent the impact when a set of users tries to modify resources which are being used by other users....

Useful Undocumented Maintenance SQL Server 2005 DBCC Command       
Total Hits: 561  |  Today: 0 Author: Sandesh S       Rating:  
Read Reviews | Write Review |              Your Rating: 

This DBCC command checks the allocation and structural integrity of
the primary database file....

Prevent Saving Changes in SQL 2008       
Total Hits: 340  |  Today: 0 Author: Sandesh S       Rating:  
Read Reviews | Write Review |              Your Rating: 

Prevent Saving Changes is a new option being introduced in SQL Server 2008. This option helps in preventing the unexpected modifications that can happen on a table which includes dropping & re-creating the table.
By default, Prevent Saving Changes Option will set to ON in SQL Server 2008....


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com