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

 

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 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 (2380)
Rating
Horizontal and Vertical Partitioning in Replication
Total Hit (1771)
Rating
GROUP BY and UNION may return unsorted resultsets
Total Hit (3163) 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
How to return Error Description using Error Code in SQL Server 2000 ( DBCC OUTPUTBUFFER technique )
Total Hit (5677) 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
OLE Automation in SQL server
Total Hit (3565) 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
Check a string for numeric digits only
Total Hit (1805) 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
How to do error handling in transaction.
Total Hit (2222) The examples presented here are specific to stored procedures as they are the desired method of interacting with a database. When an error is encountered within a stored procedure, the best you can do is halt the sequential processing of the code and either branch to another code segment in the proc ....Read More
Rating
How to run *.bat file using xp_CmdShell
Total Hit (6631) xp_CmdShell is a powerful SP if used with care. You can execute executable files (e.g. *.com, *.exe and *.bat) using xp_CmdShell however there is a little trick when executing executable file. When you use the the following command you will get an error <font color=red>'C:\myscript.bat' is no ....Read More
Rating
Script to create dummy tables/procs and views for testing purpose
Total Hit (5022) This script can generate N number of Tables/Views and Stpored Procs in few seconds with some dummy data. I use this for stress testing and create dummy tables with data. Change @howmanytables to create N number of tables and then set - @howmanycolumns to create N number of dummy columns per tab ....Read More
Rating
generate script for all stored procedures for the given database.
Total Hit (15423)
Rating
This is a link to a different site How do I convert from Access to SQL Server?
Total Hit (1097) The Access to SQL Server upsizing wizard is the best way to start. There's a different version for each version of Access.
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 Monitor Event Viewer on Multiple SQL Servers
Total Hit (694) Muthusamy Anantha Kumar discusses three methods to monitor SQL Server Event Log on a list of servers and store the output either in a .CSV file or on a database table.
Rating
This is a link to a different site How to manipulate the Execute Process task.
Total Hit (805) Here is some code showing how we can dynamically manipulate the Execute Process task. Say we have an executable "c:\PassFile.exe" and it accepts one argument /F which is for a file. We want to be able to pass in whatever file we choose and we also want to be able to set some of the properties of the ....Read More
Rating
This is a link to a different site XML and SQL 2000 (Part 5)
Total Hit (1055) In this article, we will continue exploring different ways of accessing SQL Server data in the XML format via HTTP. As we explained in the previous article, this type of functionality becomes available after creating a virtual directory corresponding to the target database using IIS Virtual Director ....Read More
Rating
This is a link to a different site Creating packages in code - Flat File Source to OLE-DB Destination (SQL Server)
Total Hit (4750) This code sample programmatically creates a package that imports a text file into SQL Server, with a Flat File Source and the OLE-DB Destination. This shows how you can leverage the SSIS engine to write your own data import tool for example, but beware importing files is not as simple as it may seem ....Read More
Rating
This is a link to a different site Sysprocesses table definition
Total Hit (751) 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 SQL Server 2000 FullText Search Service: How to set up and Query with Indexing Service
Total Hit (1132) 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
This is a link to a different site Data Validation for Merge Replication
Total Hit (625) 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 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 How do I enumerate tables in an Access Database
Total Hit (1161) If you need to enumerate the tables in an Access database, the easiest method is through the ActiveX Data Objects Extensions for Data Definition Language and Security. The ADOX library, as it is better known, can be used just like other COM objects from within ActiveX script, such as a task or workf ....Read More
Rating
This is a link to a different site Generate Scripts for SQL Server Objects
Total Hit (2541) We all like the Generate Script feature of Enterprise Manager and like to use it programmatically. One of the most important uses would be backing up scripts periodically using SQL Server Scheduler.
Rating
This is a link to a different site MDX Member Functions: The "Family" Functions
Total Hit (856) This is the fifth article of the series, MDX Essentials. The primary focus of this series is 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 adding fea ....Read More
Rating
This is a link to a different site New Version Showcases Native XML Type and Advanced Data Handling
Total Hit (1169) The next version of Microsoft SQL Server, code-named "Yukon," represents quite a few steps forward in the evolution of XML integration. Yukon supports native storage of XML data using the XML data type, which makes it possible to run native queries on XML data using the emerging industry standard XQ ....Read More
Rating
This is a link to a different site Arrays and Lists in SQL Server
Total Hit (767) In the public forums for SQL Server, you often see people asking How do I use arrays in SQL Server? Or Why does SELECT * FROM tbl WHERE col IN (@list) not work? This text describes several methods to do this, both good and bad ones. I also present data from performance tests of the various methods. ....Read More
Rating
This is a link to a different site SQL Server 2000 Administration in 15 Minutes a Week: Advanced Installations
Total Hit (840) Welcome to the third article in my series SQL Administration in 15 Minutes a week. Up to this point we have gone over the requirements for installing SQL Server and we have performed a basic installation. This week I will show you more advanced issues when installing SQL Server. The topics for this ....Read More
Rating
This is a link to a different site How Can I Generate a Series of Random Integers With T-SQL?
Total Hit (699) Here is a stored procedure that will generate a series of random numbers and return them in a result set.
Rating
This is a link to a different site How to move, copy, and back up full-text catalog folders and files
Total Hit (1502) Full-text catalogs and indexes are not stored in a SQL Server database. Full-text catalogs and indexes are stored in separate files that the Microsoft Search service manages. The full-text catalog files are not recovered during a Microsoft SQL Server recovery. Additionally, you cannot use the Transa ....Read More
Rating


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