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

 

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 (2453) 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
Error : When I try to backup to a Network share
Total Hit (2876) I get the following error message: «b»"Can't open dump device ... device error or device off line. Please consult the SQL Server error log for more details."«/b» «b»«u»Resolution:«/u»«/b» To perform SQL Backup on network share SQL Executive service needs to run under an account that has permis ....Read More
Rating
This is a link to a different site How do I enumerate tables in an Access Database
Total Hit (1161) If you need to enumerate the tables in an Access database, the easiest method is through the ActiveX Data Objects Extensions for Data Definition Language and Security. The ADOX library, as it is better known, can be used just like other COM objects from within ActiveX script, such as a task or workf ....Read More
Rating
This is a link to a different site Working with files and the FileSystemObject
Total Hit (1110) The ability to work with files gives us great flexibility in how we use DTS. It allows us to add some intelligence into a package, and cope with unexpected situations automatically. The key to working with files is the Scripting Run Time as this gives us the FileSystemObject, which can be fully expl ....Read More
Rating
This is a link to a different site How do I open a file package or template
Total Hit (946) In the save package dialog screen there are several Locations available. The Structured Storage File option is useful if you wish to keep the package as a file, perhaps so that it can be added into a source control repository, or for manually copying to another server or transfer media. Whilst it is ....Read More
Rating
This is a link to a different site Create an Access Database
Total Hit (974) When exporting data to a text file, if the file does not exist it will be created, or if it does exist it will be overwritten. In contrast, when exporting to an Access database the file and table must exist already. This article will show you how to create an empty Access database ready to receive y ....Read More
Rating
This is a link to a different site Open File Dialog Custom Task
Total Hit (1138) If you run packages manually and want the ability to select a file through a GUI, this is for you. This is a simple custom task that pops up a standard windows open file dialog box when executed. It assigns the chosen filename to a global variable for use within the package. ....Read More
Rating
This is a link to a different site Coping with text files and abnormal column or row delimiters
Total Hit (1241) Sometimes you may receive a text file to import that has a row or column delimiter not available in the standard drop-down boxes of the Text File Properties dialog. The first thing to try in these cases is to type directly into the Row Delimiter or Column Delimiter box. This will work fine if th ....Read More
Rating
This is a link to a different site Find an Access Database (from anywhere on the file system)
Total Hit (638) It may be that we have built a DTS package to synchronise data held in an Access database and our SQL Server. The Access databases all have a consistent name but due to the fact that they are used by travelling salesmen on their laptops we cannot guarantee where the database will be. For this we ....Read More
Rating
This is a link to a different site Deleting an Excel WorkSheet from within a package
Total Hit (1893) Here is a simple and quick way of deleting a worksheet in an Excel spreadsheet. It uses two global variables, one for the Excel file name and one for the sheet to delete. As this uses OLE automation of the Excel application object, you will need Excel installed on any machine that this package execu ....Read More
Rating
This is a link to a different site Importing a Named Range From Microsoft Excel
Total Hit (1725) On the newsgroups recently there has been a great deal of interest in importing data from Microsoft Excel into SQL Server using DTS. One of the questions that caught my eye was "How do I import values from cells from anywhere on the page?". You can do this using Named Ranges in the Excel spreadsheet ....Read More
Rating
This is a link to a different site How can I dynamically set the Access System Database
Total Hit (669) You can easily change the filename for an Access database connection using the Dynamic Properties Task in SQL Server 2000. Unfortunately the property selection dialog does not allow access to the system database property (Jet OLEDB:System database) which you need to specify correctly when accessing ....Read More
Rating
This is a link to a different site How to check the file date
Total Hit (603) This sample script was written to check the age of a file. If you import files according to a schedule, you may wish to check that the file is recent to prevent the potential re-import of an old file. The script reads the filename from an existing package connection and uses the scripting FileSystem ....Read More
Rating
This is a link to a different site Connecting to an AS400 with DTS
Total Hit (563) DTS does not support AS400 connectivity natively, but by obtaining a third party ODBC or OLE-DB provider you can connect quite easily. In no particular order, some links for suppliers of such providers:
Rating
This is a link to a different site How can I change the filename for a text file connection?
Total Hit (619) It is a common scenario to have a scheduled package that imports a new file each day. Conversely you may wish to produce a uniquely named file each day. You can change the filename (DataSource) property of a connection at run-time from within an ActiveX Script Task. ....Read More
Rating
This is a link to a different site How can I change the filename for an Access Connection?
Total Hit (696) You can change the Access MDB file of a connection at run-time using an ActiveX Script Task. The following example reads the new filename from a global variable and updates the connection called "Accounts".
Rating
This is a link to a different site Why can't I read the Password property from a DTS Connection?
Total Hit (609) The Password of a DTS connection will return a zero length string from SQL Server 7.0 Service Pack 2 onwards.
Rating
This is a link to a different site Getting Syntax Help for DTSRun
Total Hit (579) If you are having problems with the syntax for the dtsrun command line, or just want an easy way of generating a valid command line first time, try using the dtsrunui utility. As the name indicates it is very similar to dtsrun, but with a user interface. This allows you to easily select your package ....Read More
Rating
This is a link to a different site Execute a package from a package
Total Hit (598) You can use a parent or master package to control the execution of one or more child packages. This is often used in a looping scenario, or when there are a number of individual packages that make up a process. This can be achieved very simply in SQL Server 2000 by using the Execute Package Task ....Read More
Rating
This is a link to a different site Converting a DTS Package from Visual Basic 6.0 to Visual Basic .Net
Total Hit (614) This document discusses issues encountered converting a simple SQL Server 2000 DTS Package, saved as Visual Basic 6.0 code, to Visual Basic .Net code. Assumes "Option Strict Off".
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 Execute a package from Visual Basic (VB)
Total Hit (695) To execute a package from Visual Basic is a relatively simple task using the DTS object model. Before you start using the object model you must add a the appropriate reference to your project. From the Project menu select References and check the "Microsoft DTSPackage Object Library". ....Read More
Rating
This is a link to a different site Global Variables and Stored Procedure Parameters
Total Hit (600) One of the benefits of the SQL Server 2000 is that the SQL tasks support mapping of global variables to parameter placeholders within the SQL. This means you can use the global variable as an input parameter for your stored procedure.
Rating
This is a link to a different site Bulk Export Task
Total Hit (675) The DTS Bulk Export Task was originally conceived in response to a problem with the OLE-DB provider for text files. For more details see DataPump truncates delimited fields to 255 characters. Whilst this problem can be fixed quite easily the Bulk Export Task still offers some benefits over the DataP ....Read More
Rating
This is a link to a different site DTS How to...Skip Rows during Import
Total Hit (848) Firstly you can skip header rows by using the First Row property of the DataPump Task, see Advanced properties sheet. The Text File Connection also has a Skip Rows property, see file Properties of the Connection.
Rating
This is a link to a different site DTS How to...use and return global variables from the Execute SQL or DataPump Task
Total Hit (1027) For those fortunate enough to have SQL 2000, using and returning global variables with an Execute SQL Task, or using them as part of source statement in the DataPump task is now a standard feature. For those still using SQL Server 7.0 this tedious process, but here are some examples of how it can be ....Read More
Rating
This is a link to a different site DTS How to...Transfer Packages between Servers
Total Hit (1056) There are two ways to transfer packages between servers. The simple method is to save packages as COM Structured Storage Files, copy them to the new location, then open and save them to the new server. Whilst this works, it is very tedious when you have a lot of packages. You can automate much of th ....Read More
Rating
This is a link to a different site DTS Errors
Total Hit (1042) «LI»"Could not create component categories manager" Or "Could not create an instance of the DTS package" «LI»"DTS WIZARD ERROR: CoCreateInstance - Class not Registered" «LI»"The parameter is incorrect" Or "Invalid class string" Or "The system cannot find the file specified" «LI»"The license fo ....Read More
Rating
This is a link to a different site Perform An Unattended Install of MSDE
Total Hit (1229) Perform An Unattended Install of MSDE
Rating
This is a link to a different site Implementing Application Roles
Total Hit (1157) SQL Server 7.0, as well as SQL Server 2000, support several technological feature enhancements that allow for a faster time to completion for database and application development. Application roles exist as SQL Server database objects that allow developers and database administrators to assign SQL S ....Read More
Rating


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