Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
all groups > sql server dts > october 2003 > threads for october 15 - 21, 2003

Filter by week: 1 2 3 4 5

SQL7.0 + Use lookups or query in SQL Statement?
Posted by Brent at 10/21/2003 5:40:20 PM
I would like to query the destination table for the MAX(datetime) and MAX(time) values and use those results in the SQL statement for the datapump so that I only import the records since the last DTS package was run. I am a relative novice to SQL Server but have some programming background - how ...more >>


Moving DTS packages
Posted by ginny at 10/21/2003 5:26:23 PM
Hi How do you move DTS packages from one server to another? Thanks Ginny...more >>

Scheduling a daily DTS job, but not on weekends
Posted by tas2 NO[at]SPAM cornell.edu at 10/21/2003 5:20:40 PM
Subject says it all. I'm trying to schedule a daily DTS job, but I don't want it to run Saturday or Sunday. Any way I can tweak it in Management:Jobs in Enterprise Manager? Or can I write a batch file to run on Monday - Friday? Any suggestions would be most helpful. Thanks!...more >>

Excel to Sql with named ranges...?
Posted by Dan B at 10/21/2003 4:49:12 PM
Hi, I'm doing a data import to SQL from Excel using named ranges in Excel. Using the DTS Import Wizard, I can't see all of the named ranges I have set up in Excel. There are several I have named in Excel, but they don't show up in the Select Source Tables part of the wizard. I need to have all...more >>

DTS package sample to use as reference
Posted by Carla at 10/21/2003 3:24:27 PM
Is there any DTS package somewhere that I can use as a sample/reference source. I don't think MS-SQL server comes with anything like this? It would be something equivalent to the Model database but a DTS instead. ...more >>

DTS .NET distribution problem
Posted by Tim Almond at 10/21/2003 3:09:17 PM
I'm getting problems running a DTS package on a server. The package runs fine if I run it from a machine with DTSRUNUI on it - even if talking to a remote server, so there's not a package error. The code also seems to be passing in the correct parameters. The package has been copied from the...more >>

Troubleshooting slow DTS package
Posted by m at 10/21/2003 1:12:34 PM
Hey All, Sorry if this group gets a million of these, but I'm trying to figure this out and I thought I'd ask the experts. Last weekend, our network guys made "some changes" to the network, but I'm not sure what and they're not here now. I do know they were trying to configure the firewall...more >>

Stored Procedure, DTS opening application
Posted by Peter S at 10/21/2003 1:01:50 PM
I am using DTS to open an Application. The DTS package runs but when I create a stored procedure it hangs. I simplified my code excluding most of the code created a DTS and the stored procedure runs no proplem. Any idea as to what I could try. ...more >>



delete text file from dts
Posted by helpme at 10/21/2003 11:58:05 AM
hi, I want to delete the source text file from the dts package after the data is dumped to the table. Please help....more >>

Bulk Insert -- selective import from (very) large fixed width file - DTS(?)
Posted by Jay at 10/21/2003 11:36:13 AM
Hello, I have a very large text file that is not deliminated - it's fixed width. I want to know a couple of things: 1) Most importantly, I want to know if I can/how I can specify certain column positions from within a text file and associate them with specific destination table fields. For examp...more >>

Export SQL Server data to new access database
Posted by mike NO[at]SPAM ovidinc.com at 10/21/2003 11:05:31 AM
Could anybody tell me how I can send a DTS package from sql server to a new access database? I want to create a new access database using a filename I enter as a variable when I call the package. I can do it with an existing access database, but can't seem to create a new one. Is this possible?...more >>

DTS Question
Posted by Tommy at 10/21/2003 10:38:33 AM
Hi all, How can I insert and update data on the same time on DTS?? Regard, Tommy ...more >>

cannot open a DTS package
Posted by Sarah R at 10/21/2003 9:29:38 AM
Has anyone seen this error when trying to open a DTS package? [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied. This message is coming up when trying to open a DTS package on a server that was working beautifully before a reboot last week. I can stil...more >>

Restrict DTS Designer
Posted by Thom at 10/21/2003 9:26:10 AM
I need to restrict access to the DTS Designer, so that users cannot use the gui to create packages and then execute. I have stopped them saving the packages by revoking access to sp's. but they can still create the packages and run them. Thanks...more >>

DTS C# Sample
Posted by Harry Wen at 10/21/2003 9:25:19 AM
Hi, I'm new to DTS and would like to find out where to download the necessary DLL and the sample code for C#? Thanks. Harry...more >>

Same text file Source and multiple destinations
Posted by Atul at 10/21/2003 7:52:04 AM
I have a text file from which I need to load the data in multiple tables. Data in a text file can be differentiated from first two characters in a row. For example, row starting with aa should go to one table and row starting with bb should go to another and etc. File has different row len...more >>

importing data from access 2000 to sql server
Posted by Maroun at 10/21/2003 6:25:30 AM
how cold we import data from access 2000 to sql server using sql code?...more >>

How to detect package failure - DTS javascript
Posted by mxc NO[at]SPAM magicmail.co.za at 10/21/2003 6:06:07 AM
Hi people, I have a script which loads a dts package from a datastore and then executes the package. I want to detect if the package fails or successeds. I thought I could do this simply by: var failure = packahe.Execute(); if (failure==1) return false; else return true; However this se...more >>

How to determine if a dts package failed when executed from script.
Posted by mxc NO[at]SPAM magicmail.co.za at 10/21/2003 5:43:17 AM
Hi people, I have a script which loads a dts package from a datastore and then executes the package. I want to detect if the package fails or successeds. I thought I could do this simply by: var failure = packahe.Execute(); if (failure==1) return false; else return true; However this se...more >>

Win to Unix OS9
Posted by Peter S at 10/21/2003 5:20:50 AM
Hi I am trying to use DTS to transfer a Win File to a Unix OS9 file. 1. Is it possible 2. What do I need to do. Thanks ...more >>

Dynamic UDLs
Posted by Fred at 10/21/2003 4:41:05 AM
Hi! I have a lot of packages that I would like to export to another server in the future. I am using udl-files as connections to make this more convenient. But one problem that remains, is that when I have exported the packages I still must open every package to change the text string who is keepin...more >>

Execute Job without using SQL server scheduler
Posted by APS at 10/21/2003 2:12:23 AM
The Requirement: A SQL server job need to be run on some specific work days of our own calendar. We have a scheduler software to schedule jobs based on our working calendar. We NEED to configure SQL server job in this scheduler. To determine success/failure of a job the scheduler expec...more >>

Scheduled job failing.
Posted by Dara at 10/20/2003 11:51:44 PM
Hi A scheduled DTS job is consistantly failing with the error: Violation of PRIMARY KEY constraint 'PK_MIS_ClassWeights'. Cannot insert duplicate key in object 'MIS_ClassWeights'. [SQLSTATE 23000] (Error 2627) The statement has been terminated. [SQLSTATE 01000] (Error 3621). The step ...more >>

BCP From VBA
Posted by Adrian at 10/20/2003 11:37:27 PM
Hi, Can anyone teach me how do i call a bcp command file from a VBA? Regards, Adrian...more >>

Export to Excel.
Posted by Hans Brouwer at 10/20/2003 10:25:53 PM
Hi there, Can I export data to a specific column in an Excelsheet? I've looked at several sites and articles on this subject, could not find an answer to this question. Tnx, Hans Brouwer *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get...more >>

BCP
Posted by HartA at 10/20/2003 6:02:37 PM
Using BCP to import a text file can you selectively pick fields. Say my text file has 8 fields can I say based upon a certain record type I only want fields 1,2,5,6,7 to be loaded ? to my SQL table. I need a way to take records from a text file and based upon the record type only lo...more >>

Does filename for source have to be hard-coded?
Posted by Deborah Bohannon at 10/20/2003 4:23:22 PM
I've created a simple DTS package which picks up a text file and imports it to a table. However, the name of the source file will change daily; the directory will not. How can I indicate to DTS to just pickup whatever file is in this directory and import it to a table? Thanks in advance, ...more >>

DTS Population Problems With Large Information Quantity
Posted by Edgar Camarillo at 10/20/2003 3:28:51 PM
Hi, I have a problem with DTS Population data from a DBF file with 3 Gb of size to MSSQL 2000 database. I have like data source a dbase V connection object that is pointing to the DBF file in the same sever, the destination is a Microsoft OLE DB Provider for SQL Server connection object t...more >>

propertyname
Posted by Christian Weber at 10/20/2003 3:28:45 PM
Hello! Who can tell me the property name of source and target of a DTS-Datapumptask? Like that: exec sp_OAGetProperty @pkg, 'Tasks("DTSTask_DTSDataPumpTask_1")',@tsk OUT exec sp_OAGetProperty @tsk, '<name of property>', @tskdest OUT, where is <name of property> the source (or target) n...more >>

Calling a stored proc from Dynamic properties task?
Posted by BB at 10/20/2003 2:27:35 PM
Here is what I would like to do... I am sure there is a way or at least I do hope so because it would make my work so much easier. In Dynamic Properties Task I would like to set some of my global variables. That data is stored in the DB and based on one param that I would pass in, I woul...more >>

Job Scheduling Error (the actual error)
Posted by Jeremey at 10/20/2003 2:17:44 PM
Maybe you can help me from this error: DTSRun: Loading... Error: -2147008507 (80074005); Provider Error: 0 (0) Error string: Unspecified error Error source: Microsoft Data Transformation Services (DTS) Package Help file: sqldts.hlp Help context: 713 ...more >>

Data porting into SQL Server 2000
Posted by Shafeek Khalidh at 10/20/2003 12:25:36 PM
Hi All, I need to port data from HP Aix & Access databases into a consolidated SQL Server 8.0 database. Other than, DTS, do we have any tool for migration/data porting? I'm looking for some tools like oracle migration workbentch. What are the types of conversions possible in this case. Plea...more >>

Can't Run Scheduled Package
Posted by Frank Py at 10/20/2003 11:37:12 AM
I can run my DTS package manually just fine, but I can't run it from a schedule. This worked fine until a server reboot this morning. Any ideas? My job history looks ok until I get down towards the end and it indicates: DTSRun OnStart: DTSStep_DTSExecuteSQLTask_6 DTSRun OnFinish: DTSStep...more >>

How to use subscriber's database name in transformable subscription?
Posted by RobertC NO[at]SPAM dcquest.com at 10/20/2003 11:24:58 AM
Hi, I'm trying to create a transformable SQL server subscription. The goal is to have one publication which is filtered horizontally by the database name of the subscriber. I've created the publication and associated DTS package through the wizards, and modified the transformation script as d...more >>

Job Scheduling Error
Posted by Jeremey at 10/20/2003 11:17:31 AM
I have created DTS packages on the server from my local machine. I am attempting to set them up as jobs on the server to run nightly. Its main funtionality is to transfer data from a SQL Server 7 Database, and transfering the information to a SQL Server 2000 database with our hosting compa...more >>

Event Synchronization Problem?
Posted by Liz at 10/20/2003 11:14:11 AM
I'd like to use a SendMail task to send an Excel spreadsheet as an email attachment, but am getting "MAPI call failed" errors. This task has 2 precedence constraints: 1. A DataPump task that populates the spreadsheet, and 2. An ActiveX task that dynamically sets all of the SendMail task...more >>

.DTS File
Posted by ElhamGh_TechMail NO[at]SPAM yahoo.com at 10/20/2003 11:02:17 AM
What is .dts file exactly , and how can i make it and use it? Thanks...more >>

Columnspecification in Exceltransfer
Posted by Hans Brouwer at 10/20/2003 10:24:10 AM
Hi there, Is it possible to export data via DTS to a specified column in Excel ? I have read atricle 319951 and several other sources, sofar I have not found a confirmation or denial that this is possible. Anyone? If possible, where could I find a description? Tnx, Hans Brouwer *** Se...more >>

SQL--> UDB Driver Not Capable
Posted by Joe Linares at 10/20/2003 9:05:49 AM
Hello: I am trying to just copy a table from sql server 8.0 to UDB. The table is simple, 3 columns, as listed here: [Field1] [decimal](4, 0) NOT NULL , [Field2] [int] NOT NULL , [Field3] [decimal](3, 0) NULL The table in UDB is identical. The transformation is just a straight Copy...more >>

Create file/restart Package
Posted by Offeral at 10/20/2003 7:41:07 AM
I have a DTS package that reads a file and uploads the data to our archived database, however, that file is not always present in the target directory causing it to fail. What I need to know is, if I'm going to add a step to ftp the file from a directory to the target directory when this happens, h...more >>

Security Roles and DTS Jobs Run by Agent
Posted by David Knapp at 10/20/2003 7:37:41 AM
Is it possible to set up a security role that will allow me to give permissions to schedule and run DTS jobs via the SQL Agent without giving full sysadmin rights to the job owner? It looks like SQL Agent requires the DTS job owner to be in the sysadmin role or it will fail to run the job...more >>

Semding parameter to DTS Package
Posted by ElhamGh_TechMail NO[at]SPAM yahoo.com at 10/20/2003 5:11:44 AM
How can i send a parameter to DTS packege? For Example, I want to transfer data from SQL Server to text file, But the name of text file is variable.and i want to send it's name by parameter, how can i do that? Thanks Elham...more >>

Store procedure returned parameter
Posted by Rita & Oscar Alhinho at 10/20/2003 3:26:05 AM
Hi, i have a huge problem, i have a DTS that calls a store procedure (SP). This SP should return a value but it doesn´t. If i run it in the SQL query analyser it works fine and returns the proper value. If i modify the SP, redrowing only the insert line but keeping the select it returns...more >>

Check if scheduled job has ended
Posted by Ray at 10/19/2003 11:10:47 PM
Hi everyone, I'm trying to run a scheduled task on an SQL7 server from Access97. I can run the task by raising a custom error from Access97 which runs the scheduled task. However, I don't see when the job ends or if it ends in an error. Does anybody know how to do this? TIA, Ray ...more >>

Transfer Roles
Posted by Kevin Evans at 10/18/2003 8:57:43 PM
I need to move roles and logins from on database to another. I used the Copy Objects Item and it says it complete successfully but the new roles are not in the target databases. Im dbo on both databases. What am I doing wrong? Kevin ...more >>

DTS Packages at home then to work
Posted by Paul at 10/17/2003 11:04:36 PM
Hi, Forgive my newbieness to DTS, but I have written some DTS packages on my SQLServer at home and now want to copy them off there to use at work. Is there a simple way to do this? I notice that I can save them to .DTS (structured files) but once I do that how do I import them into SQLServ...more >>

DTS can not insert into created Paradox table ??
Posted by Dmitry N.Ananyev at 10/17/2003 7:56:48 PM
DTS can not insert into created Paradox table ?? SQL->Paradox not primary key in Paradox table What can I do? ...more >>

Move, transform data, and reset flag
Posted by Mary Scheffler at 10/17/2003 5:06:26 PM
SQL Server 2000, SP4 We have a DB2 table where we want to extract data for only those fields that equal 'N'. What is the optimal way to set up DTS to move the data from a DB2 table to an Oracle table, where date fields get transformed from DB2 date type to Oracle date type, null date fie...more >>

DTS Question
Posted by Tommy at 10/17/2003 5:03:59 PM
Hi All, I'm a programmer and I will uses DTS for our project, but I has a basic knowledge on DTS only, have anyone can help me that how to compare the data on DTS?? THX Regard, Tommy ...more >>

DTS package fails as scheduled job
Posted by kwisley NO[at]SPAM iucu.org at 10/17/2003 3:59:59 PM
I recently loaded SP4 for SQL 7 and MDAC 2.7.1. Since that point, the scheduled DTS packages on that SQL server will not run. I can run the jobs from a command line using DTSRUN and the owners on all the jobs have the proper security. The error I receive is: DTSRun: Cannot create COM Se...more >>

Copy one file to three different locations...
Posted by Kevin3NF at 10/17/2003 3:59:35 PM
....at the same time. I want to use xp_cmdshell to copy the same physical file from one location to three different locations at the same time. I can do this by opening three QA windows and executing the command three times, but I want to do this as part of a job step (which I asume would cal...more >>

How can i import objects by Query Analyser 'simulating this transaction as if it was made by DTS'?
Posted by Marcelo Coimbra at 10/17/2003 1:24:15 PM
Hi, does anybody knows if is it possible to import objects (tables WITH its relationships, primary keys, foreign keys) using only Query Analyzer? And if it is possible, how can i do this transaction? Any example would be very welcome! Thanks! *** Sent via Developersdex http://www.developers...more >>

DTS Package to Export to Excel
Posted by pradeep_pip NO[at]SPAM yahoo.com at 10/17/2003 1:23:45 PM
I am wondering if there is a way to automate the transformation task so that the source table is mapped correctly to the destination Excel. The reason for this is that I am changing the tables dynamically and deleting and re-creating the excel every time but the data pump task fails because the...more >>

Pass parameters to a DTS
Posted by Sonia Martinez at 10/17/2003 11:56:09 AM
Hi, I'm using a DTS to read an excel file and convert it into a SQL table. I can do that but I need to pass the name of the file as a parameter read from a VB screen. Can anybody help me, please Thanks in advance Sonia ...more >>

Trigger to kick of job based on source flat files
Posted by Sandra at 10/17/2003 10:30:26 AM
Is it possible to kick off a DTS package automatically trigged by the existence of the source flat files? I know I can write an activeXscript to check for the existence of these file but I would still have to set up the job to run the activeXscript to look for these files. Correct?! So, I...more >>

Data Stream to SQL
Posted by Chris at 10/17/2003 10:01:07 AM
Can data be streamed to SQL. We are a hospital. A patient is admitted to the hospital. That admit goes to an interface engine as a record. The interface then sends the record to other systems in an format called HL7. I want this record to be sent to an SQL server. This interface engine conn...more >>

DTS Package management
Posted by kandrews NO[at]SPAM erac.com at 10/17/2003 9:32:41 AM
I've inherited a large number of DTS packages, and I need to figure out a way to do the following. 1) script some way of looking at all dts packages to determine the following: -- how the connections are set up (to be specific who is the default user? -- what types of sql statements...more >>

Execute Package from ASP Problem
Posted by Rabbani at 10/17/2003 9:07:06 AM
Hi Darren, I have been trying since two days to look at your reply for my question. But due to some reason, it says the message is unavailable. Can you please post it once again. Thanks, >-----Original Message----- >Message unavailable...more >>

HELP !!! 2servers one domain with asp.net and one DTS
Posted by guillaume.waser NO[at]SPAM wanadoo.fr at 10/17/2003 7:49:25 AM
I use the following code (used in a lot of discussions), into a windows form (and DTSRun, Enterprise Manager...) without any problems But when I try it in the code behind of an asp.net web form (I try asp also) I have an error in the log of my DTS Regarding the first task in the DTS, it can ...more >>

DTS - Generic Server Connection
Posted by Nasira Jamal at 10/16/2003 11:05:46 PM
I need to make a generic connection to the server where the DYS package is. eg. If the package is on server ABC, then the connection should be to server ABC. How can I do this ? Thank you in advance *** Sent via Developersdex http://www.developersdex.com *** Don't just participate ...more >>

Format files
Posted by Aloma at 10/16/2003 10:09:22 PM
Hi Any easy way to make a format file based on a text file using excel. I have heard references to this but have been unable to do it...more >>

copy error
Posted by Tech - SBT at 10/16/2003 7:59:07 PM
Can someone point me in the right direction to figure out what's wrong here? I'm trying to copy a very simple DB between two servers using the SQL 2000 Enterprise Manager DB Copy Wizard. All steps looks good up to detaching the source DB, but then the actual copy of the share database mdf fil...more >>

Do a DTS Import or Export using Query Analyzer
Posted by Daniel Jorge at 10/16/2003 7:10:36 PM
Hi there, Does anyone have an exemple of how could I make an Import and/or an Export process in SQL Server using T-SQL and Query Analyzer to do it? Right now, I'm trying to export to and import from Excel files. But any exemple would be more than welcome. Thanks in advance Dani...more >>

ASP & Transaction Processing- Config issues
Posted by Don Mason at 10/16/2003 6:34:18 PM
hope someone can help ! I have a web app that has been using SQL Transaction services and everything was good. then my SQL Server died and I had to replace. Now I can not initiated a transaction via ASP. Sounds like a simple setup/config issue, but I have never had any trouble initiating...more >>

Size of content a DTS "Execute SQL Task" can hold
Posted by Quentin Ran at 10/16/2003 6:21:27 PM
What is the limit? TIA Quentin ...more >>

Using DTS to update SQL 2000 tables while a web application has users reading tables at the same time.
Posted by Dave H at 10/16/2003 4:33:41 PM
Hi, I am new to news groups and was told I might get an answer to my question here... I have a process that gathers information from our mainframe and then sends this information via FTP to a SQL server in a CSV file. I then have several DTS packages that load the CSV files and update my SQL...more >>

Allan Mitchell !!!
Posted by Ray. at 10/16/2003 3:51:10 PM
Hi Allan, I've tried this : Data Source : Driver do Microsoft dbase(*.dbf) The error I got : Hresult of 0x80004005(-2147467259) returned Unexpected error occurred. An error result was returned without an error message. and I've tried the one you adviced and got an error too....more >>

Scheduled DTS package will not run visual basic exe correctly
Posted by John at 10/16/2003 3:33:11 PM
Hi,=20 I have a visual basic app which reads email files from a outlook 2000 = account I setup for the database server. It then exports these files to = text files which I import into sql server.=20 I created a dts package which first runs the vb app, and then imports = the text files. This...more >>

Attachments - Send Mail Task
Posted by Eduardo Greco at 10/16/2003 3:09:29 PM
Hello! I must send a mail using Send Mail Task, the attachments are set by a Dynamic Properties, with a Query. The problem is that I have to put two attachments, and I cannot separate the files by ";". If I used only one attached file, it would work. Thanks for the attention, Eduardo ...more >>

Same ActiveX Script in many DTSs
Posted by branka at 10/16/2003 2:54:55 PM
I would like to have many DTSs that use exactly the same VBScript and if my VBScript changes I don't want to have to update every DTS file. I create my DTSs via Designer. Any ideas? Thanks, Branka...more >>

How Can I import data from .dbf files ? Please Help!!!
Posted by Ray. at 10/16/2003 1:19:53 PM
Hi All, I need to import data from .dbf files via DTS, could someone advice me how ? Thanks in advance , Ray....more >>

SQL Server -> DB2 copy via DTS
Posted by fiaz.sindhu NO[at]SPAM accenture.com at 10/16/2003 12:21:48 PM
Hi, I am investigating the possibility of doing a nightly copy of a couple of tables from SQL Server 2000 to DB2 using DTS. I know that it is possible to do this, the question is what do I need to make this export to DB2 work in terms of software? I think Windows has its own built in DB2 driv...more >>

DTS General
Posted by Mary at 10/16/2003 11:50:15 AM
SQL Server 2000, SP4 I've set up a DTS package that copies records from a DB2 table if one column field equals "N". I was able to set up a transformation for DateString since I'm moving data from DB2 to Oracle. However, where there are blank date fields, those rows don't get copied. How...more >>

Is it possible
Posted by Sean McKaharay at 10/16/2003 10:13:37 AM
Hey All, I am a developer and I was put on a project to do some data transfers, so I am new to the SQL Server thing. Here is my situation: I have an application that will run independently on 2 different boxes. Each box will have a copy of my application and a full version of SQL Server on ...more >>

DTS
Posted by Mary at 10/16/2003 9:44:29 AM
SQL Server 2000, DTS I am working on moving data from AS/400 to Oracle table, with a one to one column copy. I built a DTS package that uses a *.udl file for the connection, then runs a SQL script to pull only fields on the DB2 table set to 'N'. I then went into DTS Designer and added s...more >>

Using metadata table to call database name
Posted by Daizy at 10/16/2003 9:36:33 AM
How can I have the database name in this sp to look into a metadata table so I don't need to change the database name each time I move this script to a different db. Thanks is advance for your help. Daizy exec master.dbo.xp_cmdshell 'dtsrun /Smy_server /Umy_login /Pmyp assword /Nmy_dts_p...more >>

How can I import a .dbf file ? Please Help.
Posted by Ray. at 10/16/2003 9:27:01 AM
Hi everyone, I need to import via DTS some .dbf files. Can someone advice me any steps to make it. Thanks in advance, Ray....more >>

Transfer objects between SQL Servers fails
Posted by Marcelo Coimbra at 10/16/2003 8:03:06 AM
Using DTS Wizard there is an option wich allows me to select the objects i desire to import but when i click that button ("select objects") i got a message error from Dr.Watson ("dtswiz.exe"). I'm using Windows 2000(BR)Pro SP4, and SQL Server v7.00.623 Thanks!...more >>

DTS and Store procedure output parameter
Posted by Rita&Oscar Alhinho at 10/16/2003 2:57:05 AM
Hi, i have a problem, i have a DTS that calls a store=20 procedure (SP). This SP should return a value but it=20 doesn=B4t. If i run it in the SQL query analyser it works=20 fine and returns the proper value.=20 If i modify the SP, redrowing only the insert line but=20 keeping the select it re...more >>

Schedule DTS import from Timberline
Posted by koo NO[at]SPAM shfa.nsw.gov.au at 10/16/2003 2:34:26 AM
Hi everyone, I'm trying to schedule a DTS package to import data from Timberline into an SQL Server database. Here's the setup: i) The DTS package is set up as a local package on the machine running SQL Server. Timberline runs on a different server and there is an ODBC connection between...more >>

Changing Maintainence Plan
Posted by vivek_vdc at 10/15/2003 6:56:03 PM
Is it possible to change the maintainence plan once I have create it using the wizard? If yes, then I am permitted to use the wizard again, right? -- Posted via http://dbforums.com...more >>

Calling an Insert Stored Procedures in DTS
Posted by Goncalo at 10/15/2003 1:26:05 PM
Hi. I'm having a BIG problem calling a stored procedure with an insert-select. If I call the same stored procedure from the SQL Query Analyser it works fine and returns a variable (select rowcount). However, if I run the DTS directly the variable is not correctly updated with the select rowcount. ...more >>

Execute Package from ASP Problem
Posted by Rabbani at 10/15/2003 1:16:24 PM
Hi, I am trying to execute a package from ASP and have been successful in doing so. But the problem is that the package is very big and takes a long time. The ASP page is getting timed out as the package is taking long time to complete. Is there any way where i can just initialize the e...more >>

Calling a SP from activeXscript
Posted by Daizy at 10/15/2003 1:00:40 PM
I need to execute a stored procedure from an activeXscript and I'm not sure about the syntax. Thanks in advance for your help. Here is my code - Function Main() Dim objFSO, strFullNm Set objFSO = CreateObject ("Scripting.FileSystemObject") strFullNm = DTSGlobalVariables("gvFilePathRoot...more >>

Dynamic Database Name
Posted by Lance McCaskey at 10/15/2003 12:53:51 PM
My development group has an install program that allows the user to change the default db name to anything they want. I need to migrate some Access Data (.mdf file) from the user's hard drive to the installed database (always a SQL 2000 db) as the destination database for my DTS package. ...more >>

time out
Posted by helpme at 10/15/2003 12:00:24 PM
i have about 30 tables with some of them having about 2 million records. all them them are scheduled to run at 11.00 PM night. some of the huge tables takes forever to run. please help...more >>

DTS Executable Failure
Posted by rcmburton at 10/15/2003 11:48:47 AM
Hi. Running a batch job via DTS that calls an .exe. When I start it manually within DTS it works, when its called from a job it gives the following error: Step Error Source: Microsoft Data Transformation Services (DTS) Package Step Error Description:CreateProcessTask 'DTSTask_...more >>

Will DTS Fill My Needs?
Posted by Tommy Martin at 10/15/2003 11:28:36 AM
I have to write a flexible export system. I want to create a temp table on the fly via dynamic sql (the structure can be very different each time) and use DTS to be able to export to ascii files, excel files or even to another sql server table that the structure can be different on. Will dts b...more >>

DTS pkg runs from EM gui and cmd prompt but not in job or procedure.
Posted by Brian Watkins at 10/15/2003 10:43:31 AM
Hello everyone! I have a DTS package that uses and ODBC DSN to tranfer data from my SQL DB table to an AS400 table. When I run the package from within Enterprise Manger (EM) or from the DOS command prompt (from a client or the SQL server) the job executes fine. If I try to execute the pack...more >>

strange error, please help!
Posted by jjone99 NO[at]SPAM hotmail.com at 10/15/2003 9:10:32 AM
this error started happening out of nowhere. i have no idea why. below is the description of the DTS error, any clues? Step Error Source: Microsoft Data Transformation Services (DTS) Data Pump Step Error Description:The number of failing rows exceeds the maximum specified. (Microsoft OLE DB P...more >>

Execute DTS from Stored Procedure
Posted by Noel V. Meneses at 10/15/2003 9:03:19 AM
I am developing a Data Process Package where I would process data into a table using a stored procedure then export it using DTS. Could I execute the DTS package from a Stored Procedure? This way I would simplify the process for the operators. I needed to process tha data in a stored pr...more >>

Outlook Profile (Send Mail Task) in DTS Package
Posted by Mario Londoño at 10/15/2003 8:21:04 AM
I've created a DTS package and I want to use the Send Mail task but I don't see the SQL Mail profile that I've configured on the server. The only way I see the SQL Mail profile is if I open up Enterprise Manager as the SQL service account that owns the SQL Mail profile. How can I get the SQL Mail...more >>

Execute package
Posted by Ola at 10/15/2003 6:32:01 AM
Hi All, I have a package that insert data into a temporary table to ignore duplicate keys. On running this step the next fails because the step reported an error. How do I change the property of the step to success so that the next step can run successfully either using activeX script or ...more >>

DTS pkg schd. job execution time
Posted by Rob at 10/15/2003 6:05:25 AM
Hello: I created and scheduled a DTS pkg., which basically copies data from selected tables of one database to another. The first time this job ran, it took more than three hours to complete. However, every subsequent runs, completes in approximately 11-12 minutes. Is this normal? I w...more >>

Execute a DTS package from VB - Error in Dynamically Changing Text file path
Posted by yogesht194 at 10/15/2003 1:29:00 AM
Sub : Execute a DTS package from VB - Error in Dynamically Changing Text file path ------------------------------------------------------------------------ ---------- 'Executing a DTS package from Visual Basic code.Works fine but if i am trying to change textfile path then its giving error "Con...more >>

Interactive User vs Agent
Posted by Bilal Abbasi at 10/15/2003 12:25:00 AM
Hello all, I have a bunch of DTS packages on a database that collect data from different data sources, message the data and outputs to an Access database. I brought this machine into the Active directory domain and something Wierd is happening. A) When I execute the packages manually, ever...more >>


DevelopmentNow Blog