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 112 of 133) 3985 Result(s) found 

 

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
Scalar Function Example.
Total Hit (2537) This sample shows several ways to call a scalar function in T-SQL.
Rating
Analyze Trace File data using T-SQL.
Total Hit (2571) Demonstrates the new system function fn_trace_gettable to read a capture trace file & analyze it using SQL.
Rating
How to perform case-sensitive ordering on case-insensitive servers?
Total Hit (3607) This script demonstrates the COLLATION capabilities in SQL Server 2000.
Rating
How to use the CHECKSUM function to find orphan rows & duplicates?
Total Hit (3142)
Rating
Get SQL Server Details ( Edition , License ... etc ).
Total Hit (2907) How to obtain details about the server using the new SERVERPROPERTY system function? «code LangId=6»SELECT CAST( SERVERPROPERTY( 'MachineName' ) AS varchar( 30 ) ) AS MachineName , CAST( SERVERPROPERTY( 'InstanceName' ) AS varchar( 30 ) ) AS Instance , CAST( SERVERPROPERTY( 'P ....Read More
Rating
Examples that show how to use the COLLATION features in SQL Server 2000.
Total Hit (11526)
Rating
How to get the data, tools & SQL path when there are several instances on the same server?
Total Hit (3420) The system SP used in this script is undocumented & needs to be used with care.
Rating
UDF in CHECK & DEFAULT CONSTRAINTS.
Total Hit (3272) User-defined functions in SQL2000 provide a powerful way to reuse code / logic. This example shows how you can use UDFs in CHECK & DEFAULT constraints of a table.
Rating
How to perform case-sensitive searches on a case-insensitive server/table/column?
Total Hit (2725) This shows some of the cool, powerful techniques of SQL2000 viz. COLLATION, BINARY_CHECKSUM functions.
Rating
SQL Server Lock ( NOLOCK and ROWLOCK )
Total Hit (12559) Relational databases, like Microsoft's SQL Server, use locks to prevent multiple users from making conflicting modifications to a set of data. When a set of data is locked by a user, no other users can modify that same set of data until the first user finishes modifying the data and relinquishes the ....Read More
Rating
Handling database file growth
Total Hit (2747) Scripts to automatically get notified if a database grew due to the autogrowth option being turned on.
Rating
How to reset Identity of Autonumber column?
Total Hit (4877) There are two ways to reset identity field 1) Use TRUNCATE TABLE <mytable> rather than DELETE. This is a non-logged operation, however, and may not be what you need. 2) Use the DBCC CHECKIDENT command to reseed your identity value: DBCC CHECKIDENT('mytable', RESEED, 0) -- next row inserted ....Read More
Rating
generate INSERT statements from existing data.
Total Hit (3201) This procedure generates INSERT statements using existing data from the given tables and views. Later, you can use these INSERT statements to generate the data. It's very useful when you have to ship or package a database application. This procedure also comes in handy when you have to send sample d ....Read More
Rating
Find out the nth highest number in a column.
Total Hit (2646) Ever wondered how to find out the second highest salary from the employees table? Or how to find out the third oldest employee in the company? Here is a stored procedure which accepts the table name, column name, and nth number and displays the nth highest number from the given column. ....Read More
Rating
Getting the second recent date from a set of values.
Total Hit (1815) ANSI & T-SQL specific solutions for getting the 2nd recent date from a set of values. This can be extended to answer nth date from a set of values but the ANSI version gets unwieldy & has to be modified for bigger values.
Rating
Search for combination of column values in different rows.
Total Hit (1579) One solution for searching for combination of column values in different rows. Please see the script for more details & example.
Rating
How to generate combinations of values in SQL Server?
Total Hit (1552) Demonstrates the application of the CUBE operator for SELECT statement.
Rating
Strip dirty characters from a numeric string.
Total Hit (1736) A technique to search & remove dirty characters from a numeric string. This problem shows how you can simplify the solution by looking at only what is needed.
Rating
An aggregation problem in a topic, seminars & registration scenario.
Total Hit (2539)
Rating
Finding average of top 3 scores for each player.
Total Hit (2338) Solution for determining the top 3 scores for each player in a game. This script demonstrates several SQL techniques both ANSI & T-SQL specific.
Rating
Case-sensitive replace for strings on case-insensitive server.
Total Hit (1642) A sample script that demonstrates how to perform case-sensitive search & replace on a case-sensitive server. This script demonstrates some of the least known features of the T-SQL string functions.
Rating
Storing date & time values separately.
Total Hit (1670) This example shows how date & time values can be stored separately using the SQL data types.
Rating
How to form effective date only search condition.
Total Hit (1548) This script shows a technique to perform effective date searches especially when searching on an indexed column.
Rating
How to get NT Accounts from DOMAIN.
Total Hit (3585) Get NT account names of the server or domain using NT commands from T-SQL.
Rating
Generate combinations of data from 2 tables & match against a combinations table.
Total Hit (1481) Demonstrates some powerful derived table & ANSI join features. The script shows how to generate combinations of values from 2 tables & match them against a third table.
Rating
This example solves the elements listing problem.
Total Hit (1653)
Rating
Moving Average Example #1.
Total Hit (2309) This example shows how to solve the Moving Average problem using a correlated query.
Rating
Stripping Email Address from a text or character value.
Total Hit (1594) This simple example shows a powerful way to manipulate values in text columns. This one can be used to determine the email address from a suitably formatted text value.
Rating
How to check for the existence of a database on a server?
Total Hit (1434)
Rating


(Page 112 of 133) 3985 Result(s) found  ... 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 ...

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.