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 19 of 24) 708 Result(s) found 

 

Sample for how to send progress info from long running sps.
Total Hit (1838) Some sample code that shows how to return progress info from long running SPs. This is useful for reporting purposes or to include other mechanisms to control the SP execution.
Rating
How to determine the table from which a trigger was fired in the trigger itself? This technique can be used to write a common SP that can use the table name identified thus.
Total Hit (2090)
Rating
T-SQL code to log messages to a text file on the server, from your stored procedures and SQL scripts
Total Hit (3046) 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
Date and Time User-Defined Functions
Total Hit (3844) Introduction Date and Time UDFs DatePart TimePart GetWorkingDays AddWorkingDays FirstMonthDay LastMonthDay -------------------------------------------------------------------------------- Introduction I would like to write the series of articles about useful User-Defined Fu ....Read More
Rating
Some Useful Undocumented SQL Server 7.0 and 2000 DBCC Commands
Total Hit (3017) 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
How to rollup data in a table? There are several ways to do this, here is one way. I think there might be a more efficient way but I haven't worked on it yet.
Total Hit (1415)
Rating
Extract records by their record number
Total Hit (2928) SQL Server, and the SQL language in general, doesn't support record numbers, so you can't extract a set of records if you know their position in the resultset. This missing capability would be extremely convenient when displaying pages of data in an ASP program. For example, if each page contains 10 ....Read More
Rating
The fastest way to delete all the rows in a table
Total Hit (2814) The standard way to delete all the rows in a SQL Server table is a DELETE statement without a WHERE clause: «Code LangId=6» DELETE FROM MyTable «/Code» However, in most cases you can speed up your code remarkably with the TRUNCATE TABLE command: «Code LangId=6» TRUNCATE TABLE MyTable «/Code ....Read More
Rating
How to transpose columns as rows? This script also demonstrates how to use the CUBE operator.
Total Hit (1533)
Rating
Deleting Duplicate Records
Total Hit (2177) May of us have faced duplicate records issue in SQL Server Table. First, I'll need some duplicates to work with. I use following script to create a table called dup_authors in the pubs database. «Code LangId=6» -- If the table exists, drop it use pubs go If exists (select * from INFORMATION_SC ....Read More
Rating
Export data to excel file
Total Hit (10975)
Rating
Run Script for each user
Total Hit (2813)
Rating
Stored procedure to Send SMTP mail from SQL SERVER 2000 (Email Body max 8000 chars)
Total Hit (32165) This stored procedure can be used to send an email from sql server stored proc. <b>Features :</b> <UL><LI>SQL Mail is not required in order to send emails <LI>You can specify your own smtp server name <LI>Attach multiple files <LI>Text or HTML email <LI>To/from/cc/bcc/subject</UL> <b>Limit ....Read More
Rating
This is a link to a different site XML in Yukon: New Version Showcases Native XML Type and Advanced Data Handling
Total Hit (1688) The next version of Microsoft SQL Server, code-named "Yukon," represents quite a few steps forward in the evolution of XML integration. Yukon supports native storage of XML data using the XML data type, which makes it possible to run native queries on XML data using the emerging industry standard XQ ....Read More
Rating
This is a link to a different site Failover Clustering
Total Hit (746) Continuous uptime in a production environment, whether it is a database powering a mission-critical client/server application or an e-commerce Web site, is becoming a common businesses requirement. This chapter describes Microsoft® SQL Server™ 2000 failover clustering, one method of creating high av ....Read More
Rating
This is a link to a different site Examining SQL Server's I/O Statistics
Total Hit (820) Reading and writing to the disk is the heart of what any database management system does, SQL Server included. Input/Output (I/O) performance can make or break an application. This article discusses the diagnostic tools that can be used to examine SQL Server's I/O statistics so that you can make fac ....Read More
Rating
This is a link to a different site Using and Building Query Analyzer Templates
Total Hit (703) The Query Analyzer (QA) in SQL Server 2000 is greatly enhanced over the QA in SQL Server 7.0. One of the enhancements, QA templates, can increase your productivity in developing code. QA comes with over fifty canned templates that you can use. Although these templates are useful as they are insta ....Read More
Rating
This is a link to a different site SQL Server and Collation
Total Hit (504) Collation refers to a set of rules that determine how data is sorted and compared. Character data is sorted using rules that define the correct character sequence, with options for specifying case-sensitivity, accent marks, kana character types and character width. ....Read More
Rating
This is a link to a different site How to loop through a global variable Rowset
Total Hit (840) The Execute SQL Task for SQL Server 2000 allows both input and parameters to be specified. In this article we will be focusing on the Rowset output parameter functionality, and what we can then do with the Recordset it returns. The Rowset parameter takes the result set of a SELECT statement and stor ....Read More
Rating
This is a link to a different site How do I use the new table variables in SQL Server 2000?
Total Hit (694) Table variables did not work for me until I started using an alias for the table variable when I had to qualify column names of a table variable.
Rating
This is a link to a different site How to check the file date
Total Hit (603) This sample script was written to check the age of a file. If you import files according to a schedule, you may wish to check that the file is recent to prevent the potential re-import of an old file. The script reads the filename from an existing package connection and uses the scripting FileSystem ....Read More
Rating
This is a link to a different site Overview of Native XML Web Services for Microsoft SQL Server 2005
Total Hit (1085) Get an overview of how to set up and use XML Web Services using SOAP/HTTP inside SQL Server 2005 (formerly known as "Yukon"). Illustrative examples are included. To get the most from this paper, you should have a basic understanding of Web service technologies including HTTP, SOAP, and WSDL. ....Read More
Rating
This is a link to a different site How can I center images (stored in database) without stretching them to fill the table cell?
Total Hit (887)
Rating
This is a link to a different site Programatically create a package to loop through Excel files and load to database
Total Hit (1547)
Rating
This is a link to a different site using NT Authentication to login into SQL
Total Hit (1115) This is for using NT authentication (NT users already setup in the Domain) So you need to get the correct spelling of each user in User Manager for Domains. Then it will get the user from NT when they log in and bingo they have permissions to the SQL server database too. ....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 How to Do SQL Server Performance Trend Analysis Part 1: Using Performance Monitor to Log Data
Total Hit (897) In this four-part tutorial, you will learn how to use NT Server 4.0's Performance Monitor and Microsoft Excel to monitor and analyze SQL Server performance. You will also learn how to use a SQL Server database to store your Performance Monitor logs. This tutorial assumes that you already know the ba ....Read More
Rating
This is a link to a different site XML for Analysis (XMLA) Specification
Total Hit (970) Specifies a SOAP-based XML communication API that supports the exchange of analytical data between clients and servers on any platform and with any language.
Rating
This is a link to a different site Working with SQL Server Date/Time Variables: Part Four - Date Math and Universal Time
Total Hit (2032) This article will be the last in my data/time series, and will discuss the last few date functions I have yet to cover in this series. I will discuss how to use the DATEDIFF and DATEADD functions to perform different date related mathematical calculations. I will also talk about what universal time ....Read More
Rating
This is a link to a different site Comparing Oracle 10g and SQL Server Yukon
Total Hit (1221) The purpose of the following technical paper from WisdomForce is to provide a feature comparison between MSSQL 2005 (Yukon) and Oracle 10g. The document compares VLDB/OLTP related features and discuss issues with performance, utilities and replication. It discusses several new features, which we ....Read More
Rating


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