Viewing 15 posts - 451 through 465 (of 1,065 total)
It's possible that this is down to the ANSI options the query is executed with. Not sure how you influence these in SSIS, but you can change them in SSMS...
September 15, 2009 at 2:51 am
Or... do the rollback as part of the error handling for each step:-
DECLARE @ERR BIT
SET @ERR = 0
BEGIN TRAN
-- run first proc
EXEC @Result...
September 14, 2009 at 6:54 am
I think you also need to add complexity into the mix.
Managing a large number of servers that do nothing but respond to client applications is comparatively easy.
Add replication, clustering, database...
September 11, 2009 at 8:57 am
Trooper (9/11/2009)
So will I not be able to restored the transactional log backups...
September 11, 2009 at 8:34 am
Forgot to also mention... switching to simple mode stops your ability to restore transaction logs beyond that point. So any user changes between that point and when you take your...
September 11, 2009 at 8:16 am
Take a full backup before rebuild indexes job run
Take the db to Simple recovery model
rebuild the indexes
Update the statistics
Take the db back to Full recovery model
Chage the sequence a...
September 11, 2009 at 8:13 am
Silverfox (9/11/2009)
You can take Paul suggestion, which is a good one, for 8GB allocate 6GB. which is roughly about 75% of the total server memory. on a 16GB box, I...
September 11, 2009 at 8:02 am
Gianluca Sartori (9/11/2009)
There's an italian parody of teletubbies, called turbotubbies.It's a shame you don't speak Italian, they really are funny.
http://www.giardiniblog.com/2009/03/12/turbotubbies-colorado-cafe/
Not as good as the UK ones, I can see their...
September 11, 2009 at 7:51 am
If you search this forum or Google/Bing, you will find no end of sob stories where people have tried to backup over a network, only to have it fail. The...
September 11, 2009 at 7:20 am
Have I missed something here... your original post says
currently i have 8 GB ram and Intel Xeon server E5335 with @2GHZ @2 GHZ.
Yet later on you say
with 16...
September 11, 2009 at 6:52 am
Paul and Silverfox are correct.
September 11, 2009 at 6:02 am
luckysql.kinda (9/11/2009)
Do you mean nchar(1) ---> 1 doesn't signifie one byte but one unicode character.-lk
Yes
September 11, 2009 at 5:23 am
nchar(1) allows SQL Server to store 1 unicode character.
A byte is 8 bits long (allowing 256 different combinations). Unicode allows you to store 65000 different combinations, which takes 2...
September 11, 2009 at 3:56 am
Which table do you want to delete from... the original or the archive?
What data do you want to delete... all of it, or just rows matching the data being inserted?
September 11, 2009 at 2:14 am
Your trigger doesn't refer to the INSERTED table, but refers to the base table (Tab) instead.
It's therefore possible for it to pick up data already in the table, even if...
September 11, 2009 at 1:45 am
Viewing 15 posts - 451 through 465 (of 1,065 total)