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 

 

Search for combination of column values in different rows.
Total Hit (1577) One solution for searching for combination of column values in different rows. Please see the script for more details & example.
Rating
String User-Defined Functions
Total Hit (2625) Introduction String UDFs StrIns StrDel StrSeparate StrCHARINDEX StrREPLACE StrREVERSE «B»Introduction«/B» I would like to write the series of articles about useful User-Defined Functions grouped by the following categories: ==>Date and Time User-Defined Functions ==>Mat ....Read More
Rating
Viewing information about blocked processes is slightly uncomfortable process in SQL Server. Here are three SPs that make it a little easier.
Total Hit (2792)
Rating
How to count the number of lines in an external OS file? Will work for ASCII files only.
Total Hit (3286)
Rating
Working with Computed column in SQL Server 2000
Total Hit (1542) There are restriction for ALTER COLUMN, documented in Books Online (see end of this post). Depending on your particular situation, you need to DROP INDEX, ALTER TABLE... DROP CONSTRAINT etc. The altered column cannot be: a) A column with a text, image, ntext, or timestamp data type. ....Read More
Rating
Selective Defrag/Reindex and Log
Total Hit (3120) SQL 2000 Only This script will create a stored procedure and a table in the master database. Simply run the stored procedure and supply a database name as a parameter. It will do the following: 1. Gather/Log DBCC SHOWCONTIG statistics (pre defrag) 2. Defragment all user indexes in the dat ....Read More
Rating
Display every Nth record.
Total Hit (1491)
Rating
How to strip a text field into several varchar fields?
Total Hit (1390)
Rating
How to add time values formatted as hh:mm & display as hh:mm?
Total Hit (1454)
Rating
How to find start/end date of Previous Quarter
Total Hit (3345) «code LangId=6»declare @PrevQtrDate datetime declare @PrevQtrStartDate datetime,@PrevQtrEndDate datetime declare @ReportDate datetime set @ReportDate=getdate() set @PrevQtrDate=dateadd(q,-1,@ReportDate) Print @PrevQtrDate set @PrevQtrStartDate=cast(month(@PrevQtrDate) as varchar(10)) + ' ....Read More
Rating
Understanding the TOP WITH TIES clause in SELECT queries
Total Hit (3033) The SELECT TOP N query always return exactly N records, and arbitrarily drops any record that have the same value as the last record in the group. To see what this means in practice, execute the following query against the Pubs database in SQL Server 7.0: «Code LangId=6» SELECT TOP 5 price, titl ....Read More
Rating
How to calculate the statistical mode of a set of values using a SELECT statement?
Total Hit (2742)
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 (2528)
Rating
How to improve performance with pinned tables
Total Hit (2524) 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
Maximum Value from 5 columns.
Total Hit (1411) 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
Passing a CSV or Array to a Stored Procedure
Total Hit (1882) 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
Advanced Lock Monitoring
Total Hit (2895) 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
This is a link to a different site Backup/Restore or Move DTS package(s) using DTSBackup 2000
Total Hit (1673) 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 Enhanced SQL Server Security Auditing
Total Hit (1372) 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 MDX Essentials: Basic Set Functions: The EXCEPT() Function
Total Hit (773) 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 Connecting to an AS400 with DTS
Total Hit (563) 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 Introduction to SQL : Sample chapter from Beginning SQL Programming
Total Hit (694) This introductory chapter covers topics that students usually ask in the first hour of classes; essentially, just what do we mean by SQL? We start by explaining what SQL is and also what it is not, and we provide a brief overview of the history of the language. We'll also clarify some confusing term ....Read More
Rating
This is a link to a different site MDX Essentials: Structure of the MDX Data Model
Total Hit (653) This is the second article of the series, MDX Essentials. The primary focus of this series will be an introduction to the MDX language. The series is designed to provide hands-on application of the fundamentals of the Multidimensional Expressions (MDX) language, with each tutorial progressively addi ....Read More
Rating
This is a link to a different site Overview of .NET Programming Features in SQL Server "Yukon" Beta 1
Total Hit (947) This document covers the .NET common language runtime features of Microsoft® SQL Server™. The document explains basic methods and practices for implementing databased oriented objects, as well as how to use .NET Framework objects within the SQL Server context. ....Read More
Rating
This is a link to a different site SQL Server 2000 DTS Part 10 - DTS Designer Tasks - The Data Driven Query Task
Total Hit (2042) In the arsenal of DTS Designer Tasks, the one that leads in terms of versatility (and complexity) is the Data Driven Query Task. Its most distinctive feature, distancing it from other tasks, is its ability to not only handle inserts of rows during transformation, but also process any other T-SQL sta ....Read More
Rating
This is a link to a different site Converting a DTS Package from Visual Basic 6.0 to Visual Basic .Net
Total Hit (614) This document discusses issues encountered converting a simple SQL Server 2000 DTS Package, saved as Visual Basic 6.0 code, to Visual Basic .Net code. Assumes "Option Strict Off".
Rating
This is a link to a different site How can I script my SQL Server databases from Visual Basic?
Total Hit (924) You can use SQLDMO (SQL Distributed Management Objects) in VB to script a SQL Server database. There is a VB example included on the SQL 2000 install CD. If you installed the SQL Server developer tools, you should be able to find the sample code in... ....Read More
Rating
This is a link to a different site SQL Server Full Text Search Optimization
Total Hit (1703) Full text indexing is a great feature that solves a long running database problem, the searching of textual data columns for specific words and phrases in SQL Server databases.
Rating
This is a link to a different site Linking SQL Server to Heterogeneous Systems
Total Hit (1972) The ability to link SQL Server to heterogeneous systems such as Oracle, DB2, Sybase, etc., is imminent. This article provides the basic and most important information required to make a linked server connection to heterogeneous systems from SQL Server. We are going to deal with three different RBBMS ....Read More
Rating
This is a link to a different site Programming Conditional Split
Total Hit (3476)
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.