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

 

How to generate ids for each row - same as the identity column without using temporary tables?
Total Hit (1343)
Rating
How to calculate the statistical mode of a set of values using a SELECT statement?
Total Hit (2745)
Rating
Updating Derived Columns using Triggers
Total Hit (1643) 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 get monday date given any date? This will work with the default SQL Server DATEFIRST setting & similar logic can be used to determine SUNDAY date etc.
Total Hit (2532)
Rating
How to display COM error description in SQL Stored procedure ?
Total Hit (3401) 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
Rotate a Table in SQL Server
Total Hit (1657) 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
How to improve performance with pinned tables
Total Hit (2526) SQL Server experts know that the DB engine never accesses directly the data pages on disk; rather it uses a special module called "Cache Manager". It is possible, by using some T-SQL commands, to force the selected tables to stay in the buffer for a longer time. This technique increases the performa ....Read More
Rating
Null values in WHERE clauses
Total Hit (3161) 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
Maximum Value from 5 columns.
Total Hit (1414) This script shows how to obtain the maximum value of 5 columns. It is possible to do this using CASE statement but the expression gets quite lengthy. This shows an easy way to use the MAX function itself & this approach can be extended to as many columns as you want. ....Read More
Rating
How to use checksum in distributed queries.
Total Hit (1450) This script show how the CHECKSUM function can be used in distributed queries or any SELECT statement.
Rating
Passing a CSV or Array to a Stored Procedure
Total Hit (1884) This stored procedure takes two parameters @ARRAY and @SEPARATOR. It loops through the array variable and pulls out the values inside it. Right now the stored procedure just prints the values it finds. It's written so as to be easily customizable to do exactly what you need it to. Enjoy and happy pa ....Read More
Rating
Is stored procedure running ?
Total Hit (3024)
Rating
Advanced Lock Monitoring
Total Hit (2901) In order to assist continuous and effective monitoring of lock status, SQL Server offers the system stored procedure SP_LOCK, which can provide several useful pieces of information on how locks are set and removed. However, using this information - such as process ID, database ID, and object ID - ....Read More
Rating
Export data to word file
Total Hit (4198)
Rating
How to add/configure a new Linked server using T-SQL
Total Hit (8416) 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
File details using NT commands & undocumented SP.
Total Hit (2290) Getting file details is easy using the undocumented extended SP 'xp_getfiledetails'. But you can't rely on this to be the same between versions of SQL Server or even service packs. So here is an alternative method using the standard NT commands. The undocumented SP is also shown for completeness. ....Read More
Rating
Examples that show how to use the COLLATION features in SQL Server 2000.
Total Hit (11521)
Rating
This is a link to a different site Using Sets in MDX Queries
Total Hit (1435) This is the sixth 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 ("Analysis Services,"); our primary focus is the manipulation of multidimensional ....Read More
Rating
This is a link to a different site Business Intelligence with Microsoft SQL Server Reporting Services - Part 3
Total Hit (940) 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 How do I set up and configure SQL Mail?
Total Hit (1195) SQL Mail provides a way to send EMail from Micosoft SQL Server. The focus of this FAQ is configuration of SQL Mail. There are other ways to send Email from SQL Server. Links to articles about these alternatives to SQLMail are listed at the end of this FAQ. ....Read More
Rating
This is a link to a different site Backup/Restore or Move DTS package(s) using DTSBackup 2000
Total Hit (1676) This small application allows you backup DTS Packages by saving them to COM-structured storage files. This can be done for both server based packages and those stored in the repository.
Rating
This is a link to a different site MDX Essentials: Basic Set Functions: The EXCEPT() Function
Total Hit (775) This is the fifteenth article of the series, MDX Essentials. The series is designed to provide hands-on application of the fundamentals of the Multidimensional Expressions (MDX) language, with each tutorial progressively adding features designed to meet specific real-world needs. ....Read More
Rating
This is a link to a different site Types in Yukon: Managed UDTs Let You Extend the SQL Server Type System
Total Hit (1031) 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 (684) 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 Introduction to MSSQL Server 2000 Analysis Services: Using Calculated Cells in Analysis Services , Part II
Total Hit (1224) 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 Enhanced SQL Server Security Auditing
Total Hit (1373) Security audit in SQL server captures only successful and failed logins. It does not capture the application that uses the login. Login used by an application may have full read and write access on all of the tables and procedures but the application restricts the users by providing a front-end whic ....Read More
Rating
This is a link to a different site XML and SQL 2000 (Part 1)
Total Hit (1206) 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 (1126) 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 Connecting to an AS400 with DTS
Total Hit (565) DTS does not support AS400 connectivity natively, but by obtaining a third party ODBC or OLE-DB provider you can connect quite easily. In no particular order, some links for suppliers of such providers:
Rating
This is a link to a different site How to Decipher/Understand SSIS Error Code?
Total Hit (958) 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


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