Viewing 10 posts - 1 through 10 (of 10 total)
Sure. Create a table in SQL Server with all the fields that you are pulling from Oracle. We'll name the table "Staging" for now. In that table, make the fields that...
September 28, 2006 at 5:51 pm
It would be faster to use the Staging table approach. While the ActiveX script approach works, it slows your transfer speed down. By using a staging table where the field...
September 28, 2006 at 10:07 am
I suspect that the problem might be that in Oracle the minimum allowed date is 1753-01-01, whereas in SQL Server it is 1900-01-01. When the DTS tries to load that record,...
September 27, 2006 at 11:16 pm
You will have to do it in the ActiveX script as SQL 7.0 doen't have the Dynamic Properties Task.
May 5, 2005 at 10:41 am
There is a handy freeware tool on http://www.sqldts.com called DTSBackup 2000 that lets you select the DTS packages on the source and copy them to a destination server.
May 3, 2005 at 12:13 pm
OK. I'll assume that you have already created the Transform Data (Data Pump) Task.
1. Create a Global variable called SQLString.
2. Drag the ActiveX Task object to the DTS Designer...
April 26, 2005 at 11:25 am
Actually, you may not need to use the ActiveX/Dynamic Properties. Try changing your SQL statement to:
SELECT * FROM SCHEDULE WHERE DATE=TODAY
I think that Ingres supports the TODAY Keyword.
April 26, 2005 at 8:51 am
I have run into that one too. Many ODBC drivers don't support the ? parameter in SQL DTS and return the error you got if you try to use it.
What...
April 26, 2005 at 7:37 am
You can use the ISNUMERIC() function. The code would look something like this (You would be in Database_A when running it) :
insert into TableA (ColumnA)
select ColumnB
from Database_B.dbo.TableB
where ISNUMERIC(ColumnB) = 1
Cheers,
June 25, 2004 at 7:21 am
Sounds like you may not have the MS Collaberation Data Objects installed. They do come with MS Office, but are not installed by default. You have to run the Office...
April 15, 2004 at 7:27 am
Viewing 10 posts - 1 through 10 (of 10 total)