Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
rookie_sql
Constraint Violating Yak Guru
443 Posts |
Posted - 2007-02-27 : 07:28:54
|
Hi i've got about Step in my DTS were it updates a table its a standard update statement.But when i run the DTS the update does not work.. i tried als putting the code into a stored procudure and calling it form the SQL step in the DTS again it did not work. when i execute the step it works fine and when i run the code in QA it works fine. What code me the problem? |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2007-02-27 : 08:21:17
|
Has the owner of the DTS package permission to do the task?Peter LarssonHelsingborg, Sweden |
|
|
rookie_sql
Constraint Violating Yak Guru
443 Posts |
Posted - 2007-02-27 : 09:02:31
|
Yes, like if i run the package all other steps work fine accept the last step. If i open the dts and execute the step it works fine.. |
|
|
rookie_sql
Constraint Violating Yak Guru
443 Posts |
Posted - 2007-02-27 : 09:39:04
|
I found my problem i have a data transformation that is running or still running when my update step runs. I had the on completeion step after the data transformation. I put the on completion step to the first SQL connection and it now works fine... Like this.. SQL 1 --- transform -- > SQL 2 |Concompletion -- > SQL task 1 |
|
|
|
|
|