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 2 of 2) 51 Result(s) found 

 

How to delete entire folder using T-SQL with xp_CmdShell ?
Total Hit (5449)
Rating
How to display COM error description in SQL Stored procedure ?
Total Hit (3394) 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
How to drop all temp tables created by current connection.
Total Hit (7330) Few days ago I came up with one problem. I was tesing a script in query analyzer. This script was using several temp tables so every time I run this script I had to make sure that all temp tables are dropped before I run the script otherwise it will give bunch of errors. So I decided to write a proc ....Read More
Rating
Stored procedure to set/reset columns's identity property
Total Hit (3390) You can use ALTER TABLE statement to add/remove column and to change some attributes of a column but there are some limitations with ALTER TABLE statement. You can not use ALTER TABLE to set a column as an identity column (Auto Increment field). You can ADD a new column with IDENTITY property but ca ....Read More
Rating
sp_CrossTab : Stored Procedure to create cross tab output in SQL Server
Total Hit (12696) We know that SQL Server does not have TRANSFORM function or similar functionality which you have in MS Access but here is the stored procedure to make your life easy. «code LangId=6»Use master go drop proc sp_CrossTab go CREATE PROC sp_CrossTab @table AS sysname, -- Table to crosstab @onrow ....Read More
Rating
Estimate the table size (Data + Index) for a given # of rows
Total Hit (2409) Ever tried to estimate the table total size which include data and index in calculation ? Believe me its not easy job to estimate the size of a table for a give # of rows. Here is the kool SP which does it for you. Full credit goes to Sharon Dooley for his excellent Job. «code LangId=6»if exis ....Read More
Rating
Stored procedure to Send SMTP mail from SQL SERVER 2000 (With very long email text, multiple attachments support)
Total Hit (9860) This article will show you how to use CDOSYS library (Provided with most of windows versions including win 2000, xp, 2003) to send mails from sql server. I have created a COM component so you can send emails with long body text. «code LangId=6»use master go /* Copyright © 2005 Nayan ....Read More
Rating
How to create dynamic query without loosing performance.
Total Hit (1656) We all know that in sql server you can use exec or execute statement to execute dynamic sql statement which can be on the fly but the biggest drawback of executing dynamic query using execute is query plan is not chached by sql server and so you get poor performance if you hitting many tables and se ....Read More
Rating
Serverside Paging using dynamic T-SQL
Total Hit (2027) This stored Procedure can page records for any specified query. «code LangId=6» SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO /* Description: Page a query. Query can have order by clause or it can pass separate orderby parameter Examples: ========================= [1] Defau ....Read More
Rating
Useful Stored Proc to get Foreign Key Information of any DB for any table(s)
Total Hit (2461) «code LangId=6»Create proc spFKInfo @TableName varchar(100)='%', @DBName varchar(100)='Northwind' as declare @sql varchar(max) set @sql=' SELECT RELATION= FK.TABLE_SCHEMA + ''.'' + FK.TABLE_NAME + ''.'' + CU.COLUMN_NAME + '' -> '' + PK.TABLE_SCHEMA + ''.'' + PK.TABLE_NAME + ''. ....Read More
Rating
generate script for Stored procs, Search for string with in stored proc(s) code, count line of stored proc(s)
Total Hit (2880) The following script will search for all stored proc and user defined function for specific substring. So if you looking for which proc is using "CREATE INDEX" code you can easily pinpoint that using this code. It will list size of all tables or table with specific name (use wildcard) It will co ....Read More
Rating
This is a link to a different site xp_regex: Regular Expressions in SQL Server 2000
Total Hit (617) Regular Expressions are probably the best tool for text parsing. Using Regular Expressions GREATLY simplifies anything for which you would normally use CHARINDEX, PATINDEX, SUBSTRING, STUFF, REPLACE, etc.
Rating
This is a link to a different site Implementing CRUD Operations Using Stored Procedures: Part 2
Total Hit (547) In database terms, CRUD stands for the four essential database operations: Create, Read, Update and Delete. To create a high performance system, these four operations should be implemented by stored procedures, each procedure implementing one of the four operations. This is the second in a two part ....Read More
Rating
This is a link to a different site Implementing CRUD Operations Using Stored Procedures: Part 1
Total Hit (757) That's the American Heritage dictionary definition but not the database definition. When you are working with databases, CRUD is an acronym for the four essential database operations: Create, Read, Update, and Delete.
Rating
This is a link to a different site SQL Server Stored Procedures Administration
Total Hit (604) A stored procedure is a precompiled collection of Transact-SQL statements stored under a name and processed as a unit that you can call from within another Transact-SQL statement or from the client applications.
Rating
This is a link to a different site Minimizing SQL Server Stored Procedure Recompiles
Total Hit (699) This article discusses the reasons that SQL Server 2000 decides to recompile a stored procedure and demonstrates techniques that can be used to minimize recompilation. If your system makes extensive use of stored procedures, minimizing recompilation can give you a nice boost in performance. ....Read More
Rating
This is a link to a different site Identifying Stored Procedure Recompilation Problems in SQL Server 2000
Total Hit (703) Around 1980 when relational databases and I were both young, I was told that the time to parse the SQL statement and create the search plan took about 50 percent of the time required to execute a SQL query. Most of this was consumed by CPU time for parsing and plan creation. The other 50 percent was ....Read More
Rating
This is a link to a different site XPSMTP.DLL - SQL Server SMTP Mail XP
Total Hit (683) 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 Implementing Error Handling with Stored Procedures
Total Hit (630) This is one of two articles about error handling in SQL Server. This article gives you recommendations for how you should implement error handling when you write stored procedures, including when you call them from ADO.
Rating
This is a link to a different site The Curse and Blessings of Dynamic SQL
Total Hit (761) In this article I will discuss the of use dynamic SQL in stored procedures in MS SQL Server, and I will show that this is a powerful feature that you should use with care.
Rating
This is a link to a different site How to share data between stored procedures
Total Hit (700) Questions you often see in newsgroups about MS SQL Server are: How can I use the result set from one stored procedure in another or How can I use the result set from a stored procedure in a SELECT statement?
Rating


(Page 2 of 2) 51 Result(s) found  1 2

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.