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

 

How to count the number of lines in an external OS file? Will work for ASCII files only.
Total Hit (3284)
Rating
Working with Computed column in SQL Server 2000
Total Hit (1541) There are restriction for ALTER COLUMN, documented in Books Online (see end of this post). Depending on your particular situation, you need to DROP INDEX, ALTER TABLE... DROP CONSTRAINT etc. The altered column cannot be: a) A column with a text, image, ntext, or timestamp data type. ....Read More
Rating
How to delete entire folder using T-SQL with xp_CmdShell ?
Total Hit (5449)
Rating
Selective Defrag/Reindex and Log
Total Hit (3117) SQL 2000 Only This script will create a stored procedure and a table in the master database. Simply run the stored procedure and supply a database name as a parameter. It will do the following: 1. Gather/Log DBCC SHOWCONTIG statistics (pre defrag) 2. Defragment all user indexes in the dat ....Read More
Rating
String User-Defined Functions
Total Hit (2623) Introduction String UDFs StrIns StrDel StrSeparate StrCHARINDEX StrREPLACE StrREVERSE «B»Introduction«/B» I would like to write the series of articles about useful User-Defined Functions grouped by the following categories: ==>Date and Time User-Defined Functions ==>Mat ....Read More
Rating
Viewing information about blocked processes is slightly uncomfortable process in SQL Server. Here are three SPs that make it a little easier.
Total Hit (2791)
Rating
How to forcefully disconnect users from a DB? This script also contains some timing features so that it doesn't run forever.
Total Hit (3121)
Rating
Meta Data User-Defined Functions
Total Hit (2599) 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
How to strip a text field into several varchar fields?
Total Hit (1388)
Rating
SQL Server 2000 Full-Text Search Deployment White Paper
Total Hit (2514)
Rating
How to add time values formatted as hh:mm & display as hh:mm?
Total Hit (1454)
Rating
I can change the login audit levels in Enterprise Manager. But how can I do the same programmatically?
Total Hit (2869) 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 find start/end date of Previous Quarter
Total Hit (3344) «code LangId=6»declare @PrevQtrDate datetime declare @PrevQtrStartDate datetime,@PrevQtrEndDate datetime declare @ReportDate datetime set @ReportDate=getdate() set @PrevQtrDate=dateadd(q,-1,@ReportDate) Print @PrevQtrDate set @PrevQtrStartDate=cast(month(@PrevQtrDate) as varchar(10)) + ' ....Read More
Rating
Understanding the TOP WITH TIES clause in SELECT queries
Total Hit (3031) The SELECT TOP N query always return exactly N records, and arbitrarily drops any record that have the same value as the last record in the group. To see what this means in practice, execute the following query against the Pubs database in SQL Server 7.0: «Code LangId=6» SELECT TOP 5 price, titl ....Read More
Rating
Working with COM objects from within T-SQL
Total Hit (4621) 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
This is a link to a different site MDX in Analysis Services: Retrieve Data from Multiple Cubes
Total Hit (875) This is the fourth tutorial article of the series, MDX in Analysis Services. The series is designed to provide hands-on application of the fundamentals of MDX from the perspective of MS SQL Server 2000 Analysis Services (to which I will refer in most cases as simply "Analysis Services," to save time ....Read More
Rating
This is a link to a different site Changing the DTS Send Mail Task
Total Hit (724) This is a simple example of using an ActiveX Script Task to dynamically change the main properties of a DTS Send Mail task. First set the message subject to the same name as the package. The body of the message is a combination of a static string and a global variable value. Finally we read the file ....Read More
Rating
This is a link to a different site Processing The Same Row More Than Once
Total Hit (757) In his SQL Server Magazine article of August 2002 Itzik Ben-Gan shows us how to use Transact SQL to normalise lab test results from a fictional wine maker using either functions in SQL Server 2000 or Transact SQL gymnastics in Version 7. In this article we're going to show you how to do the exact sa ....Read More
Rating
This is a link to a different site Introduction to SQL : Sample chapter from Beginning SQL Programming
Total Hit (693) This introductory chapter covers topics that students usually ask in the first hour of classes; essentially, just what do we mean by SQL? We start by explaining what SQL is and also what it is not, and we provide a brief overview of the history of the language. We'll also clarify some confusing term ....Read More
Rating
This is a link to a different site MDX Essentials: Structure of the MDX Data Model
Total Hit (652) This is the second article of the series, MDX Essentials. The primary focus of this series will be an introduction to the MDX language. The series is designed to provide hands-on application of the fundamentals of the Multidimensional Expressions (MDX) language, with each tutorial progressively addi ....Read More
Rating
This is a link to a different site How to generate flat file with Header and Footer record in SSIS
Total Hit (935) A common question with SSIS is how to handle adding headers and footers to a flat file when the format is different that the data rows. This gets more difficult when the header or footer needs to contain data based on the actual data rows, such as a total or a record count. ....Read More
Rating
This is a link to a different site SQL Server Bulk Copy Optimization Tips
Total Hit (2033) If you're having trouble with bulk copy, check out these 14 tips from Alexander Chigrik.
Rating
This is a link to a different site Linking SQL Server to Heterogeneous Systems
Total Hit (1971) The ability to link SQL Server to heterogeneous systems such as Oracle, DB2, Sybase, etc., is imminent. This article provides the basic and most important information required to make a linked server connection to heterogeneous systems from SQL Server. We are going to deal with three different RBBMS ....Read More
Rating
This is a link to a different site Programming Conditional Split
Total Hit (3473)
Rating
This is a link to a different site SQL Server 2000 DTS Part 10 - DTS Designer Tasks - The Data Driven Query Task
Total Hit (2042) In the arsenal of DTS Designer Tasks, the one that leads in terms of versatility (and complexity) is the Data Driven Query Task. Its most distinctive feature, distancing it from other tasks, is its ability to not only handle inserts of rows during transformation, but also process any other T-SQL sta ....Read More
Rating
This is a link to a different site Converting a DTS Package from Visual Basic 6.0 to Visual Basic .Net
Total Hit (614) This document discusses issues encountered converting a simple SQL Server 2000 DTS Package, saved as Visual Basic 6.0 code, to Visual Basic .Net code. Assumes "Option Strict Off".
Rating
This is a link to a different site Introduction to Data Mining with SQL Server
Total Hit (2766) In order to fully comprehend, much less implement enhanced Decision Support Systems in an organization, it is necessary to understand the basic precepts behind the requirements, methodologies and business drive to obtain information. Information about an organization gathered from various sources an ....Read More
Rating
This is a link to a different site How can I script my SQL Server databases from Visual Basic?
Total Hit (921) You can use SQLDMO (SQL Distributed Management Objects) in VB to script a SQL Server database. There is a VB example included on the SQL 2000 install CD. If you installed the SQL Server developer tools, you should be able to find the sample code in... ....Read More
Rating
This is a link to a different site SQL Server Full Text Search Optimization
Total Hit (1701) Full text indexing is a great feature that solves a long running database problem, the searching of textual data columns for specific words and phrases in SQL Server databases.
Rating
This is a link to a different site Replication and Microsoft SQL Server 2000
Total Hit (1926) Data Replication is a powerful feature of SQL Server. SQL Server 7.0 provided many improvements from previous versions, and SQL Server 2000 builds on those features and adds more to increase the reliability, ease of use, and management of replication. ....Read More
Rating


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