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

 

How to check file size of all databases on the server.
Total Hit (2689)
Rating
Some useful UDF for SQL Server 2000
Total Hit (2914) Introduction UDF examples Database creation date Date the object was created Get date part of datetime value Get time part of datetime value Get the number of working days between two dates «B»Introduction«/B» SQL Server 2000 supports User-Defined Functions (UDFs) - one or more Tr ....Read More
Rating
How to convert integer values to hexadecimal strings in SELECT statement or computations or expressions in WHERE clause etc?
Total Hit (1404)
Rating
How to concatenate the values of a column in all rows into one row?
Total Hit (2010) A limitation to be aware of is that varchar can go upto a max size of 8000 characters. If your data occupies more space, the output will be truncated.
Rating
Create Excel XLS from T-SQL
Total Hit (3991) 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
Real world recursion example of CTE (Common Table Expression) used in SQL 2005 / 2008 , Finding information from Tree Structure.
Total Hit (3123) CTE is new powerful feature in SQL Server 2005. Two advantages of CTE <b>1. Implement Recursion (See example)</b> This is the biggest advantage using CTE. Recursion was possible in SQL 2000 but you had to write UDF or nasty joins. <b>2. Reuse Query anywhere by name (Just like View or Temp ....Read More
Rating
How to define a column with a custom time format & verify validity of data using CHECK constraint?
Total Hit (1430)
Rating
How to rank items starting with highest value within each group?
Total Hit (1524)
Rating
Concat several address fields together (example)
Total Hit (2230) Concatenating several column values as a comma-separated string is a often encountered scenario. This method shows one way to do this using COALESCE function.
Rating
Shrinking transaction log file on sql server 7.0
Total Hit (1929) Many times when I do bult insert/delete operation my transaction log grows very fast and I use this scipt to shrink it. This simple scrip will show you how to shrink transaction log file in SQL Server 7.0 when your DBCC SHRINKFILE command wont work. In most cases DBCC SHRINKFILE(<log filename>,<new ....Read More
Rating
Generate sequence numbers within a group of values.
Total Hit (1460) This example shows how to generate sequence numbers within a group of values in a SELECT statement. With proper indexes & search conditions, the example using the SELECT statement with GROUP BY will be very efficient.
Rating
Accessing OLEDB Connection Managers in a SSIS Script Component
Total Hit (14213) Sometimes you may need to access OLEDB Connection Manager to execute Queries in Script. Here is the easy way to do that. Credit : http://blogs.msdn.com/mattm/archive/2008/08/22/accessing-oledb-connection-managers-in-a-script.aspx «code LangId=2» Imports System Imports System.Data Imports ....Read More
Rating
How to perform array-like manipulations using the set-oriented SQL features.
Total Hit (1468)
Rating
How to form effective date only search condition.
Total Hit (1544) This script shows a technique to perform effective date searches especially when searching on an indexed column.
Rating
INSTEAD OF Triggers
Total Hit (1883) AFTER triggers (also known as FOR triggers) execute following the triggering action, such as an insert, update, or delete. For example, an AFTER trigger on an Employees table will fire after an UPDATE statement has been executed against the Employees table. Thus, the trigger does not fire until the ....Read More
Rating
How to reset Identity of Autonumber column?
Total Hit (4870) There are two ways to reset identity field 1) Use TRUNCATE TABLE <mytable> rather than DELETE. This is a non-logged operation, however, and may not be what you need. 2) Use the DBCC CHECKIDENT command to reseed your identity value: DBCC CHECKIDENT('mytable', RESEED, 0) -- next row inserted ....Read More
Rating
How to backfill data (i.e. populate missing values from historical data)
Total Hit (7209) Consider scenario where you want to populate missing data from previous date when data was available. In the following example we want to populate price of orders from most recent previous date when price was available. «code LangId=6»create table #orderinfo ( odate datetime ,product varcha ....Read More
Rating
How can I transfer table from one database to other database with all other schema of that table (i.e. defaults, constraints, indexes ...)
Total Hit (2451) If you want to transfer both data and schema (table schema and indexes), you can use SQL 7.0/2000 DTS tool to export data from one server to another, just need to choose the option «b»"transfer objects"«/b» instead of the default "transfer tables", so that indexes will be transfered as well. ....Read More
Rating
This is a link to a different site How do I script all the objects from all databases on a server and record changes
Total Hit (2238) This is for an uncontrolled environment where developers are allowed to change SPs without change control. I would suggest to run the procedure every night.
Rating
This is a link to a different site T-SQL Programming Part 2 - Building a T-SQL Loop
Total Hit (975) This is the second article in my T-SQL programming series. This article will discuss building a program loop using T-SQL. In addition to talking about building a loop, I will also discuss ways of controlling the loop processing, and different methods to break out of a loop. ....Read More
Rating
This is a link to a different site MSSQL Server 2000 Reporting Services: The Authoring Phase: Overview Part I
Total Hit (1021) Explore the steps of the Authoring Phase in MSSQL Server Reporting Services. MSAS Architect Bill Pearson leads a hands-on overview for developers, evaluators and "early converters" alike.
Rating
This is a link to a different site Introducing the SQL Server 'MDX in Analysis Services' Series
Total Hit (624) This is the first tutorial of a new series, MDX in Analysis Services, that I hope will help new users get up to speed quickly with multidimensional expressions (MDX). The series is designed to provide hands-on application of the fundamentals of MDX from the perspective of MS SQL Server 2000 Analysis ....Read More
Rating
This is a link to a different site DTS Global Variables and Visual Basic .Net
Total Hit (704) 1. In order to change the value of a DTS Global Variable of type String from VB.Net code, the variable must be programmatically removed from the collection and added back with its new value. 2. In order to change the value of a DTS Global Variable of type Date, the new value must be explictly cas ....Read More
Rating
This is a link to a different site SSIS Tips and Tricks from ssisblog.replicationanswers.com
Total Hit (3534)
Rating
This is a link to a different site xp_regex: Regular Expressions in SQL Server 2000
Total Hit (617) Regular Expressions are probably the best tool for text parsing. Using Regular Expressions GREATLY simplifies anything for which you would normally use CHARINDEX, PATINDEX, SUBSTRING, STUFF, REPLACE, etc.
Rating
This is a link to a different site An Introduction to SQL Server Clustering
Total Hit (533) If your mission-critical SQL Server should experience a motherboard failure, how long will it be down? One hour, four hours, a day, or longer? How much will this cost your business in lost sales or productivity? And perhaps even more important to you, what will it do to your stress level? ....Read More
Rating
This is a link to a different site Tutorial : Introduction To Global Variables
Total Hit (734) Global Variables allow you to make your DTS packages more flexible. Some of their uses include. 1. Storing Values passed around within a package. 2. Accepting values from outside the package to be used inside it. 3. Holding not only single values but multiple values in a recordset. ....Read More
Rating
This is a link to a different site MS SQL Server Distributed Partitioned Views
Total Hit (907) Don Schlichting explores the use of Distributed Partitioned Views for accessing multiple MS SQL Severs when configured as a Federated Database.
Rating
This is a link to a different site How to add a Dynamic Properties task to a package and manipulate it using VB.
Total Hit (668) With the introduction of SQL Server 2000 came the Dynamic Properties task. This allows you to read connection settings, table names and just about everything else for your DTS package from an INI file, a Global Variable, an Environment variable, a Query, a Constant or a Data File. Here is an example ....Read More
Rating
This is a link to a different site Does Reporting Services support horizontal tables (fixed rows and dynamic columns)?
Total Hit (859)
Rating


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