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 3 of 24) 708 Result(s) found 

 

Minimum value from 4 variables - datetime example.
Total Hit (2068) This scripts shows how to obtain minimum value of four 4 datatime values contained in local variables. This method can be adapted to any datatye supported by the the SQL Server MIN function. This technique basically eliminates the writing of series of IF..ELSE or CASE statements. ....Read More
Rating
How to forcefully disconnect users from a DB? This script also contains some timing features so that it doesn't run forever.
Total Hit (3120)
Rating
How to delete entire folder using T-SQL with xp_CmdShell ?
Total Hit (5447)
Rating
SQL Server 2000 Full-Text Search Deployment White Paper
Total Hit (2512)
Rating
I can change the login audit levels in Enterprise Manager. But how can I do the same programmatically?
Total Hit (2866) To change the Audit levels, Enterprise Manager is calling an undocumented extended registry stored procedure that alters the registry entries. You can see that using Profiler. On a default instance of SQL Server 2000, the following commands can be used to control the audit levels. To audit bot ....Read More
Rating
Working with COM objects from within T-SQL
Total Hit (4620) This article includes - Introduction - General concepts - OLE Automation Stored Procedures «OL»«LI»sp_OACreate «LI»sp_OADestroy «LI»sp_OAGetProperty «LI»sp_OASetProperty «LI»sp_OAMethod «LI»sp_OAGetErrorInfo «LI»sp_OAStop«/OL» - Example: generate script - Literature ------ ....Read More
Rating
How to generate ids for each row - same as the identity column without using temporary tables?
Total Hit (1339)
Rating
Updating Derived Columns using Triggers
Total Hit (1640) INSTEAD OF triggers are also commonly used to UPDATE the base columns in calculated columns. For example, assume that a view exists called vwOrdersOrderDetailsProducts as shown here: «Code LangId=6» CREATE VIEW vwOrdersOrderDetailsProducts AS SELECT o.OrderID, o.OrderDate, ....Read More
Rating
How to display COM error description in SQL Stored procedure ?
Total Hit (3391) When we deal with COM object using sp_OAxxxx stored procedure sometimes you need exact error description to Identify the problem. Here is the solution for this type of problem. sp_displayoaerrorinfo stored procedure will display any error encountered while executing sp_OAxxxx stored procedure. ....Read More
Rating
Meta Data User-Defined Functions
Total Hit (2597) Introduction Meta Data UDFs COL_LENGTH2 COL_ID INDEX_ID INDEX_COL2 ROW_COUNT -------------------------------------------------------------------------------- Introduction I would like to write the series of articles about useful User-Defined Functions grouped by the following ....Read More
Rating
Rotate a Table in SQL Server
Total Hit (1654) This article describes how to rotate a SQL Server table. Suppose you have a table that is named QTRSALES. The table has the columns YEAR, QUARTER, and AMOUNT with the data in the following format (note that there is no row for the fourth quarter of 1996): Year Quarter Amount ------ ....Read More
Rating
Null values in WHERE clauses
Total Hit (3157) A SELECT query returns all the rows for which the WHERE clause returns True. However, many developer - especially those accustomed to other programming languages, such as VB - get confused on this point, and assume that the query returns the rows for which the WHERE clause returns any non-False valu ....Read More
Rating
How to use checksum in distributed queries.
Total Hit (1449) This script show how the CHECKSUM function can be used in distributed queries or any SELECT statement.
Rating
How to add/configure a new Linked server using T-SQL
Total Hit (8407) Here is the T-SQL script to add linked server using sp_addlinkedserver SP. Once you add linked server you can add login using sp_addlinkedsrvlogin. By default current login is mapped with linked server means remote machine must have exact same login with same password in order to get access to the l ....Read More
Rating
Is stored procedure running ?
Total Hit (3021)
Rating
Export data to word file
Total Hit (4190)
Rating
This is a link to a different site Types in Yukon: Managed UDTs Let You Extend the SQL Server Type System
Total Hit (1027) The next version of SQL Server, code-named "Yukon," will offer enhanced support for user-defined types (UDTs). Because UDTs can be managed by the CLR, you can represent a wide variety of data structures to create types not possible with previous versions of SQL Server. With UDTs you can more precise ....Read More
Rating
This is a link to a different site XPSMTP.DLL - SQL Server SMTP Mail XP
Total Hit (683) XPSMTP provides a SMTP based SQL Mail solution for sending MIME based email over SMTP, implemented as an Extended Stored Procedure. It does not require any software to be installed, just a SMTP email server that can handle the outgoing mail request. XPSMTP is using TCP/IP sockets to communicate ....Read More
Rating
This is a link to a different site Business Intelligence with Microsoft SQL Server Reporting Services - Part 3
Total Hit (936) Reporting Services exposes web methods via XML web services to facilitate cross platform reports management and delivery. It's a simple SOAP based API makes it very easy to add full functionality of reporting services in your application. It provides a set of rendering and viewing functions as well ....Read More
Rating
This is a link to a different site Introduction to MSSQL Server 2000 Analysis Services: Using Calculated Cells in Analysis Services , Part II
Total Hit (1221) This is the eighteenth article of the series, Introduction to MSSQL Server 2000 Analysis Services. As I stated in the first article, Creating Our First Cube, the primary focus of this series is an introduction to the practical creation and manipulation of multidimensional OLAP cubes. The series is d ....Read More
Rating
This is a link to a different site XML and SQL 2000 (Part 1)
Total Hit (1203) One of the most common problems with managing data is its versatility. This becomes evident when exchanging data between multiple data sources and results mainly from incompatibilities in data representation and format. The impact of this type of problem affects most companies internally, but is eve ....Read More
Rating
This is a link to a different site Cursors: An Overview
Total Hit (1125) We'll talk about the basics of cursors. These let you move through records one at a time and perform processing on each record.
Rating
This is a link to a different site How to generate flat file with Header and Footer record in SSIS
Total Hit (934) A common question with SSIS is how to handle adding headers and footers to a flat file when the format is different that the data rows. This gets more difficult when the header or footer needs to contain data based on the actual data rows, such as a total or a record count. ....Read More
Rating
This is a link to a different site How to Decipher/Understand SSIS Error Code?
Total Hit (956) If you have worked with SSIS, you may have been doing something like this, in case of errors, you saved the error code and the error column to a text file or some other media.
Rating
This is a link to a different site Introduction to Data Mining with SQL Server
Total Hit (2766) In order to fully comprehend, much less implement enhanced Decision Support Systems in an organization, it is necessary to understand the basic precepts behind the requirements, methodologies and business drive to obtain information. Information about an organization gathered from various sources an ....Read More
Rating
This is a link to a different site Replication and Microsoft SQL Server 2000
Total Hit (1925) Data Replication is a powerful feature of SQL Server. SQL Server 7.0 provided many improvements from previous versions, and SQL Server 2000 builds on those features and adds more to increase the reliability, ease of use, and management of replication. ....Read More
Rating
This is a link to a different site SQL Server Bulk Copy Optimization Tips
Total Hit (2032) If you're having trouble with bulk copy, check out these 14 tips from Alexander Chigrik.
Rating
This is a link to a different site MDX in Analysis Services: Retrieve Data from Multiple Cubes
Total Hit (875) This is the fourth tutorial article of the series, MDX in Analysis Services. The series is designed to provide hands-on application of the fundamentals of MDX from the perspective of MS SQL Server 2000 Analysis Services (to which I will refer in most cases as simply "Analysis Services," to save time ....Read More
Rating
This is a link to a different site Changing the DTS Send Mail Task
Total Hit (724) This is a simple example of using an ActiveX Script Task to dynamically change the main properties of a DTS Send Mail task. First set the message subject to the same name as the package. The body of the message is a combination of a static string and a global variable value. Finally we read the file ....Read More
Rating
This is a link to a different site Processing The Same Row More Than Once
Total Hit (757) In his SQL Server Magazine article of August 2002 Itzik Ben-Gan shows us how to use Transact SQL to normalise lab test results from a fictional wine maker using either functions in SQL Server 2000 or Transact SQL gymnastics in Version 7. In this article we're going to show you how to do the exact sa ....Read More
Rating


(Page 3 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.