Tagged Questions
Data Transformation Services
6
votes
4answers
598 views
Unit Testing for VBScript, ASP Code and SQL Server 2000
I have a very old project implemented in (classic) ASP and SQL Server 2000. Because of quality concerns, I've been considering the possibility of implementing some form of automated quality testing. ...
5
votes
4answers
3k views
Upgrading SQL Server 2000 to 2005 or 2008 - DTS to SSIS
Our office uses SQL Server 2000, and by and large it has served our needs well. I'm looking into the possibility of upgrading to SQL 2005 or 2008 because of the new features not found in 2000 (when I ...
4
votes
1answer
571 views
stop a DTS package programmatically (using C#)
Is there a way to stop a SQL Server 2000 DTS (not SSIS) package that is currently running, programmatically using C#?. I think the package can be executed using the COM API, but I couldn't find a way ...
4
votes
2answers
873 views
“Invalid class string” while trying to execute DTS Package in VB .NET
I have a DTS package that runs on our MS SQL Server 2000 database server, and need a way for users to execute it from their own machines. (The package creates files that are then transferred by my ...
4
votes
6answers
6k views
How can I run sql server stored procedures in parallel?
I want to do something like:
exec sproc1 and sproc2 at the same time
when they are both finished exec sproc3
I can do this in dts.
Is there a way to do it in transact sql?
Or is there a way to do ...
4
votes
5answers
14k views
How to create an SQL table and and populate it with Excel spreadsheet data?
Is there an easy way to create a table in SQL Server (2005) from an Excel spreadsheet. I'm thinking maybe some tool?
Thanks in advance.
4
votes
3answers
3k views
How to use stored procedures within a DTS data transformation task?
I have a DTS package with a data transformation task (data pump). I’d like to source the data with the results of a stored procedure that takes parameters, but DTS won’t preview the result set and ...
3
votes
3answers
84 views
Does anyone know of a way to migrate DTS to SSIS?
Are there any tools available for this type of package conversion?
3
votes
4answers
217 views
SQL Server Integration Services SSIS 2005 - How to Let Users Run the Package?
So I made a package in SSIS to read data in from a text file and load it into a database table.
What's the best way to set this up for non technical end users to run this when desired?
My boss was ...
3
votes
3answers
788 views
Insert from MS SQL to Lotus Notes using NotesSQL drive
I am trying to sync up a SQL Server table with a Lotus Notes database. I have set up the NotesSQL ODBC driver and have been able to insert, update and select from the notes database form using the ...
3
votes
2answers
217 views
Unit testing DTS packages
does anybody have any experience writing unit tests for sql server 2000 DTS packages?
I about to start working with DTS and jobs, so I want to be able to unit test as much as possible. I guess i could ...
3
votes
3answers
1k views
Execute an SSIS Package created with VS2008 on SQL Server 2005
Maybe a stupid question but... I created an SSIS package using VS2008 Professional. I want to deploy and execute it on a server running SQL Server 2005. When I try to run it I get an error stating ...
3
votes
3answers
1k views
Open a .BAS DTS Package in SQL 2000?
You can save a SQL Server 2000 DTS package as a VB .BAS file. Is is possible to open a .BAS file in SQL Server Enterprise Manager (or some other way) to add the DTS package to the server? Initally, ...
3
votes
3answers
2k views
How do you copy a MS SQL 2000 database programmatically using C#?
I need to copy several tables from one DB to another in SQL Server 2000, using C# (VS 2005). The call needs to be parameterized - I need to be able to pass in the name of the database to which I am ...
3
votes
4answers
2k views
How can I create a human-readable script for every DTS package on a SQL server?
I know I can edit each individual DTS package and save it as a Visual Basic script, but with hundreds of packages on the server, that will take forever. How can I script them all at once? I'd like ...
2
votes
1answer
73 views
Differential Update With SQL Server
I have several huge (2GB each) database in Firebird format. Every few weeks, this data has to be synchronized with an MS SQL Server. Currently this is a long winded process which just truncates the ...
2
votes
1answer
576 views
Cannot open a SQL Server 2000 DTS package I imported into SQL Server 2008
I am running into a problem trying to open a SQL Server 2000 DTS package I imported into SQL Server 2008. I set up a new server and installed a fresh install of SQL Server 2008. The database I need ...
2
votes
2answers
435 views
SSIS XMLSource only seeing null values in XML variable
I have a Data Flow task with an XMLSource that references an XML Variable. The DataFlow task does recognize that there are x number of rows in the variable, but it only sees null values in every row:
...
2
votes
3answers
893 views
SSIS 2005: “Append rows to the destination table” is greyed out. Why?
In SQL Server 2005, Import Data (SSIS), my desire is to import a text file and have it append to an existing table. The first time through the wizard on the Column Mappings step I swear the Append ...
2
votes
2answers
55 views
Automatic Database Synchronisation
I am using SQL Server 2008 and Visual Studio 2008
I have two databases.I need to run a query in a database and grab those results
and update a table inside another database.
This process would be ...
2
votes
1answer
184 views
Migrating a database from SQL Server 2000 to SQL Server 2005
What technical issues am I likely to encounter when migrating a database from SQL Server 2000 to SQL Server 2005? Are there any common problems I should be aware of?
Should i be worried about any ...
2
votes
1answer
766 views
List columns in a SSIS Flat File Connection
I'm trying to produce a column 'start/length' spec document from a SSIS package that exports a DB table to a flat file. I have hit something of a brick wall in getting the Columns property from the ...
2
votes
4answers
1k views
Is there a simple way to Copy SQL Server 2000 DTS package and deploy it in another server?
I am trying to copy a database from one server to another in id different location, including all the schema, data, DTS Package and Scheduled Jobs.
I used Redgates SQL Packager to pack the schema and ...
2
votes
2answers
126 views
Microsoft SQL server hosting that supports DTS
Could someone suggest a shared SQL Server solution that supports DTS packages?
Update:
I was hoping to use the PostgreSQL ODBC driver and a DTS package to keep data synchronized between MSSQL server ...
2
votes
2answers
4k views
Where does SQL Server store the DTS packages?
I have created a few DTS packages and saved them on the server. where I can edit these DTS packages on the server?
2
votes
1answer
2k views
How do I catch events from an SSIS package loaded in C#?
I have an SSIS package that executes several tasks. I manually added an event handler inside Business Intelligence Studio 2005 at the package level for the OnExecStatusChanged event.
My question is, ...
2
votes
4answers
2k views
How do I convert DTS packages to SSIS packages?
I'm looking for tutorials or walkthroughs for converting DTS packages into the new SSIS 2005. Any one knows.
2
votes
6answers
6k views
Using SQL Server DTS Package to Conditionally Insert / Update Rows in Destination Table
I want to create a DTS Package to pull data from an Oracle table into a SQL2K
table. How can I insert rows that are not already in the SQL2K table and
update rows that already exist in the SQL2K ...
2
votes
2answers
388 views
DTS Packages & a Connection to Access
Using DTS I'm dynamically creating an access database. After the file is created (which works at this point) I'm having the DTS package post it via HTTP to another site. (This HTTP is just how it has ...
2
votes
1answer
168 views
The SQL Server DTS Connection2 object has an undocumented property, UseDSL. What does it do?
I'm building a wrapper for DTS around the Microsoft.SqlServer.DTSPkg80 (the RCW generated from DTSPKG80.DLL). Inside the RCW, on the Connection2 interface, the property "UseDSL" is defined. This ...
1
vote
1answer
40 views
Job On Sql Server Agent does not complete, but it does in BIDS?
My package works like a treat in SSIS ( BIDS ) and executes in 4 minutes . Logging onto integrations services in SQL Server management studio and importing it into file system or stored packages and ...
1
vote
1answer
187 views
SSIS read/write to variable in script task
I have a variable called Valint that i need to read/write to in a script task, but it doesn't seem to work:
public class scriptmain
inherits usercomponent
dim counter as integer
dim Valint as ...
1
vote
0answers
153 views
Using a script task in SSIS with C# language, how to convert a DTS ActiveX script that creates files and then appends the full file names
I'm trying to convert a DTS process to SSIS and I want to convert a DTS script task that creates 3 files (only creates the file if there’s data to write to it) and then appends the full file names to ...
1
vote
1answer
46 views
Scheduling DTS in SQL Server 2008
We are moving from SQL Server 2000 to 2008 and currently just migrating our DTS packages without converting them to SSIS. I can't find a way to create scheduled jobs for those DTS packages. Can ...
1
vote
0answers
97 views
Question on ActiveX Script Task in Sql Server 2000 dts package
What does this line of code do
Set Pkg = DTSGlobalVariables.Parent
In the following ActiveX Script Task:
Function Main()
myfilename=inputbox( "Please enter the filename (ex. 2010Nov):")
...
1
vote
3answers
88 views
How can I move data from one SQL Server to other?
I want to copy all my database to remote database server. I have access to server using SQL server management studio.
How can I do this? I have created script with data of old database and tried to ...
1
vote
3answers
534 views
Convert Access Database to SQL Microsoft DTS - Data Type '130' not in mapping file
I am trying to export a large Access .mdb database to an SQL Server database and have been running into a problem where Microsoft DTS does not recognise the data type of a particular type of field in ...
1
vote
2answers
193 views
How to transfer data automatically from one MySQL Database to another MySQL Database?
I have two MySQL Database which are in different machines.
I want to transfer data from one Server to another automatically.
Lets say, I want my data transfer to happen each day morning 4:00.
Can it ...
1
vote
1answer
299 views
SQL Server 2000 DTS Package Failing with “The number of failing rows exceeds the maximum specified”
I have inherited a SQL Server 2000 DTS package that migrates data from SQL Server to Oracle. This package moves about 20 tables' data to Oracle every night with no transformations, and it is then ...
1
vote
2answers
443 views
Assembling SSIS Packages in PowerShell
I should preface by saying my experience with scripting or programming in OOP languages is limited.
I'm working on a method for programatically creating and executing SSIS packages using PowerShell. ...
1
vote
2answers
2k views
Audio/video synchronization, TS MPEG2;H264/AVC, understanding PTS in Handbrake
Synchronization has always fascinated me, or to be precise: why a .ts can be viewed in sync by media players, while the demuxed audio+video reassembled is out of sync.
So I'm trying to understand ...
1
vote
1answer
65 views
How do I start the dts transfer program?
I am not that familiar with SQL Server data transfer and I am trying to setup a nightly database transfer for certain tables from SQL Server 2000 to SQL server 2008. I am reading up on DTS, but I ...
1
vote
1answer
454 views
SQL Server 2000 Script to list all Meta Data Services DTS packages
I am doing an SSIS package that would go out to all our DB servers to gather information about them, and what is on them. And in this one case there is a SQL 2000 box with a bunch of DTS packages on ...
1
vote
2answers
238 views
DTS Transformation vs Select/Insert into t
Does anybody know what the recommend method is to copy data from one table to another using a DTS? Should we use the standard Insert/Select statement or a DTS transformation between two connections? ...
1
vote
1answer
520 views
DTS/SSIS vs. Informatica Power Center
I'm sure that this is a pretty vague question that is difficult to answer but I would be grateful for any general thoughts on the subject.
Let me give you a quick background.
A decade ago, we used ...
1
vote
2answers
158 views
Performance of update statement inside DTS package
I have a DTS package, which after running daily with no problems for a couple of years, has started to play up. Originally it was inserting data into a table which would then fire an insert trigger. ...
1
vote
1answer
224 views
installation requirements to run SSIS and DTS packages in a job
my requirement is as follows. the SSIS and DTS packages are stored on the webserver (not in database) and I need to execute them on click of a button on an ASP.NET web page and be able to abort them ...
1
vote
4answers
227 views
How to transfer SQL Server DB structure to another server
Tell me please what's the best way to copy db structure to another server?
I'm trying to generate a script in Management Studio and then run that script on the remote machine. And I hate that thing. ...
1
vote
1answer
82 views
Which CA issues Timestamping certificate
Our company currently implementing TSA (Time Stamp Authority) service. And now we are searching CA (Certification Authority), which could issue certificate with intended usage: Timestamping. I ...
1
vote
1answer
701 views
SQL Server Import and Export Wizard Error: “Index was outside the bounds of the array” via 32bit ODBC data source?
I get an "Index was outside the bounds of the array." error when I do the following.
1) I launch the Import and Export Data Wizard (32 bit).
2) Data source: .Net Framework Data Provider for Odbc.
...