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

 

How to delete entire folder using T-SQL with xp_CmdShell ?
Total Hit (5447)
Rating
How to drop all temp tables created by current connection.
Total Hit (7327) Few days ago I came up with one problem. I was tesing a script in query analyzer. This script was using several temp tables so every time I run this script I had to make sure that all temp tables are dropped before I run the script otherwise it will give bunch of errors. So I decided to write a proc ....Read More
Rating
How to display COM error description in SQL Stored procedure ?
Total Hit (3390) When we deal with COM object using sp_OAxxxx stored procedure sometimes you need exact error description to Identify the problem. Here is the solution for this type of problem. sp_displayoaerrorinfo stored procedure will display any error encountered while executing sp_OAxxxx stored procedure. ....Read More
Rating
How to export table or Query output to a file using BCP
Total Hit (2809) 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
How to load XML data in sql server table using stored procedure
Total Hit (2627) This article will show you a simple example to load XML document in SQL Server
Rating
Get more than 40 Date/Time formats with SQL Server using Convert function
Total Hit (5676) You can use convert function to format your datetime the only thing you need to to know is format type which is a integer number. This sample output will help you to find your format id quickly.
Rating
Working with Computed column in SQL Server 2000
Total Hit (1539) There are restriction for ALTER COLUMN, documented in Books Online (see end of this post). Depending on your particular situation, you need to DROP INDEX, ALTER TABLE... DROP CONSTRAINT etc. The altered column cannot be: a) A column with a text, image, ntext, or timestamp data type. ....Read More
Rating
Get xp_CmdShell output without creating temporary table.
Total Hit (2712) This sample query will get only file names on C:\ .
Rating
Find matching lines in text file using xp_CmdShell without creating any temporary table
Total Hit (2096)
Rating
Tricky order by without writing dynamic T-SQL
Total Hit (2472) This example shows you how to write dynamic order by statement without writing Dynamic T-SQL which is required to re-compile the execution plan every time you run it.
Rating
How to install MSDE
Total Hit (4033) To install MSDE first extract files to a folder e.g. c:\sql2ksp3 then run folloing command on command prompt c:\>cd sql2ksp3 You can specify installation option either in command line itself or specify in setup.ini «b»[1] Specifying parameters in command line«/b» For example the following ....Read More
Rating
SQL LiteSpeed - 95% compression and 75% faster than inbuilt SQL Backup
Total Hit (2500) SQL LiteSpeed is advanced backup and recovery software for Microsoft SQL Server 7, 2000 and Yukon. «b»SQL LiteSpeed's integrated high performance compression technology can:«/b» «LI»Reduce your backup storage costs by up to 95% «LI»Reduce backup time by up to 70%. «LI»SQL LiteSpeed provid ....Read More
Rating
ADO like Cursor operations using T-SQL
Total Hit (1763) This article shows how to use SQL cursor to perform MoveFirst, MoveLast, MoveNext, MovePrev and MoveAbsolute operations using T-SQL's SCROLL CURSOR
Rating
This is a link to a different site Wrox Press - Professional SQL Server 2000 Data Warehousing With Analysis Services (Programming Analysis Services)
Total Hit (1422) Although there are several resources available to easily query and present OLAP data using simple user tools, custom-developed solutions can be constructed to include both simple and advanced OLAP reporting features. In this chapter we will cover the following topics in the context of custom program ....Read More
Rating
This is a link to a different site SQL Server "Yukon" Full-Text Search: Internals and Enhancements
Total Hit (1663) See the benefits and new features of SQL Server "Yukon" full-text search for both developers and database administrators.
Rating
This is a link to a different site Managed UDTs Let You Extend the SQL Server Type System
Total Hit (1006) The next version of SQL Server, code-named "Yukon," will offer enhanced support for user-defined types (UDTs). Because UDTs can be managed by the CLR, you can represent a wide variety of data structures to create types not possible with previous versions of SQL Server. With UDTs you can more precise ....Read More
Rating
This is a link to a different site XML, T-SQL, and the CLR Create a New World of Database Programming
Total Hit (972) 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
This is a link to a different site New Version Showcases Native XML Type and Advanced Data Handling
Total Hit (1166) 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 Microsoft TerraServer
Total Hit (743) The Microsoft® TerraServer stores aerial and satellite images of the earth in a Microsoft SQL Server™ database served to the public through the Internet. It is the world's largest atlas, combining five terabytes of image data from the United States Geodetic Survey, SOVINFORMSPUTNIK, and Encarta® ....Read More
Rating
This is a link to a different site XML for Analysis (XMLA) Specification
Total Hit (968) 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 XML for Analysis (XMLA) SDK Download
Total Hit (1044) The Microsoft XML for Analysis SDK contains the Microsoft® XML for Analysis provider and sample client applications. The Microsoft® XML for Analysis Provider supports data access to analytical data sources (OLAP and data mining) residing on the Web. This provider implements the XML for Analysis Spec ....Read More
Rating
This is a link to a different site Estimating the Size of a Table with a Clustered Index
Total Hit (1013) Steps shown in this article can be used to estimate the amount of space required to store the data and any additional nonclustered indexes on a table that has a clustered index.
Rating
This is a link to a different site Random Sampling in T-SQL
Total Hit (783) Imagine a company with a data warehouse that contains tens of millions of records on individuals. The analysts want to use it to do statistical analysis or data mining. Because it can be time-consuming to work with such a large number of records, analysts often select a small, random subset of recor ....Read More
Rating
This is a link to a different site Brief Tutorial on Text, Ntext, and Image
Total Hit (1126) Databases are growing in size and complexity, in part because today's hardware and software allow us to store mind-boggling amounts of data—including multimedia and document data. JPG, PNG, MP3, DOC/RTF, HTML, Unicode, and XML data can all be stored as image, text, or ntext in SQL Server databases. ....Read More
Rating
This is a link to a different site Data Extraction, Transformation, and Loading Techniques
Total Hit (2288) Chapter 17, "Data Warehouse Design Considerations," discussed the use of dimensional modeling to design databases for data warehousing. In contrast to the complex, highly normalized, entity-relationship schemas of online transaction processing (OLTP) databases, data warehouse schemas are simple and ....Read More
Rating
This is a link to a different site Business Case Solutions Using MDX
Total Hit (865) The purpose of the Multidimensional Expressions (MDX) language is to make access to multidimensional data more concise and efficient. However, because MDX reflects the natural complexity of multidimensional data structures, simple business questions may sometimes require complex MDX solutions. ....Read More
Rating
This is a link to a different site Log Shipping
Total Hit (700) It is 2 PM on a record business day. The Microsoft® SQL Server™ 2000 server housing your mission-critical customer database experiences a disk failure. What do you do? When was the last known good backup? Is there another server available to restore the backup onto? Is SQL Server even on that server ....Read More
Rating
This is a link to a different site Failover Clustering
Total Hit (745) Continuous uptime in a production environment, whether it is a database powering a mission-critical client/server application or an e-commerce Web site, is becoming a common businesses requirement. This chapter describes Microsoft® SQL Server™ 2000 failover clustering, one method of creating high av ....Read More
Rating
This is a link to a different site Replication and Microsoft SQL Server 2000
Total Hit (1925) Data Replication is a powerful feature of SQL Server. SQL Server 7.0 provided many improvements from previous versions, and SQL Server 2000 builds on those features and adds more to increase the reliability, ease of use, and management of replication. ....Read More
Rating
This is a link to a different site Dynamic order by
Total Hit (902) You can use CASE statement in order by clause to select field by which you want to order the resultset. This is very handy technique.
Rating


(Page 125 of 133) 3985 Result(s) found  ... 121 122 123 124 125 126 127 128 129 130 131 132 133

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.