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 

 

Get xp_CmdShell output without creating temporary table.
Total Hit (2719) This sample query will get only file names on C:\ .
Rating
search and replace substring
Total Hit (2955)
Rating
How to find tablesize and estimated rows for all tables
Total Hit (2711) Since there is no easy way using Enterprise Manager to know size and rows for all tables you need to write your own query. Run the following Query to see the result «code LangId=6»USE Northwind Go SELECT a.Name , SUM(b.RowCnt) EstRowCount , SUM(b.Used) * 8 TableSize_KB , (SU ....Read More
Rating
Building SSIS Packages Programmatically (Part 1 to Part 9)
Total Hit (4588) This tutorial series will show you how to use SSIS Object Model to buil packages programatically in C# (or VB.net) <a target=_blank href='http://www.ssisbi.com/2009/01/14/building-ssis-packages-programmatically-part-1/'>http://www.ssisbi.com/2009/01/14/building-ssis-packages-programmatically-part ....Read More
Rating
How to load validate and load XML file into sql server database using VBScript
Total Hit (5924) <b>Step-1: Create table in which you want to load XML file</b> «code LangId=6»create database MyDB go USE MyDB go CREATE TABLE Customer ( CustomerId INT PRIMARY KEY, CompanyName NVARCHAR(20), City NVARCHAR(20)) go --After insert run this select * from Customer«/code» <b>Step- ....Read More
Rating
How to determine the product of values in a column?
Total Hit (1808)
Rating
SAVE TRAN and Save Points.
Total Hit (2534) 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
Grouping Problem: How to get single record from group with minimum value of one field?
Total Hit (2604) Assume that you have multiple record of customer transactions but you only want one record for each customer with minimum transaction date field... How would you do it ???? Please check the following query «code LangId=6»create table #tmp(cust_code varchar(10),cdate datetime,amount money) ....Read More
Rating
Some Useful Undocumented SQL Server 7.0 and 2000 DBCC Commands
Total Hit (2895) In this article, I want to tell you about some useful undocumented DBCC commands, and how you can use these commands in SQL Server 7.0 and 2000 for administering and monitoring. DBCC is an abbreviation for Database Console Command. DBCC commands are generally used to check the physical and logica ....Read More
Rating
Get data from MS Access database using single statement.
Total Hit (2079)
Rating
Generate sequencial number for your resultset.
Total Hit (1391)
Rating
Stored procedure to Send SMTP mail from SQL SERVER 2000 (With very long email text, multiple attachments support)
Total Hit (9875) This article will show you how to use CDOSYS library (Provided with most of windows versions including win 2000, xp, 2003) to send mails from sql server. I have created a COM component so you can send emails with long body text. «code LangId=6»use master go /* Copyright © 2005 Nayan ....Read More
Rating
Displaying RTF formatted text in SQL 2005 Reporting services
Total Hit (43993) 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 (1550) Demonstrates the application of the CUBE operator for SELECT statement.
Rating
This is a link to a different site Choosing SQL Server 2000 Data Types
Total Hit (998) 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 MDX Sets
Total Hit (1390) In this chapter, you’ll learn MDX query terminology and how to «LI»Use the MDX Sample application to enter queries. «LI»Use set functions. «LI»Create sets by using member constants. «LI»Create calculated members that aggregate sets of values. ....Read More
Rating
This is a link to a different site Importing and Exporting Data with SQL Server
Total Hit (1274) Transferring data, whether into or out of a database, can be a complex process. SQL Server provides several tools that help you in a variety of situations, including the Bulk Copy Program, the Select statement, the Transfer Manager, and Query results. This chapter examines those options, and times w ....Read More
Rating
This is a link to a different site Attaching and Detaching Databases on SQL Server
Total Hit (929) If you need to move a database, or database file to another server or disk, and you do not want to backup the database, copy the backup on another server, and then re-create the database from the backup, you can use the sp_detach_db and sp_attach_db system stored procedures to detach the database an ....Read More
Rating
This is a link to a different site Using DTS to Detect and Process a File
Total Hit (1074) 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 An Overview of SQL Server "Yukon" for the Database Developer
Total Hit (1005) 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 Textual Searches on File Data
Total Hit (1912) 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 Backup Table Data in SQL Server 7.0 and 2000
Total Hit (1985) With SQL Server 6.5, Microsoft gave us an opportunity to do a backup (DUMP Table) of the tables. However, after 6.5, with both 7.0 and 2000, that feature has been removed for some reason. Here is a stored procedure that I wrote which gives similar functionality for backing up table data. This is ver ....Read More
Rating
This is a link to a different site DTS How to...use and return global variables from the Execute SQL or DataPump Task
Total Hit (1029) For those fortunate enough to have SQL 2000, using and returning global variables with an Execute SQL Task, or using them as part of source statement in the DataPump task is now a standard feature. For those still using SQL Server 7.0 this tedious process, but here are some examples of how it can be ....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 SQL Server 2000 DTS Part 9 - DTS Designer Tasks
Total Hit (1906) The last installment of this series discussed the basic principles and applications of the Transform Data task. This article continues, focusing on its more advanced features.
Rating
This is a link to a different site Dealing with MS SQL Tables that contain Duplicate Rows
Total Hit (705) 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
This is a link to a different site Where can I find more DTS information and samples?
Total Hit (2146)
Rating
This is a link to a different site T-SQL Programming Part 3 - Processing Sequentially Through a Set of Records
Total Hit (932) 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 Deleting an Excel WorkSheet from within a package
Total Hit (1896) Here is a simple and quick way of deleting a worksheet in an Excel spreadsheet. It uses two global variables, one for the Excel file name and one for the sheet to delete. As this uses OLE automation of the Excel application object, you will need Excel installed on any machine that this package execu ....Read More
Rating
This is a link to a different site Dynamic order by
Total Hit (903) You can use CASE statement in order by clause to select field by which you want to order the resultset. This is very handy technique.
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.