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

Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )

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 (2535) 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 (3606) This script demonstrates the COLLATION capabilities in SQL Server 2000.
Rating
How to use the CHECKSUM function to find orphan rows & duplicates?
Total Hit (3141)
Rating
Get SQL Server Details ( Edition , License ... etc ).
Total Hit (2904) 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 (11519)
Rating
How to get the data, tools & SQL path when there are several instances on the same server?
Total Hit (3418) The system SP used in this script is undocumented & needs to be used with care.
Rating
UDF in CHECK & DEFAULT CONSTRAINTS.
Total Hit (3268) 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 (2722) This shows some of the cool, powerful techniques of SQL2000 viz. COLLATION, BINARY_CHECKSUM functions.
Rating
Load string to byte array with very simple way without any API.
Total Hit (2224)
Rating
SQL Server Lock ( NOLOCK and ROWLOCK )
Total Hit (12551) 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 (2743) 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 (4874) 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 (3199) 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 (2641) 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
send NET SEND messages to all the connected SQL Server users in an NT Local Arean Network
Total Hit (4187) This stored procedure accepts a message as an input parameter and sends that message to all the currently logged in SQL Server users using NET SEND.
Rating
How to transfer database diagrams to a different database?
Total Hit (2656) Database diagrams are stored in the 'dtproperties' table within the database. So, database diagrams can be transferred to a different database, by transferring the contents of this table. For example , run the following query to transfer the diagram named 'MyTableDesign' from 'pubs' database to ' ....Read More
Rating
Send E-Mail Without Using SQL Mail in SQL Server.
Total Hit (2853)
Rating
How to concatenate the values of a column in all rows into one row?
Total Hit (2013) A limitation to be aware of is that varchar can go upto a max size of 8000 characters. If your data occupies more space, the output will be truncated.
Rating
I can change the login audit levels in Enterprise Manager. But how can I do the same programmatically?
Total Hit (2872) 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
How to search all columns of all tables in a database for a keyword?
Total Hit (3513) While browsing the SQL Server newsgroups, every once in a while, I see a request for a script that can search all the columns of all the tables in a given database for a specific keyword. I never took such posts seriously. But then recently, one of my network administrators was troubleshooting a pro ....Read More
Rating
Code to find out the statement that caused the trigger to fire!
Total Hit (1816) Sometimes you may want to find out what exact statement that updated your table. Or you may want to find out how the WHERE clause of the DELETE statement (Executed by someone) looked like. DBCC INPUTBUFFER can provide you with this kind of information. You can create a trigger on your table, tha ....Read More
Rating
Procedure to import SQL Server error log into a table (SQL 2000)
Total Hit (3276) This procedure reads the SQL Server error log using sp_readerrorlog and imports the error log's contents into a specified table. It accepts three parameters: @log_name is the name of the table into which the error log will be imported @log_number is the error log number, 0 is default and refers ....Read More
Rating
Stored procedure to generate a simple or complex random password
Total Hit (3045) This procedure generates random passwords using RAND() function. It can be configured to generate a simple or a complex password. You can also customize the length of the password generated. Complex passwords will include upper and lower case letters, numbers and special characters. See the code to ....Read More
Rating
T-SQL code to log messages to a text file on the server, from your stored procedures and SQL scripts
Total Hit (3051) This stored procedure accepts a message, filename, overwrite mode as an input parameters and logs that message to the specified file on the server
Rating
How to read value from remote registry ?
Total Hit (3589) This article explains how to use a Visual Basic application to access the registry on a remote computer in conjunction with the Windows application programming interface (API). «B»Requirements«/B» You need the following hardware and software to perform the procedures in this article: A Micro ....Read More
Rating
How to check file size of all databases on the server.
Total Hit (2694)
Rating
How to check Remote Registry using registry api in VB?
Total Hit (2211)
Rating
How to get record count of all tables in database?
Total Hit (1451)
Rating


(Page 91 of 133) 3968 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 ...

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

© 2008 BinaryWorld LLC. All rights reserved.