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 (1841) 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 change owner of DTS Package
Total Hit (2749) Here is an example to change ownership of a DTS Package of SQL Server. You can use undocumented stored procedure msdb.dbo.sp_reassign_dtspackageowner to change ownership. This stored proc requires 3 parameters. First parameter is @name which is name of package. Second parameter is @id which unique I ....Read More
Rating
Get all databse objected created between specified daterange
Total Hit (2865)
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 (2091)
Rating
How to implement nested transactions
Total Hit (4238) SQL Server allows you to nest transactions. Basically, this feature means that a new transaction can start even though the previous one is not complete. Transact-SQL allows you to nest transaction operations by issuing nested BEGIN TRAN commands. The @@TRANCOUNT automatic variable can be queried to ....Read More
Rating
T-SQL code to log messages to a text file on the server, from your stored procedures and SQL scripts
Total Hit (3051) 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
Getting the second recent date from a set of values.
Total Hit (1814) 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
Script - Update Blank Values of Group until Next group starts
Total Hit (2643) Recently I came across simple scenario where I had to update some blank values of certain records. Here is what i mean Assume you have two columns. You want to update Order# column with same order number until next group starts (e.g. ID 2,3 update with Order# => 1000). ID Order# 1 1000 2 ....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 (2883) 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 Import all files in a directory using DTS (Multi Pkg)
Total Hit (2240) 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 Migrating Logins from One SQL Server to Another
Total Hit (1089) As part of the normal work, a Database Administrator (DBA) will be required to migrate databases between servers. One of the reasons for a migration might be that you are moving an application from a quality assurance (QA) environment to a production environment. Another reason might be your current ....Read More
Rating
This is a link to a different site Dealing with a SQL Server Cluster Failover
Total Hit (541) I had just gotten out of a short meeting and went to my desk to see what important e-mail messages I might had missed. In my inbox was a series of messages sent from ELM Enterprise Manager 3.0, the software we use to monitor our SQL Server event logs. The message had arrived about 30 minutes earlier ....Read More
Rating
This is a link to a different site SQL Server and Collation
Total Hit (505) 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 (843) 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 Implementing CRUD Operations Using Stored Procedures: Part 1
Total Hit (759) 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 (898) 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 Introduction to MSSQL Server 2000 Analysis Services: Reporting Options for Analysis Services Cubes: ProClarity Part II
Total Hit (1110) Discover yet another option for effectively reporting from MSSQL Server Analysis Services cubes. Author and MSAS Consultant Bill Pearson revisits practical reporting solutions with an Introduction to ProClarity for Analysis Services.
Rating
This is a link to a different site MDX Essentials: Basic Set Functions: The Union() Function
Total Hit (746) This is the thirteenth article of the series, MDX Essentials. The series is designed to provide hands-on application of the fundamentals of the Multidimensional Expressions (MDX) language, with each tutorial progressively adding features designed to meet specific real-world needs. ....Read More
Rating
This is a link to a different site Make the Execute Package Task name dependent only
Total Hit (756) 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 XML for Analysis (XMLA) Specification
Total Hit (972) 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 (2033) 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 Backup and Recovery
Total Hit (2630) You should back up your databases and transaction logs on a regular basis. In case of system problems, you can restore the backed up files and return to work more quickly than if you had neglected to back up your database. Additionally, every time Microsoft SQL Server starts, recovery is performed o ....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
This is a link to a different site MDX Member Functions: The Cousin () Function
Total Hit (680) This is the seventh article of the series, MDX Essentials. The primary focus of this series is an introduction to MDX. The series is designed to provide hands-on application of the fundamentals of the Multidimensional Expressions (MDX) language, with each tutorial progressively adding features desig ....Read More
Rating
This is a link to a different site Data Warehousing for Cavemen
Total Hit (2017) This document is intended to make you buzzword-compliant with the MIS world. In terms simple enough even for an MIT computer science Ph.D. to understand, I'm going to explain OLTP, data warehousing, and OLAP. Kiss that ghetto post-doc goodbye and watch big companies line up to pay you $300/hour to r ....Read More
Rating
This is a link to a different site How Do I Develop a Backup and Restore Strategy?
Total Hit (1036) One of the most critical aspects of administering SQL Server is the Backup and Restore or Disaster Recovery strategy. Frequent questions in this forum indicate a general lack of knowledge and planning for backup and restore operations.
Rating
This is a link to a different site MDX in Analysis Services: Measuring Change over Time
Total Hit (773) This is the fifth 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 ("Analysis Services,"); our primary focus is the manipulation of multidimensional ....Read More
Rating
This is a link to a different site Using SQL Server Cursors
Total Hit (937) In this article, I want to tell you how to create and use server side cursors and how you can optimize a cursor performance. Cursor is a database object used by applications to manipulate data in a set on a row-by-row basis, instead of the typical SQL commands that operate on all the rows in t ....Read More
Rating
This is a link to a different site The comparison of SQL Server 2000 with Oracle 9i
Total Hit (930) Often people in newsgroups ask about some comparison of Oracle and Microsoft SQL Server. In this article, I compare SQL Server 2000 with Oracle 9i Database regarding price, performance, platforms supported, SQL dialects and products limits.
Rating
This is a link to a different site XML, T-SQL, and the CLR Create a New World of Database Programming
Total Hit (976) The next version of SQL Server, code-named "Yukon," includes quite a few enhancements and expanded language support. For example, Transact-SQL now conforms more closely to the ANSI-99 SQL specification and makes querying more flexible and expressive. Yukon can execute user-defined functions, stored ....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.