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 114 of 133) 3985 Result(s) found 

 

HOW TO: Identify Your SQL Server Service Pack Version and Edition
Total Hit (3723)
Rating
How can I use Transact-SQL to programmatically determine the number of processors that my SQL Server computer has?
Total Hit (3136)
Rating
How to use ORDER BY clause in the definition of a view?
Total Hit (2514) SQL Server excludes an ORDER BY clause from a view to comply with the ANSI SQL-92 standard. Because analyzing the rationale for this standard requires a discussion of the underlying structure of the structured query language (SQL) and the mathematics upon which it is based, we can't fully explain th ....Read More
Rating
How to do case sensitive comparisons
Total Hit (1565)
Rating
Rotate a Table in SQL Server
Total Hit (1659) This article describes how to rotate a SQL Server table. Suppose you have a table that is named QTRSALES. The table has the columns YEAR, QUARTER, and AMOUNT with the data in the following format (note that there is no row for the fourth quarter of 1996): Year Quarter Amount ------ ....Read More
Rating
How to find version and Service Pack applied on the SQL Server 2000/7.0/6.5
Total Hit (2611) 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 Fix Inconsistent Metadata Errors (SQL Server 7.0)
Total Hit (3345) Why does changing a table on a SQL Server 7.0 server cause "OLE DB provider 'SQLOLEDB' supplied inconsistent metadata. An extra column was supplied during execution that was not found at compile time." to occur when query the table from a SQL Server 2000 server via link to other. BASIC UNDERSTAND ....Read More
Rating
How to perform update on multiple tables of linked server.
Total Hit (2458) This code demonstrates 1) How to write update trigger which checks modification for a specified field (e.g. here DistrictId) 2) How to handle Errors during update 3) How to update data on linked server. 4) How to do update which requires joining tables 5) How to use XACT_ABORT option to handle ....Read More
Rating
Stored procedure which displays current or archived SQL Server Log
Total Hit (3005)
Rating
Stored procedure to Send SMTP mail from SQL SERVER 2000 (Email Body max 8000 chars)
Total Hit (32178) This stored procedure can be used to send an email from sql server stored proc. <b>Features :</b> <UL><LI>SQL Mail is not required in order to send emails <LI>You can specify your own smtp server name <LI>Attach multiple files <LI>Text or HTML email <LI>To/from/cc/bcc/subject</UL> <b>Limit ....Read More
Rating
Selective Defrag/Reindex and Log
Total Hit (3124) 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
Create Excel XLS from T-SQL
Total Hit (3998) This is a T-SQL script that uses OLE, ADO, Jet4 ISAM, and Linked Server to create and populate an Excel Workbook (XLS) file from T-SQL query. If the Excel Worksheet exists, the query will append to the "table". The code is designed to be used by SQL Agent and to append to the step output with verb ....Read More
Rating
Get all user tables with size
Total Hit (1554) Returns User Tables by SIZE in DESCENDING ORDER Add TOP n clause in SELECT to get selective results (i.e. TOP 10 TABLES)
Rating
Monitoring Disk Space and Sending Alerts with TSQL
Total Hit (5726) Monitoring disk space is one important task for SQL Server DBAs. To proactively monitor disk space, we want to be notified when disk space is below certain level. We also want to collect database file size information over time for trend analysis, for which Gregory Larsen has an excellent article "A ....Read More
Rating
How to implement simple transaction in SQL Server
Total Hit (2162) Transactions group a set of tasks into a single execution unit. Each transaction begins with a specific task and ends when all the tasks in the group successfully complete. If any of the tasks fails, the transaction fails. Therefore, a transaction has only two results: success or failure. Incomplete ....Read More
Rating
How to implement nested transactions
Total Hit (4242) 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
How to do error handling in transaction.
Total Hit (2224) 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
SAVE TRAN and Save Points.
Total Hit (2536) Savepoints offer a mechanism to roll back portions of transactions. A user can set a savepoint, or marker, within a transaction. The savepoint defines a location to which a transaction can return if part of the transaction is conditionally canceled. SQL Server allows you to use savepoints via the SA ....Read More
Rating
How to script SQL tables using SQL DMO
Total Hit (2254) «B»Introduction«/B» SQL-DMO encapsulates SQL Server components and presents them as attributes of the component piece to you as properties of an object instance. You would have to alter the properties of the instance or use object methods to automate SQL Server administration. This article takes ....Read More
Rating
SQL Server 2000 Full-Text Search Deployment White Paper
Total Hit (2520)
Rating
Full-text indexing: Advanced Queries
Total Hit (2518) In our first two parts we covered creating a full-text index, updating the index and some basic queries. In this segment we'll cover some of the more advanced topics. The first is ranking the results we recieve. We do this using the CONTAINSTABLE statement. An sample query and result set are shown b ....Read More
Rating
Full-text indexing
Total Hit (2539) «B»part-1 :«/B» Full-text indexing: Overview and Installation «B»part-2 :«/B» Full-text indexing: Updating and Querying
Rating
Monitoring Hard Drive Space
Total Hit (2850) This script monitors available disk space for the specified drive. If a drive name is not specified in @drivename parameter the usp_dba_diskspace_monitor stored procedure will check all drives against a space limit (MB) passed through @spacelimit parameter. If available disk space is less then @spac ....Read More
Rating
Network Attached Storage: An Overview
Total Hit (2698)
Rating
Horizontal and Vertical Partitioning in Replication
Total Hit (1774)
Rating
Creating and Configuring Databases
Total Hit (1748)
Rating
Replicating SQL Server 2000 across Heterogeneous Databases
Total Hit (1638)
Rating
Choosing a replication type
Total Hit (2055)
Rating
Setting Up Transactional Replication: A Step-by-step Guide
Total Hit (1707)
Rating
This is a link to a different site How to setup cluster with SQL Server
Total Hit (1134)
Rating


(Page 114 of 133) 3985 Result(s) found  ... 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.