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

 

How to return Error Description using Error Code in SQL Server 2000 ( DBCC OUTPUTBUFFER technique )
Total Hit (5674) This code will show you how to grab error description in sql server 2000/2005 Originally Published on <a href='http://pjondevelopment.50webs.com/articles/retrieveErrorMessage.htm'>http://pjondevelopment.50webs.com/articles/retrieveErrorMessage.htm</a> «code LangId=6»CREATE PROCEDURE dbo.spGET_ ....Read More
Rating
Update SQL Server database with Updategrams
Total Hit (2632) You can use XML to transfer both data and commands. In this column I'll show how you can update a database by means of XML commands sent over the HTTP protocol and, even more interesting, how to perform bulk uploads with these commands. An updategram is a piece of XML data that contains informati ....Read More
Rating
OLE Automation in SQL server
Total Hit (3560) This is an example of a Transact-SQL statement batch that uses the OLE Automation stored procedures to create and use an SQL-DMO SQLServer object. Portions of the code are used as examples in the stored procedure references. DECLARE @object int DECLARE @hr int DECLARE @property varchar(255) DE ....Read More
Rating
Checking for Changes within trigger
Total Hit (2026) The UPDATE and COLUMNS_UPDATED functions are available within both types of triggers to allow the trigger to determine which columns were modified by the triggering action statement. For example, the following trigger prevents any modifications to the lastname column in the Employees table. Here, th ....Read More
Rating
Scalar Function Example.
Total Hit (2529) This sample shows several ways to call a scalar function in T-SQL.
Rating
How to find version and Service Pack applied on the SQL Server 2000/7.0/6.5
Total Hit (2605) Sometimes you need to find out which service pack version you are running on SQL Server. First, run this command in ISQL/W or Query Analyzer: SELECT @@Version Once you have the version number, then match it to the list below to find which SQL Server service pack you are using. 2000.8.00.76 ....Read More
Rating
How to export table or Query output to a file using BCP
Total Hit (2813) To export Query result to a file use following command to your command prompt «code LangId=6»EXEC master..xp_cmdshell 'bcp "select * from pubs..authors" queryout c:\authors.txt -c -Usa -Pmypassword'«/code» To export table to a file use following command to your command prompt «code LangId ....Read More
Rating
Quickly copy records between tables with same structure
Total Hit (2946) The SQL language offers a simple and effective way to quickly move all records from a table to another table with same field structure, that is same fields' name, type and position: «Code LangId=6» INSERT Customers SELECT * FROM New_Customers -- you can optionally complete the move by -- delet ....Read More
Rating
Check a string for numeric digits only
Total Hit (1804) The ISNUMERIC function in SQL60/65/70 checks for decimal & integer values. Hence characters like D, E are valid float representations & similarly ','. This is a simple logic that can check only for numeric digits without using a loop of any kind.
Rating
Number of days between a given date & 3rd sunday of current month.
Total Hit (1436) This T-SQL script shows how to calculate the number of days between a given date and the 3rd sunday of the current month. This can be easily modified to accomodate count till 3rd saturday or 3rd monday of current month & so on.
Rating
How to start SQL Server Agent automatically when SQL Server starts.
Total Hit (3520) When you install SQL Server by default SQL Server Agent Service is set to Start Manual mode and some times this can stop your scheduled jobs. Its also possible that you stop Agent and forget to turn it on. This article will show you how to create a SP which can start SQL Server Agent service if i ....Read More
Rating
How to restore a SQL Server database marked as "suspect"
Total Hit (10662) At times a database appears to be marked as "suspect" in the Enterprise Manager. SQL Server marks a database as suspect with it can't access the database. What happens at a low level is that SQL Server sets one of the bits in the status field in the sysdatabases table. In general, this problem ha ....Read More
Rating
How to get identity kind of values for each row in a query? This technique demonstrates how to use CROSS JOIN, sub-query for counting & does not use temporary tables.
Total Hit (2378)
Rating
Horizontal and Vertical Partitioning in Replication
Total Hit (1771)
Rating
GROUP BY and UNION may return unsorted resultsets
Total Hit (3159) In SQL Server 6.5 and previous versions, the GROUP BY clause in a SELECT statement was carried out by temporarily sorting the resultset before grouping similar rows, therefore the end result was always sorted. For this reasons, many programmers omitted the ORDER BY clause, because the result was sor ....Read More
Rating
Sorting only based on the numeric digits in a column containing alpha-numeric values of the form nnnXXX.
Total Hit (1841) An example for using a CASE expression in an ORDER BY clause. This solution solves the problem of sorting based on the numeric values in a column. The column contains strings of the format 'nnnXXXX' where 'n' represents a numeric digit & 'X' represents any non-numeric character. ....Read More
Rating
This is a link to a different site A Server by Any Other Name
Total Hit (750) It is imperative to change the server name when infrastructure policy changes, naming convention standard changes or making a standby server the production server (when production server fails). When a server name is changed, SQL server should go through a process to acknowledge and assimilate the c ....Read More
Rating
This is a link to a different site SQL Server 2000 DTS Part 8 - DTS Designer Tasks - Transform Data Task
Total Hit (2089) A few more DTS Designer tasks are left to cover out of a total of 17 existing in SQL Server 2000 Data Transformation Services implementation. Arguably, the one that has undergone the most significant changes since the SQL 7.0 release is the Transform Data Task. In this article, we will look at its d ....Read More
Rating
This is a link to a different site Business Intelligence with Microsoft SQL Server Reporting Services - Part 2
Total Hit (1075) Not all reports are static, most of the enterprise reports are data driven or parameterized. In the following section I'm adding two variables, startdate and enddate in the Orders Report. These arguments will be used to filter the data being queried from orders table. ....Read More
Rating
This is a link to a different site Sysprocesses table definition
Total Hit (750) The sysprocesses table holds information about processes running on Microsoft® SQL Server™. These processes can be client processes or system processes. sysprocesses is stored only in the master database.
Rating
This is a link to a different site SQL Server Stored Procedures Administration
Total Hit (604) A stored procedure is a precompiled collection of Transact-SQL statements stored under a name and processed as a unit that you can call from within another Transact-SQL statement or from the client applications.
Rating
This is a link to a different site Scripting Traces for Performance Monitoring on SQL Server
Total Hit (985) The SQL Profiler is a great tool for monitoring and analyzing SQL Server Performance. I use it all the time to watch the detailed actions of a stored procedure, trigger or user-defined function (UDF) that I am developing. It can also be used to monitor aggregate performance of an entire SQL Server i ....Read More
Rating
This is a link to a different site Querying the SQL Server System Catalog FAQ
Total Hit (1120) Data Types How do I find the data types of the columns of a specified table? How do I find the LOB data types of a specified table? How do I find the columns that depend on a specified data type? How do I find the computed columns that depend on a specified CLR user-defined type or alias d ....Read More
Rating
This is a link to a different site Best Practices for Business Intelligence Using the Microsoft Data Warehousing Framework
Total Hit (838)
Rating
This is a link to a different site Get Started Using SQL Server 2005 Notification Services
Total Hit (934) People receive many notifications daily: weather updates, news updates, updates about stock prices, or a current account balance via a SMS message. But how can you build such notification applications on the Microsoft platform? You have two options: the first and less palatable is to build everythin ....Read More
Rating
This is a link to a different site Tutorial: Adding Conditional Formatting into Reporting Services
Total Hit (924)
Rating
This is a link to a different site Troubleshooting SQL Server Jobs
Total Hit (681) If you have problems with SQL Server jobs, review this troubleshooting checklist to find potential solutions.
Rating
This is a link to a different site Data Validation for Merge Replication
Total Hit (624) Microsoft SQL Server 7.0/2000 allows you to validate data for merge replication. You can specify rowcount only validation or rowcount and checksum validation of the article's data. When you choose rowcount only validation, then SQL Server calculates a rowcount at the publisher level, then compares ....Read More
Rating
This is a link to a different site How can I change the filename for a text file connection?
Total Hit (619) It is a common scenario to have a scheduled package that imports a new file each day. Conversely you may wish to produce a uniquely named file each day. You can change the filename (DataSource) property of a connection at run-time from within an ActiveX Script Task. ....Read More
Rating
This is a link to a different site SQL Server 2000 FullText Search Service: How to set up and Query with Indexing Service
Total Hit (1130) If you have a discussion forum or other database - enabled service on your site that accumulates significant amounts of textual data, and you want to provide users with a powerful way to search this content based on words or sentences, then the SQL Server Fulltext query engine could be just the thin ....Read More
Rating


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