Viewing 6 posts - 1 through 7 (of 7 total)
Are you using lookup's or other transformations that are caching data? Take a look at your output window to see what the package is doing right before it hangs up....
SQL Server MVP
Solid Quality Learning
May 18, 2006 at 2:57 pm
Did you check to see if you can see SQL Server Integration Services in the SQL Server Configuration Manager? If you can see the service, make sure it is running....
SQL Server MVP
Solid Quality Learning
May 18, 2006 at 2:47 pm
If your source data is small (1 - 20 million records), then you can do full extractions nightly. Otherwise, you will have to find a way to identify data changes....
SQL Server MVP
Solid Quality Learning
May 18, 2006 at 6:25 am
Datatype incompatibilities are typically the problem here. I have had problems importing dates sometimes because Oracle Datetime datetype can handle dates outside the range that SQL Server DateTime datatype can...
SQL Server MVP
Solid Quality Learning
March 4, 2005 at 8:25 am
Wouldn't you just change the collation using the ALTER DATABASE statement since this seems to be a one time operation??
Here is a MSDN reference for changing collations...
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/architec/8_ar_da_1pwz.asp
SQL Server MVP
Solid Quality Learning
February 22, 2005 at 10:14 pm
I use this code when I need to use a UDL file to instantiate a connection...
Dim oConn, sUDLFile
sUDLFile = DTSGlobalVariables("gsPubsUDL").Value
Set oConn =...
SQL Server MVP
Solid Quality Learning
February 22, 2005 at 10:01 pm
Viewing 6 posts - 1 through 7 (of 7 total)