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

 

Grouping Problem: How to get single record from group with minimum value of one field?
Total Hit (2600) Assume that you have multiple record of customer transactions but you only want one record for each customer with minimum transaction date field... How would you do it ???? Please check the following query «code LangId=6»create table #tmp(cust_code varchar(10),cdate datetime,amount money) ....Read More
Rating
Using RDL from SQL Server Reporting Services 2005 in SQL Server Reporting Services 2000
Total Hit (2396) When you open a Report Definition Language (RDL) file that was created in SQL Server 2000 Reporting Services in a SQL Server 2005 version of Report Designer, or publish it to a SQL Server 2005 report server, the file is automatically upgraded to SQL Server 2005 format. But is it possible to downgrad ....Read More
Rating
SQL Server Reprting Services (SSRS) Report Design Tips and Tricks
Total Hit (3859) This white paper covers best practices on report design and helps you avoid common mistakes when choosing a report layout and output format. Take advantage of existing product features to achieve the results you want. The paper includes report and code examples that implement functionality that is f ....Read More
Rating
How to create Format File using BCP command
Total Hit (22040) When you bulk import into a SQL Server table or bulk export data from a table, you can use a format file to store format information for each field in a data file relative to that table. A format file provides a flexible system for writing data files that requires little or no editing to comply with ....Read More
Rating
How to find start/end date of Previous Quarter
Total Hit (3345) «code LangId=6»declare @PrevQtrDate datetime declare @PrevQtrStartDate datetime,@PrevQtrEndDate datetime declare @ReportDate datetime set @ReportDate=getdate() set @PrevQtrDate=dateadd(q,-1,@ReportDate) Print @PrevQtrDate set @PrevQtrStartDate=cast(month(@PrevQtrDate) as varchar(10)) + ' ....Read More
Rating
Displaying RTF formatted text in SQL 2005 Reporting services
Total Hit (43972) I haven't tried this but it may be helpful to someone who is trying to display RTF formatted text on their report. Crystal Report Support RTF/HTML format but RS 2005 doesnt support. May be MS will add in the next release. Just follow these steps: Compile the code below it into a class Firs ....Read More
Rating
Useful Stored Proc to get Foreign Key Information of any DB for any table(s)
Total Hit (2463) «code LangId=6»Create proc spFKInfo @TableName varchar(100)='%', @DBName varchar(100)='Northwind' as declare @sql varchar(max) set @sql=' SELECT RELATION= FK.TABLE_SCHEMA + ''.'' + FK.TABLE_NAME + ''.'' + CU.COLUMN_NAME + '' -> '' + PK.TABLE_SCHEMA + ''.'' + PK.TABLE_NAME + ''. ....Read More
Rating
How to Implement IRR Financial function like Excel IRR in SQL Server using T-SQL
Total Hit (27289) Have you ever wondered how to use same functionality of IRR function of Excel in T-SQL. Well unfortunately there is no inbuilt function in T-SQL but we can create a user defined function to implement the same logic as IRR of Excel/VB. «code LangId=6»create table IncomeTable ( amt float, d ....Read More
Rating
How to find all tables with/without Primary Key from a specified Database
Total Hit (3694) Primary Key is important constraint to maintain integrrity and speed. Here is the query if you want to find all tables without Primary key. <u><b>Note: Please change Northwind with your DB name.</b></u> <b>All tables without primary key from Northwind Database</b> «code LangId=6»Select * from ....Read More
Rating
generate script for Stored procs, Search for string with in stored proc(s) code, count line of stored proc(s)
Total Hit (2881) The following script will search for all stored proc and user defined function for specific substring. So if you looking for which proc is using "CREATE INDEX" code you can easily pinpoint that using this code. It will list size of all tables or table with specific name (use wildcard) It will co ....Read More
Rating
Accessing OLEDB Connection Managers in a SSIS Script Component
Total Hit (14223) 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
Real world recursion example of CTE (Common Table Expression) used in SQL 2005 / 2008 , Finding information from Tree Structure.
Total Hit (3126) 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 pass array to stored procedure in SQL Server
Total Hit (4015) Have you ever come across the situaction when you have to pass mutiple values as parameter to your stored procedure. Assume the following scenario. - Your application pass comma seperated CustomerID list to stored procedure to get Orders for related customers. Above requirement can be don ....Read More
Rating
Script - Update Blank Values of Group until Next group starts
Total Hit (2641) Recently I came across simple scenario where I had to update some blank values of certain records. Here is what i mean Assume you have two columns. You want to update Order# column with same order number until next group starts (e.g. ID 2,3 update with Order# => 1000). ID Order# 1 1000 2 ....Read More
Rating
Building SSIS Packages Programmatically (Part 1 to Part 9)
Total Hit (4582) This tutorial series will show you how to use SSIS Object Model to buil packages programatically in C# (or VB.net) <a target=_blank href='http://www.ssisbi.com/2009/01/14/building-ssis-packages-programmatically-part-1/'>http://www.ssisbi.com/2009/01/14/building-ssis-packages-programmatically-part ....Read More
Rating
This is a link to a different site Creating a custom task with a default UI
Total Hit (1442) The Developing a User Interface for a Custom Task entry in Books Online describes how to build your UI from scratch, but there is an easier way to create a UI that has the same look and feel as the stock tasks that ship with SSIS. The Microsoft.DataTransformationServices.Controls assembly expose ....Read More
Rating
This is a link to a different site Programming Conditional Split Transformation
Total Hit (1411) There may be some circumstances in a sanctuary where it becomes necessary to keep a leash of foxes and a pack of wolves separate so that they must not fight with each other and make things a mess. Similarly, in the database jungle we do the same things by using some conditional statements in order t ....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 Read DTS and SSIS Packages Programatically.
Total Hit (1377) Reading a DTS/SSIS programmatically helps a lot in doing impact analysis. Consider a scenario in which all the packages containing a particular table or stored procedure need to identified. Let me give another usage scenario for this. The sql native clinet provider SQLNCLI.1 is no longer supported i ....Read More
Rating
This is a link to a different site Supporting DTS in SQL Server 2005
Total Hit (945) Supporting DTS packages in SSIS ( SQL Server Integration Services ) is a daunting task for many. Let’s look at what you need to get the job done and get some good tutorials on the subject.
Rating
This is a link to a different site Coping with No Column Names in the SSIS OLEDB Data Source Editor
Total Hit (862) Sooner or later you'll create a DataFlow and come across this type of dialog box for the OLE DB source: So, why does this problem occur, when all previous attempts have worked? Well the most likely case is that you are selecting from a temporary table as the last statement in the source stored pr ....Read More
Rating
This is a link to a different site SSIS Send Mail Task Change SMTP Port
Total Hit (1072) If you need to change the SMTP Port you can't use the 'Send Mail Task' This article will show you alternate way.
Rating
This is a link to a different site How to use Simple Stored Procedure to return data to a SSRS Report from Oracle
Total Hit (874)
Rating
This is a link to a different site Scanning the network for SQL Server for a range of IP addresses
Total Hit (936) In a large IT department, it can be difficult to locate where new SQL Server installations were made and how many of those SQL Servers were patched, etc. This article explains how to scan the entire network for a range of IP addresses to find which boxes have SQL Server instances installed. The OSQL ....Read More
Rating
This is a link to a different site How to generate flat file with Header and Footer record in SSIS
Total Hit (935) A common question with SSIS is how to handle adding headers and footers to a flat file when the format is different that the data rows. This gets more difficult when the header or footer needs to contain data based on the actual data rows, such as a total or a record count. ....Read More
Rating
This is a link to a different site How to Decipher/Understand SSIS Error Code?
Total Hit (957) If you have worked with SSIS, you may have been doing something like this, in case of errors, you saved the error code and the error column to a text file or some other media.
Rating
This is a link to a different site Best Practices for Business Intelligence Using the Microsoft Data Warehousing Framework
Total Hit (840)
Rating
This is a link to a different site How to convert Data Driven Query Task (DDQ) to SSIS Native Task ?
Total Hit (1139)
Rating
This is a link to a different site How to redirect Error Output for Flat File Source
Total Hit (937) http://blogs.msdn.com/sqllive/archive/2008/01/01/sql-server-integration-services-enhancement-sql-server-katmai.aspx
Rating
This is a link to a different site Understanding BCP/BULK COPY Format Files
Total Hit (1144) In Microsoft SQL Server 2000 and earlier, bulk exporting and importing works with a single type of format file. This is supported in Microsoft SQL Server 2005. SQL Server 2005 also supports XML format files as an alternative. To distinguish format files of the original type, they are called non-XML ....Read More
Rating


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