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 

 

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
How to perform array-like manipulations using the set-oriented SQL features.
Total Hit (1469)
Rating
How to reset Identity of Autonumber column?
Total Hit (4872) 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 can I transfer table from one database to other database with all other schema of that table (i.e. defaults, constraints, indexes ...)
Total Hit (2452) 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
Using FTP in Transact-SQL
Total Hit (4004) «B»Introduction«/B» I’ve seen a few posts asking “How do I ftp a file into SQL” Well, if you have 6.5 or 7.0 this article should be helpful. Unfortunately it’s not an easy answer, but it’ll work great once you’ve set it up. The answer is that there isn’t a function in SQL to let you do this, you ....Read More
Rating
How to access Reporting Services over internet using Fully Qualified Domain Name (FQDN) or IP.
Total Hit (2950) After you install reporting services by default report server will be configured to use http://machinename/reportserver virtual server. This will be fine if you want to use Reporting Services with in your intranet but if you want to access it using IP or fully qulified domain name over internet then ....Read More
Rating
Avoid error 1540 in Join queries
Total Hit (2778) When you plan your queries, you should avoid the use of wildcard keyword * - which means "retrieve any field" - mainly because it may decrease performances, since the engine allocates space for the entire row; use explicit field declaration instead, such as: SELECT field1, field2 FROM table1 ....Read More
Rating
How to copy text values from one table to another? This one demonstrates for a text value in a single row.
Total Hit (2552)
Rating
How to get the data, tools & SQL path when there are several instances on the same server?
Total Hit (3415) The system SP used in this script is undocumented & needs to be used with care.
Rating
Get table size and number of records for all tables in the specified database
Total Hit (2966) «code LangId=6»/* This stored procedure can be used to get the size of all users tables in the particular database with the number of their rows. You should simply pass the database name, as in the example below (if the database name was not specified, the current database will be used): EXEC ....Read More
Rating
How to implement simple transaction in SQL Server
Total Hit (2158) 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 convert TIMESTAMP values to numeric?
Total Hit (11223)
Rating
How to create audit triggers?
Total Hit (2305) This article will show you the most easiest way to audit your data changes for a specific table in sql server. I will show you, how to use <Code>DBCC INPUTBUFFER</Code> command to capture some valuable audit information when update/insert/delete occurs. Step-By-Step Example - Run the follow ....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
How to capture DBCC output into SQL Table?
Total Hit (1685)
Rating
How to open hyperlink in a new window in Reporting Services Report (RS with SP1 or higher)
Total Hit (39372) Reporting Services gives you several ways to navigate within your report or navigating to external item (i.e. Navigating to other reports or any web URL). You can use a feature called "Jump to URL". Use the following steps to set "Jump to URL" <b>Method-1</b> - Drag a datafield on the report ....Read More
Rating
Finding average of top 3 scores for each player.
Total Hit (2336) Solution for determining the top 3 scores for each player in a game. This script demonstrates several SQL techniques both ANSI & T-SQL specific.
Rating
This is a link to a different site Skip the execution of an individual Task
Total Hit (672) It is easy to build a nice linear workflow path using the DTS designer, but unfortunately our processes are not always that simple. In certain circumstances you may wish to skip a task. This is where the power of workflow can be used, but unfortunately it is not available graphically through the des ....Read More
Rating
This is a link to a different site SQL Server 2000 DTS Part 3 - DTS Designer Connections
Total Hit (1960) In our previous article of this series, we presented a way of creating DTS packages with wizards. Despite its simplicity, this approach has some limitations, which you can overcome in two ways - by using DTS Designer or by manipulating DTS object model with programming languages, such as Visual Basi ....Read More
Rating
This is a link to a different site Introduction to MSSQL Server 2000 Analysis Services: MSAS Administration and Optimization: Simple Cube Usage Analysis
Total Hit (1230) This is the fifteenth article of the series, Introduction to MSSQL Server 2000 Analysis Services. As I stated in the first article, Creating Our First Cube, the primary focus of this series is an introduction to the practical creation and manipulation of multidimensional OLAP cubes. The series is de ....Read More
Rating
This is a link to a different site Working with SQL Server Date/Time Variables: Part Three - Searching for Particular Date Values and Ranges
Total Hit (579) All applications need to retrieve data in SQL Server tables based on DATETIME and/or SMALLDATETIME columns. In your particular application, you may need to select records that were entered on a particular date. On the other hand, you might need to select a set of records that have a DATETIME column ....Read More
Rating
This is a link to a different site Reducing SQL Server Index Fragmentation
Total Hit (2678) When you perform any data modification operations (INSERT, UPDATE, or DELETE statements) table fragmentation can occur. When changes are made to the data that affect the index, index fragmentation can occur and the information in the index can get scattered in the database. Fragmented data can cause ....Read More
Rating
This is a link to a different site Scalability and High Availability of Microsoft SQL Server 2000 (Part 4)
Total Hit (1050) While clustering (covered in the first two parts of this series) provides high availability and distributed partitioned views (presented in the part three) helps increasing scalability, log shipping, discussed in this article, combines both types of functionality. As far as high availabilty is conce ....Read More
Rating
This is a link to a different site Managed UDTs Let You Extend the SQL Server Type System
Total Hit (1007) 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 T-SQL Programming Part 5 - Using the CASE Function
Total Hit (559) The CASE function is a very useful T-SQL function. With this function you can replace a column value with a different value based on the original column value. An example of where this function might come in handy is where you have a table that contains a column named SexCode, where 0 stands for fem ....Read More
Rating
This is a link to a different site Writing Secure Transact-SQL
Total Hit (702) There are plenty of good sources of information about how to deploy SQL Server in a secure fashion. However, these resources are often targeted at database administrators tasked with securing already developed applications. In addition, there is a rich body of information that discusses writing secu ....Read More
Rating
This is a link to a different site Using SQL Server's CHARINDEX and PATINDEX
Total Hit (1186) If you have written many applications then you probably have run across situations where you need to identify if a specific character or set of characters appears in a string. In this article I will discuss using the CHARINDEX and PATINDEX functions to search text columns and character strings. I wi ....Read More
Rating
This is a link to a different site Find Out What They're Doing with fn_get_sql
Total Hit (1112) Not only did SQL Server 2000 introduce the concept of user-defined functions (UDF) but also Microsoft's development team created several such functions as part of the database product. In addition to many undocumented system UDFs, used internally by SQL Server, the product release has nine documente ....Read More
Rating
This is a link to a different site SQL Reporting Services with Dynamic Column Reports
Total Hit (1278) Hi all, this is the second time I am getting a task for dynamically creating reporting columns. In the first instance, I had done it by first binding the data to a DataGrid (by setting the auto-generated columns feature to true and then exporting to Excel). In the second case, the task was to genera ....Read More
Rating
This is a link to a different site Microsoft Reporting Services in Action: Extending Microsoft SQL Server 2000 Reporting Services with Custom Code
Total Hit (1032) This article presents an excerpt from the book, Microsoft Reporting Services in Action, by Teodor Lachev. Learn how to implement advanced report functionality using custom code. (28 printed pages)
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.