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

 

How to create audit triggers?
Total Hit (2304) This article will show you the most easiest way to audit your data changes for a specific table in sql server. I will show you, how to use <Code>DBCC INPUTBUFFER</Code> command to capture some valuable audit information when update/insert/delete occurs. Step-By-Step Example - Run the follow ....Read More
Rating
How to find all tables with/without Primary Key from a specified Database
Total Hit (3693) Primary Key is important constraint to maintain integrrity and speed. Here is the query if you want to find all tables without Primary key. <u><b>Note: Please change Northwind with your DB name.</b></u> <b>All tables without primary key from Northwind Database</b> «code LangId=6»Select * from ....Read More
Rating
How to capture DBCC output into SQL Table?
Total Hit (1685)
Rating
How to open hyperlink in a new window in Reporting Services Report (RS with SP1 or higher)
Total Hit (39368) Reporting Services gives you several ways to navigate within your report or navigating to external item (i.e. Navigating to other reports or any web URL). You can use a feature called "Jump to URL". Use the following steps to set "Jump to URL" <b>Method-1</b> - Drag a datafield on the report ....Read More
Rating
Scripts to automatically get notified if a database grew due to the autogrowth option being turned on.
Total Hit (2881)
Rating
How to read remote registry using SQL Server.
Total Hit (3200) To run this code you have to download reg.exe file which can be downloaded from
Rating
Correct installation of Server service on Windows NT4 for SQL
Total Hit (2683) It is especially important to correctly set Windows NT4's Server service in "Application Server" mode to ensure that the Server service doesn't absorb all the available hardware resources while providing network services for file management. As its name suggests, when in "Application Server" mode, r ....Read More
Rating
The fastest way to retrieve number of records in a table. This is an alternative of the standard "select count(*)...".
Total Hit (3293) To get the total row count in a table, we usually use the following select statement: «Code LangId=6» SELECT count(*) FROM table_name «/Code» This query performs full table scan to get the row count. You can check it by setting SET SHOWPLAN ON for SQL Server 6.5 or SET SHOWPLAN_TEXT ON for SQL ....Read More
Rating
How not to handle NOT IN queries when there are NULL values?
Total Hit (2423)
Rating
This is a simple routine that shows how to combine several binary values into a single image value. This is similar to string concatenation & this example just adds the bytes together as a stream.
Total Hit (2270)
Rating
This example solves the elements listing problem.
Total Hit (1651)
Rating
Flight Schedule Ordering problem.
Total Hit (1692) A flight schedule ordering problem. This demonstrates the powerful derived table feature. More details regarding the problem is in the link.
Rating
send NET SEND messages to all the connected SQL Server users in an NT Local Arean Network
Total Hit (4185) This stored procedure accepts a message as an input parameter and sends that message to all the currently logged in SQL Server users using NET SEND.
Rating
Avoid Auto Close and Auto Shrink.
Total Hit (3030) I was on-site with a client, whose had a server which performing very sluggishly. It was a beefy brute with heaps of memory and processing power, so clearly something was just not what it should have been. For me step 1 in doing any sort of trouble-shooting is to look at the logs. Yup, always a ....Read More
Rating
Send fax from SQL Server using Microsoft Word
Total Hit (9833) This article explains how you can create a Microsoft Word document from T-SQL and fax it through a method exposed by its Automation object model. You can create and destroy OLE Automation object using the sp_OACreate and sp_OADestroy, whereas you can use the sp_OAMethod to invoke a method, and t ....Read More
Rating
Index Optimization Tips
Total Hit (2960) «B»General concepts«/B» In this article, I want to show how you can improve the speed of your queries by choosing the proper indexes, what kinds of indexes MS SQL supports and what is the advantage and disadvantage of using indexes in particular situation. There are clustered and nonclustere ....Read More
Rating
Generic logic to search & replace characters in a string.
Total Hit (1511) A generic logic to search & replace certain characters in a string. This approach is flexible in the sense that new characters can be added for searching without modifying the logic. This will make the code more maintainable too.
Rating
This is a link to a different site Getting Syntax Help for DTSRun
Total Hit (579) If you are having problems with the syntax for the dtsrun command line, or just want an easy way of generating a valid command line first time, try using the dtsrunui utility. As the name indicates it is very similar to dtsrun, but with a user interface. This allows you to easily select your package ....Read More
Rating
This is a link to a different site SQL Server Notification Services Performance Tuning Tips
Total Hit (994)
Rating
This is a link to a different site SQL Reporting Services Tree Navigation Sample using a Web Service API
Total Hit (1267) When you start thinking about integrating Reporting Services into an application, one question that might arise is how to display a list of available reports to a user. Although Reporting Services allows a user to browse through reports on the report server (see the figure below), chances are you wi ....Read More
Rating
This is a link to a different site Get More Out of SQL Server Reporting Services Charts
Total Hit (4141) This white paper presents general information, best practices, and tips for designing charts within Microsoft SQL Server Reporting Services reports. It provides an overview of some Reporting Services features, answers common chart design and feature questions, and includes advanced examples of how t ....Read More
Rating
This is a link to a different site SQL Server 2000 Administration in 15 Minutes a Week: Enterprise Manager Introduction
Total Hit (938) Welcome to the fourth article in my series SQL Server Administration in 15 Minutes a Week. Up to this point the series has focused on options, requirements, and the installation process. This week we will start working with the tools provided with SQL Server 2000. The topics for this article include ....Read More
Rating
This is a link to a different site Using Lock Escalation to Improve Update Query Performance
Total Hit (1946) Lock escalation is the process of converting many fine-grain locks into fewer coarse-grain locks, reducing system overhead.
Rating
This is a link to a different site SQL Server 2000 DTS Part 6 - DTS Designer Tasks and Package Workflow
Total Hit (2080) As we indicated in our previous article, we are going to continue discussing various ways of utilizing global variables in DTS Designer tasks. In particular, we will look into their role in exchanging data between packages, using features built into the Execute Package task. As part of this discussi ....Read More
Rating
This is a link to a different site SQL Server 2000 DTS Part 2 - Creating DTS Packages using Wizards
Total Hit (2032) As we explained in the first article of this series, there are three methods of creating DTS packages - with DTS Designer graphical interface, with programming by directly using the DTS object model, or with wizards available from the SQL Server Enterprise Manager interface. We will focus here on th ....Read More
Rating
This is a link to a different site Padding, Rounding, Truncating and Removing Trailing Zeroes
Total Hit (621) In this article, I am going to show you a number of tips for displaying numeric fields as strings. I will show you how to pad zeroes on the left side of numeric numbers, so that each number regardless of the size will be the same length. Also along those same lines below you will find out how to pad ....Read More
Rating
This is a link to a different site Global Variables and SQL statements in DTS
Total Hit (776) For those fortunate enough to have SQL 2000, using global variables with an Execute SQL Task, or as part of the 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 done. Even if you ar ....Read More
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
This is a link to a different site T-SQL Programming Part 1 - Defining Variables, and IF...ELSE logic
Total Hit (513) This is the first of a series of articles discussing various aspects of T-SQL programming. Whether you are building a stored procedure or writing a small Query Analyzer script you will need to know the basics of T-SQL programming. This first article will discuss defining variables, and using the IF. ....Read More
Rating
This is a link to a different site Using Partitions in a SQL Server 2000 Data Warehouse
Total Hit (1629) This chapter discusses the role of partitioning data in the data warehouse. The relational data warehouse and Microsoft® SQL Server™ 2000 Analysis Services cubes both support the partitioning of data. The logical concept behind partitioning is the same in both engines of SQL Server: to horizontally ....Read More
Rating


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