Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> Database & XML -> SQL Articles Adds this page to your personal favorites
  SQL
Advanced SQL Server DATE and DATETIME Handling
There are lot of situations where you need an exact timestamp. For example, you may want to differentiate a recordsets’ creation dates, store technical measurements, or just to see how fast your latest SQL is running. Coding the 4th dimension is another common task, and therefore milliseconds are essential.
Visits: 313 Updated: 2005-12-27  Rating: (Not Rated)  More info & Ratings
Are SQL Server Temp Tables Really Necessary?
This article will discuss the use and the alternatives to temporary tables from a query performance and maintenance standpoint.
Visits: 932 Updated: 2002-4-6  Rating: (Not Rated)  More info & Ratings
Advertisment
Changing the SQL Server Century Cut-Off Date
The work undertaken to resolve the year 2000 problem taught developers that they should be using four-digit dates. However, as integration with legacy systems is still required, so are two-digit dates. SQL Server provides a century cut-off point to help.
Visits: 81 Updated: 2007-11-9  Rating: (Not Rated)  More info & Ratings
Counting Parents and Children with Count Distinct
The aggregate functions in SQL Server (min, max, sum, count, average, etc.) are great tools for reporting and business analysis. But sometimes, you need to tweak them just a little bit to get exactly the results you need. For example, if your manager came to you and asked for a report on how many sales have been made to your clients and how large they were, would you know how to get the data you need efficiently? Author ran into something like this recently and here's the approach he took to solve the problem.
Visits: 209 Updated: 2006-4-1  Rating: (Not Rated)  More info & Ratings
Demystifying the SQL Server DATETIME Datatype. Part 1
When you follow online communities dedicated to SQL Server with open eyes, you certainly notice a whole lot of questions are closely related to the DATETIME datatype in one way or the other. Obviously, working with DATETIME not as easy as it may seem.
Visits: 265 Updated: 2005-12-27  Rating: (Not Rated)  More info & Ratings
Discover SQL: Dynamically recomputing columns
How to perform different computations for each row of a certain table, with each computation involving several columns.
Visits: 7496 Updated: 2002-9-4  Rating: 
Exception Handling in SQL Server 2000 and Yukon
Error handling plays a vital role when writing stored procedures or scripts. In this article I will discuss error handling in SQL Server 2000 and SQL Server Yukon. Before starting the discussion of the error handling part, I will take you through the different components of an error message. Here is a typical error message you get when working with SQL Server 2000 Query Analyzer.
Visits: 362 Updated: 2005-12-27  Rating: (Not Rated)  More info & Ratings
How to Find a SQL Server Database Object
A better why to find a SQL Server object, such as a table, a procedure, or a trigger, would be to query the sysobjects system table in the local database (of course, one has to be certain about which database that object is supposed be in).
Visits: 226 Updated: 2005-12-27  Rating: (Not Rated)  More info & Ratings
HOWTO: Display Images Stored in a BLOB Field
Using Active Server Pages (ASP), you can view images stored in BLOB (Binary Large Object) fields in your Internet browser. This article provides information on how to display a GIF image stored in the Microsoft SQL Server sample database ...
Visits: 4007 Updated: 2001-9-16  Rating: (Not Rated)  More info & Ratings
Identifying Your New Records
While the use of AutoNumber and Identity fields in tables is greatly applauded by database designers the world over, they can be annoying for developers to use. This article reveals two techniques for retrieving the value of an AutoNumber/Identity field.
Visits: 661 Updated: 2003-6-3  Rating: (Not Rated)  More info & Ratings
Implementing a Dynamic WHERE Clause
This article covers building a dynamic where clause. And the really neat part is that you don't actually need to write dynamic SQL. This is soooo much simpler.
Visits: 1519 Updated: 2001-7-8  Rating: (Not Rated)  More info & Ratings
Introduction to Dynamic SQL (Part 1)
Have you ever tried to run "Select * from @TableName"? This article shows you how to use Dynamic SQL inside SQL Server to build your SQL on the fly.
Visits: 1676 Updated: 2001-7-8  Rating: (Not Rated)  More info & Ratings
Introduction to Dynamic SQL (Part 2)
In a follow up to the Introduction to Dynamic SQL we take you through some of the tricks and pitfalls of this technique. We'll cover Create Table, sp_executesql, permissions, scope and more.
Visits: 1005 Updated: 2001-7-8  Rating: (Not Rated)  More info & Ratings
Managing Extended Properties
Use SQL Server 2000's sql_variant data type to add user-defined extended properties to your data, tables, columns, parameters, and other objects.
Visits: 617 Updated: 2001-8-8  Rating: (Not Rated)  More info & Ratings
Performing Cascading Deletes with Triggers
Triggers are the best way to go to perform cascading deletes. Due to their proximity to the actual data, they are extremely efficient but also have a number of other advantages.
Visits: 1973 Updated: 2000-8-4  Rating: (Not Rated)  More info & Ratings
Some Useful Undocumented SQL Server 2000 DBCC Commands
The Author is at it again, showing you more undocumented commands, this time DBCC commands for SQL Server 2000.
Visits: 827 Updated: 2001-9-24  Rating: (Not Rated)  More info & Ratings
SQL Server 2005 : Updating multiple tables involved in a two column foreign key constraint
Dicusses different ways to update data that is involved in a multiple column foreign key constraint. Article then helps decides which way is the best to use.
Visits: 28 Updated: 2008-2-4  Rating: (Not Rated)  More info & Ratings
SQL Syntax Validator
How to validate SQL Queries Prior to executing them.
Visits: 1652 Updated: 2001-8-16  Rating: (Not Rated)  More info & Ratings
Understanding and Calculating Dates
This article shows you how date functions can calculate something as seemingly simple as "the next business day."
Visits: 1068 Updated: 2001-7-2  Rating: (Not Rated)  More info & Ratings
Using SQL Server 2000's User Defined Function to solve the Tree Problem
In this article we demonstrate how to solve the classic "Who does an employee" report to problem using SQL Server 2000's new User-defined function feature
Visits: 435 Updated: 2004-8-9  Rating: (Not Rated)  More info & Ratings
Using Triggers to track database action history
Tal Kelley demonstrates how to use triggers in SQL Server in order to keep track of who is modifying your database tables.
Visits: 798 Updated: 2003-1-16  Rating: (Not Rated)  More info & Ratings
Views in SQL Server
A view is a virtual table that consists of columns from one or more tables. Though it is similar to a table, it is stored in the database. It is a query stored as an object. Hence, a view is an object that derives its data from one or more tables. These tables are referred to as base or underlying tables.
Visits: 305 Updated: 2005-12-27  Rating: (Not Rated)  More info & Ratings


Found a broken link? Please report it to us.

 

Sponsored Links 
Web based bug tracking - AdminiTrack.com
AdminiTrack offers an effective web-based bug tracking system designed for professional software development teams.
Free White Paper: Accelerate Enterprise Apps 2500%
Sign up to learn how solid state disks boost application speed for lots more transactions and users.
Free DB Modeling Trial with ER/Studio
Design and Build More Powerful Databases with ER/Studio.
CSTSOFT Instrumentation .NET & ActiveX Components
A collection of 13 instrumentation .NET/ActiveX/VCL components including Gauge,Knob,LED,Trend etc.
DVD/CD Duplicators - All Free Shipping
Simple Disc-to-Disc Duplication. 2 Year Warranty & Free Shipping.
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
Network Magazine Provides information Technology (IT) and network managers with strategic analysis, views of emerging technologies and product reports....
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by ASP.NET Konsult - Synchron Data.