Viewing 15 posts - 1 through 15 (of 39 total)
Eirikur Eiriksson (11/24/2014)
gravitysucks (11/24/2014)
create proc proc1 (@param1 int)
as
begin try
declare @param2 int
begin transaction
exec proc2 @param2
commit transaction
end try
begin catch
if @@trancount > 0
rollback transaction
end catch
i haven't had an opportunity to do...
November 24, 2014 at 1:33 pm
Koen Verbeeck (10/29/2014)
October 29, 2014 at 12:02 pm
Luis Cazares (10/20/2014)
I guess that you have something like this:
BEGIN TRY
...
October 20, 2014 at 5:25 pm
Luis Cazares (10/20/2014)
Do you have a try...catch block for each table/file?Can you post what have you tried?
The proc loads multiple tables using a file at a time. I have try...
October 20, 2014 at 4:44 pm
WolfgangE (6/16/2013)
msdb is a database itself, it's one of the system databases.There your have the tables dbo.sysjobs, db.sysjobsteps and dbo.sysjobhistory for getting information about jobs that run.
oops by bad-...
June 17, 2013 at 10:39 am
WolfgangE (6/15/2013)
Additionally, have a look at the system tables dbo.sysjobs and dbo.sysjobhistory in the msdb database. Query for your replication jobs.
Thank You for this info-just one more curiosity- now...
June 16, 2013 at 2:06 pm
Learner44 (6/14/2013)
http://www.sqlservercentral.com/articles/EDW/77100/%5B/quote%5D
The Merge/Upsert will only work if there is (or create) defined set of unique key(s)-which according to the OP doesn't exist here.
June 14, 2013 at 5:04 pm
SQL_Surfer (6/14/2013)
June 14, 2013 at 11:58 am
dan-572483 (8/24/2012)
declare @string varchar(max)
set @string = '{String you want to remove from...
August 25, 2012 at 12:12 pm
Koen Verbeeck (6/25/2012)
Parallellism can give locking in your destination table if you are using a lot of indexes, but in such a large table you'd better drop the...
June 26, 2012 at 1:54 am
Rock from VbCity (6/21/2012)
Are you sure you are using a Package level variable to collect the value returned by your stored procedure instead of a task level variable?
If you...
June 22, 2012 at 1:21 am
Dung Dinh (6/21/2012)
1- Create new a store procedure to insert SSIS variable into a table
CREATE...
June 21, 2012 at 4:28 pm
Dung Dinh (6/21/2012)
1- Create a SSIS variable such as MyVariable
2- Drag...
June 21, 2012 at 1:06 pm
Viewing 15 posts - 1 through 15 (of 39 total)