Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 13 of 24) 708 Result(s) found 

 

SAVE TRAN and Save Points.
Total Hit (2530) Savepoints offer a mechanism to roll back portions of transactions. A user can set a savepoint, or marker, within a transaction. The savepoint defines a location to which a transaction can return if part of the transaction is conditionally canceled. SQL Server allows you to use savepoints via the SA ....Read More
Rating
Get data from MS Access database using single statement.
Total Hit (2074)
Rating
Generate sequencial number for your resultset.
Total Hit (1385)
Rating
Displaying RTF formatted text in SQL 2005 Reporting services
Total Hit (43957) I haven't tried this but it may be helpful to someone who is trying to display RTF formatted text on their report. Crystal Report Support RTF/HTML format but RS 2005 doesnt support. May be MS will add in the next release. Just follow these steps: Compile the code below it into a class Firs ....Read More
Rating
How to generate combinations of values in SQL Server?
Total Hit (1547) Demonstrates the application of the CUBE operator for SELECT statement.
Rating
How to check file size of all databases on the server.
Total Hit (2689)
Rating
Some useful UDF for SQL Server 2000
Total Hit (2914) Introduction UDF examples Database creation date Date the object was created Get date part of datetime value Get time part of datetime value Get the number of working days between two dates «B»Introduction«/B» SQL Server 2000 supports User-Defined Functions (UDFs) - one or more Tr ....Read More
Rating
Create Excel XLS from T-SQL
Total Hit (3992) This is a T-SQL script that uses OLE, ADO, Jet4 ISAM, and Linked Server to create and populate an Excel Workbook (XLS) file from T-SQL query. If the Excel Worksheet exists, the query will append to the "table". The code is designed to be used by SQL Agent and to append to the step output with verb ....Read More
Rating
Real world recursion example of CTE (Common Table Expression) used in SQL 2005 / 2008 , Finding information from Tree Structure.
Total Hit (3124) CTE is new powerful feature in SQL Server 2005. Two advantages of CTE <b>1. Implement Recursion (See example)</b> This is the biggest advantage using CTE. Recursion was possible in SQL 2000 but you had to write UDF or nasty joins. <b>2. Reuse Query anywhere by name (Just like View or Temp ....Read More
Rating
How to define a column with a custom time format & verify validity of data using CHECK constraint?
Total Hit (1430)
Rating
Concat several address fields together (example)
Total Hit (2230) Concatenating several column values as a comma-separated string is a often encountered scenario. This method shows one way to do this using COALESCE function.
Rating
Generate sequence numbers within a group of values.
Total Hit (1460) This example shows how to generate sequence numbers within a group of values in a SELECT statement. With proper indexes & search conditions, the example using the SELECT statement with GROUP BY will be very efficient.
Rating
This is a link to a different site T-SQL Programming Part 3 - Processing Sequentially Through a Set of Records
Total Hit (930) At some point you will have some business logic that will require you to process sequentially through a set of records one record at a time. For example you may have a list of databases, and for each database you may want to build a command that will perform some process against each database. Or yo ....Read More
Rating
This is a link to a different site How do I script all the objects from all databases on a server and record changes
Total Hit (2238) This is for an uncontrolled environment where developers are allowed to change SPs without change control. I would suggest to run the procedure every night.
Rating
This is a link to a different site T-SQL Programming Part 2 - Building a T-SQL Loop
Total Hit (975) This is the second article in my T-SQL programming series. This article will discuss building a program loop using T-SQL. In addition to talking about building a loop, I will also discuss ways of controlling the loop processing, and different methods to break out of a loop. ....Read More
Rating
This is a link to a different site MSSQL Server 2000 Reporting Services: The Authoring Phase: Overview Part I
Total Hit (1021) Explore the steps of the Authoring Phase in MSSQL Server Reporting Services. MSAS Architect Bill Pearson leads a hands-on overview for developers, evaluators and "early converters" alike.
Rating
This is a link to a different site Introducing the SQL Server 'MDX in Analysis Services' Series
Total Hit (625) This is the first tutorial of a new series, MDX in Analysis Services, that I hope will help new users get up to speed quickly with multidimensional expressions (MDX). The series is designed to provide hands-on application of the fundamentals of MDX from the perspective of MS SQL Server 2000 Analysis ....Read More
Rating
This is a link to a different site DTS Global Variables and Visual Basic .Net
Total Hit (704) 1. In order to change the value of a DTS Global Variable of type String from VB.Net code, the variable must be programmatically removed from the collection and added back with its new value. 2. In order to change the value of a DTS Global Variable of type Date, the new value must be explictly cas ....Read More
Rating
This is a link to a different site SSIS Tips and Tricks from ssisblog.replicationanswers.com
Total Hit (3535)
Rating
This is a link to a different site xp_regex: Regular Expressions in SQL Server 2000
Total Hit (617) Regular Expressions are probably the best tool for text parsing. Using Regular Expressions GREATLY simplifies anything for which you would normally use CHARINDEX, PATINDEX, SUBSTRING, STUFF, REPLACE, etc.
Rating
This is a link to a different site An Introduction to SQL Server Clustering
Total Hit (533) If your mission-critical SQL Server should experience a motherboard failure, how long will it be down? One hour, four hours, a day, or longer? How much will this cost your business in lost sales or productivity? And perhaps even more important to you, what will it do to your stress level? ....Read More
Rating
This is a link to a different site Tutorial : Introduction To Global Variables
Total Hit (734) Global Variables allow you to make your DTS packages more flexible. Some of their uses include. 1. Storing Values passed around within a package. 2. Accepting values from outside the package to be used inside it. 3. Holding not only single values but multiple values in a recordset. ....Read More
Rating
This is a link to a different site MS SQL Server Distributed Partitioned Views
Total Hit (907) Don Schlichting explores the use of Distributed Partitioned Views for accessing multiple MS SQL Severs when configured as a Federated Database.
Rating
This is a link to a different site Does Reporting Services support horizontal tables (fixed rows and dynamic columns)?
Total Hit (859)
Rating
This is a link to a different site Choosing SQL Server 2000 Data Types
Total Hit (995) Choosing an appropriate data type is very important, because the errors made in a table design can result in large performance degradation. These problems often surface later, when a large amount of data is inserted. In this article, I want to tell you about built-in and user-defined data types, how ....Read More
Rating
This is a link to a different site An Overview of SQL Server "Yukon" for the Database Developer
Total Hit (1003) This document covers the SQL Server "Yukon" features of Microsoft® SQL Server™. The document provides an overview of new features for database administration as well as database availability and scalability.
Rating
This is a link to a different site Using DTS to Detect and Process a File
Total Hit (1072) There is nothing better than when a new technology lends itself to solving an old problem; well, there may be some things better, but this will have to do for now. One of the classic problems in computing -- classic being defined as a problem I have seen before -- is processing files that were uploa ....Read More
Rating
This is a link to a different site Textual Searches on File Data
Total Hit (1909) This chapter introduces the types of textual searches supported by SQL Server and illustrates the roles performed by both the IIS and Index Services technologies. It also introduces SQL Server distributed queries and describes their use in the processing of textual searches. It then addresses the qu ....Read More
Rating
This is a link to a different site SQLISAPI and XML Client-Side Processing (XML and SQL part 10)
Total Hit (922) Throughout the most recent articles of this series, we have been covering a range of new features introduced in SQLXML 2.0. We are continuing this trend by presenting the client-side XML processing.
Rating
This is a link to a different site Dealing with MS SQL Tables that contain Duplicate Rows
Total Hit (704) Every so often, you might have to deal with tables that contain duplicate rows. In one case, you might only need to identify the duplicate rows. In other cases, you might need to remove the duplicate rows. This article will show you some different techniques for dealing with duplicate rows. ....Read More
Rating


(Page 13 of 24) 708 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.