Viewing 13 posts - 16 through 28 (of 28 total)
I would like to create a temp table #hs in the execute sql task becuase i dont want create a staging table
in the production database and then use the...
June 20, 2011 at 8:25 am
I installed 2005 sp2 and got it fixed
June 16, 2011 at 8:49 pm
I am using
Microsoft SQL Server Integration Services Designer
Version 9.00.1399.00
Visual Studio..
Microsoft Visual Studio 2005 Team Edition for Software Testers
June 16, 2011 at 7:35 am
i re installed it once
June 15, 2011 at 7:07 pm
I tried F4 by setting the expression value to true...
but still unable get the expression builder
June 15, 2011 at 6:49 pm
I dont have that symbol (...) there.
is it because of SQL 2005 or is it missing?
June 14, 2011 at 11:08 am
Little bit deept into it
Unable to do it
June 14, 2011 at 8:30 am
I will try using that...
And how to rollback the transaction.Does the code i have given works fine?
June 13, 2011 at 8:42 am
Begin Transaction Tran7
insert into #t (...)
SELECT ..
FROM #hs t
INNER JOIN table1 on
If @@ERROR <> 0
Begin
Rollback Transaction Tran7
INSERT INTO LogTable Values (7,@@ROWCOUNT,'F',@Startdate,getdate())
End
Else
Begin
Commit transaction Tran7
INSERT INTO...
June 13, 2011 at 8:21 am
Hello
what i am planing to do based on your suggestion is to load the data which comes from each SP to a table in the same DB on which...
June 12, 2011 at 10:42 pm
Thanks
Those should be run parallel because of time constraints.
The stored procedure generates same type of meta data in each database.
June 12, 2011 at 10:28 pm
Viewing 13 posts - 16 through 28 (of 28 total)