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 (1647)
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 (702)
» 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 1 of 24) 702 Result(s) found 

Some Useful Undocumented SQL Server 7.0 and 2000 DBCC Commands
Total Hit (628) 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
How to determine the product of values in a column?
Total Hit (387)
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 (479)
Rating
Sample for how to send progress info from long running sps.
Total Hit (453) 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
Another pivot table example
Total Hit (1093)
Rating
Getting the second recent date from a set of values.
Total Hit (461) 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
UDF in CHECK & DEFAULT CONSTRAINTS.
Total Hit (522) 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
Read current sql server error log.
Total Hit (679) This procedure reads the current SQL Error Log. Optionally it can read any log (or text file) specified by @LogFilename
Rating
How can I use Transact-SQL to programmatically determine the number of processors that my SQL Server computer has?
Total Hit (434)
Rating
How to install MSDE
Total Hit (1365) To install MSDE first extract files to a folder e.g. c:\sql2ksp3 then run folloing command on command prompt c:\>cd sql2ksp3 You can specify installation option either in command line itself or specify in setup.ini «b»[1] Specifying parameters in command line«/b» For example the following ....Read More
Rating
Get more than 40 Date/Time formats with SQL Server using Convert function
Total Hit (2300) You can use convert function to format your datetime the only thing you need to to know is format type which is a integer number. This sample output will help you to find your format id quickly.
Rating
How to find tablesize and estimated rows for all tables
Total Hit (1240) Since there is no easy way using Enterprise Manager to know size and rows for all tables you need to write your own query. Run the following Query to see the result «code LangId=6»USE Northwind Go SELECT a.Name , SUM(b.RowCnt) EstRowCount , SUM(b.Used) * 8 TableSize_KB , (SU ....Read More
Rating
This is a link to a different site Importing and Exporting Data with SQL Server
Total Hit (357) Transferring data, whether into or out of a database, can be a complex process. SQL Server provides several tools that help you in a variety of situations, including the Bulk Copy Program, the Select statement, the Transfer Manager, and Query results. This chapter examines those options, and times w ....Read More
Rating
This is a link to a different site Import all files in a directory using DTS (Multi Pkg)
Total Hit (719) This example shows how you can use two DTS packages to control the import of all files in a given directory. For this, it is assumed that all files have the same format, and that all files are imported into the same table.
Rating
This is a link to a different site Dynamic ORDER BY Statements in Stored Procedures
Total Hit (196) When creating data-driven Web applications, it is ideal to place the actual SQL statements into stored procedures, and to have the Web pages, then, call the appropriate stored procedures rather than executing the SQL statements themselves. (If you are unfamiliar with what stored procedures are, or t ....Read More
Rating
This is a link to a different site Where can I find more DTS information and samples?
Total Hit (693)
Rating
This is a link to a different site SQL Server 2000 DTS Part 9 - DTS Designer Tasks
Total Hit (534) The last installment of this series discussed the basic principles and applications of the Transform Data task. This article continues, focusing on its more advanced features.
Rating
This is a link to a different site T-SQL Programming Part 3 - Processing Sequentially Through a Set of Records
Total Hit (328) At some point you will have some business logic that will require you to process sequentially through a set of records one record at a time. For example you may have a list of databases, and for each database you may want to build a command that will perform some process against each database. Or yo ....Read More
Rating
This is a link to a different site Implementing CRUD Operations Using Stored Procedures: Part 1
Total Hit (327) 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 SQLISAPI and XML Client-Side Processing (XML and SQL part 10)
Total Hit (197) Throughout the most recent articles of this series, we have been covering a range of new features introduced in SQLXML 2.0. We are continuing this trend by presenting the client-side XML processing.
Rating
This is a link to a different site Dealing with MS SQL Tables that contain Duplicate Rows
Total Hit (183) Every so often, you might have to deal with tables that contain duplicate rows. In one case, you might only need to identify the duplicate rows. In other cases, you might need to remove the duplicate rows. This article will show you some different techniques for dealing with duplicate rows. ....Read More
Rating
This is a link to a different site Backup Table Data in SQL Server 7.0 and 2000
Total Hit (601) With SQL Server 6.5, Microsoft gave us an opportunity to do a backup (DUMP Table) of the tables. However, after 6.5, with both 7.0 and 2000, that feature has been removed for some reason. Here is a stored procedure that I wrote which gives similar functionality for backing up table data. This is ver ....Read More
Rating
This is a link to a different site Nightly Failed Jobs Report
Total Hit (443) Do you get tired of reviewing each SQL Agent notification nightly to determine which SQL Agent jobs failed? Are there a significant number of SQL Agent job notifications that it takes a while to review each? Here is an alternative that allows you to have a single email report of all job failures. ....Read More
Rating
This is a link to a different site OLAP and Data Warehousing - Data in Jail
Total Hit (645) Please find below the follow-up to the first part in my OLAP and Data Warehousing (The Problem and Solution) series, a series dedicated to the discussion of OLAP and Data Warehousing technologies. A lack of world economic stabilization over the last few years has resulted in a growth of competit ....Read More
Rating
This is a link to a different site DTS How to...use and return global variables from the Execute SQL or DataPump Task
Total Hit (238) For those fortunate enough to have SQL 2000, using and returning global variables with an Execute SQL Task, or using them as part of source statement in the DataPump task is now a standard feature. For those still using SQL Server 7.0 this tedious process, but here are some examples of how it can be ....Read More
Rating
This is a link to a different site Deleting an Excel WorkSheet from within a package
Total Hit (527) Here is a simple and quick way of deleting a worksheet in an Excel spreadsheet. It uses two global variables, one for the Excel file name and one for the sheet to delete. As this uses OLE automation of the Excel application object, you will need Excel installed on any machine that this package execu ....Read More
Rating
This is a link to a different site Make the Execute Package Task name dependent only
Total Hit (136) By default the Execute Package Task will use the PackageID (GUID) to load and execute a package. The PackageID is assigned when you save a new package. A simple illustration of this is to open a package and then use Save As, giving the package a new name. If you where to replace the target or child ....Read More
Rating
This is a link to a different site How to loop through a global variable Rowset
Total Hit (173) 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 Introduction to Relational Databases - Part 1: Theoretical Foundation
Total Hit (528) Good introduction on general database theory and design. Lots of terminology (Entity, Attibute, Normalization ...) defined, explained and...best of all...DEMONSTRATED!
Rating
This is a link to a different site Exporting SQL Data as XML
Total Hit (1531) In my last article, Importing XML into SQL Server 2000, we looked at various techniques to import the XML data into SQL Server. To complement that, this article will focus on some of the methods that you can use to export relational SQL data to the XML format. More specifically, we'll explore th ....Read More
Rating


(Page 1 of 24) 702 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 UsPrivacy PolicyTerms & Conditions

© 2008 BinaryWorld LLC. All rights reserved.