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 )

Meta Data User-Defined Functions
Total Hit (2604) 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
IsSqlServerDatabasePresent - Checking whether a SQL Server database is present
Total Hit (2395)
Rating
RestoreDatabase - Restoring a SQL Server database
Total Hit (2684)
Rating
SetCommandsTransaction - Assign a transaction to the DataAdapter's commands
Total Hit (2890)
Rating
UpdateDataAdapter - Update a data source through a DataAdapter
Total Hit (2091)
Rating
Displaying random data from SQL table
Total Hit (2791) Following query will display any 5 random rows from Products table of Northwind database NewId() function genereates New GUID.......Try this code it works fine «Code LangId=6» select top 5 * from products order by NewId() «/Code»
Rating
The fastest way to retrieve number of records in a table. This is an alternative of the standard "select count(*)...".
Total Hit (3299) To get the total row count in a table, we usually use the following select statement: «Code LangId=6» SELECT count(*) FROM table_name «/Code» This query performs full table scan to get the row count. You can check it by setting SET SHOWPLAN ON for SQL Server 6.5 or SET SHOWPLAN_TEXT ON for SQL ....Read More
Rating
Retrive record count of all tables in the database . This is the fastest way to get record count.
Total Hit (3179) Because SELECT COUNT(*) statement make a full table scan to return the total table's row count, it can take very many time for the large table. There is another way to determine the total row count in a table. You can use sysindexes system table, in this case. There is ROWS column in the sysin ....Read More
Rating
Copy text or image into or out of SQL Server
Total Hit (7354) In this article, I want to show, how you can copy a single text or image value into or out of SQL Server by using the textcopy.exe utility. You can find this utility in the directory containing the standard SQL Server EXE files (C:\Mssql\Binn for SQL Server 6.5, by default and C:\Mssql7\Binn for SQL ....Read More
Rating
Export data to excel file
Total Hit (10981)
Rating
Export data to word file
Total Hit (4198)
Rating
Generate Insert Statements
Total Hit (7856)
Rating
Defragment of Indexes
Total Hit (2812)
Rating
Rebuild All Indexes
Total Hit (2734)
Rating
Check integrity of all tables
Total Hit (2784)
Rating
Run Script for each user
Total Hit (2816)
Rating
Advanced lock monitor stored procedure
Total Hit (2894)
Rating
search and replace substring
Total Hit (2954)
Rating
Change Object Owner
Total Hit (3400) This is very handy stored procedure which I use all time to change object owner. Many times you create object as a different user other than "dbo" and things start breaking. I use this sp to change owner off all objects to "dbo". «code LangId=6»/* This stored procedure can be used to run through ....Read More
Rating
Get all objects created before a specified date
Total Hit (2871)
Rating
Get table size and number of records for all tables in the specified database
Total Hit (2968) «code LangId=6»/* This stored procedure can be used to get the size of all users tables in the particular database with the number of their rows. You should simply pass the database name, as in the example below (if the database name was not specified, the current database will be used): EXEC ....Read More
Rating
Get all databse objected created between specified daterange
Total Hit (2863)
Rating
generate script for all stored procedures for the given database.
Total Hit (15432)
Rating
Some Useful Undocumented SQL Server 7.0 and 2000 DBCC Commands
Total Hit (2894) In this article, I want to tell you about some useful undocumented DBCC commands, and how you can use these commands in SQL Server 7.0 and 2000 for administering and monitoring. DBCC is an abbreviation for Database Console Command. DBCC commands are generally used to check the physical and logica ....Read More
Rating
Working with COM objects from within T-SQL
Total Hit (4626) 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
OLE Automation in SQL server
Total Hit (3568) This is an example of a Transact-SQL statement batch that uses the OLE Automation stored procedures to create and use an SQL-DMO SQLServer object. Portions of the code are used as examples in the stored procedure references. DECLARE @object int DECLARE @hr int DECLARE @property varchar(255) DE ....Read More
Rating
Index Optimization Tips
Total Hit (2968) «B»General concepts«/B» In this article, I want to show how you can improve the speed of your queries by choosing the proper indexes, what kinds of indexes MS SQL supports and what is the advantage and disadvantage of using indexes in particular situation. There are clustered and nonclustere ....Read More
Rating
Useful undocumented extended stored procedures
Total Hit (3143) An extended stored procedure (xp) is a dynamic link library that runs directly in the address space of SQL Server and is programmed using the SQL Server Open Data Services API. You can run extended stored procedures from the Query Analyzer, for example, just as you would normal stored procedures. Ex ....Read More
Rating
SQL Server 2000 useful undocumented stored procedures
Total Hit (3900) In this article, I want to tell you about some useful undocumented stored procedures shipped with SQL Server 2000. «B»sp_MSget_qualified_name«/B» The sp_MSget_qualified_name stored procedure is used to get the qualified name for the given object id. Syntax sp_MSget_qualified_name objec ....Read More
Rating
Some Useful Undocumented SQL Server 7.0 and 2000 DBCC Commands
Total Hit (3020) Introduction Undocumented DBCC commands: DBCC BUFFER DBCC BYTES DBCC DBINFO DBCC DBTABLE DBCC DES DBCC HELP DBCC IND DBCC LOG DBCC PAGE DBCC PROCBUF DBCC PRTIPAGE DBCC PSS DBCC RESOURCE DBCC TAB Literature -------------------------------------------------------- ....Read More
Rating


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