Viewing 15 posts - 1 through 15 (of 27 total)
http://msdn.microsoft.com/en-us/library/cc671628.aspx
We went for XML files. We have a consistent folder location across all SSIS server and development PCs (e.g. C:\SSIS\Configs or somesuch) which works very well for us. ...
December 23, 2010 at 9:03 am
Might be a red herring but... does the last comment from sql.techo in this post help?
http://www.sqlservercentral.com/Forums/Topic793585-147-1.aspx#bm821697
December 23, 2010 at 8:39 am
Yep Phil, you read my mind!
Books online is all well and good but isn't really telling us what effect this property has on the package or how it handles the...
December 23, 2010 at 7:44 am
Gila is absolutely correct, this is a backup application attempting to snapshot the server including database files. If it helps, the application is running under an account with sysadmin...
March 10, 2009 at 4:43 am
Hi all,
You're best bet to understand what's happening is to read these two:
http://support.microsoft.com/kb/919023
http://technet.microsoft.com/en-gb/library/cc966520.aspx
Cheers,
Martin
March 6, 2009 at 4:36 am
Hi Dost,
It's all about transaction management or more to the point distributed transaction management. In our case, we were trying to do to much in the one package and...
November 3, 2008 at 7:59 am
It sounds to me a lot like the Distributed Transaction Coordinator which is tripping up a lot of people here.
What seems to behappening is that SSIS is using DTC to...
June 20, 2008 at 10:23 am
Hi Ellis,
To the best of my knowledge this is where SQL Server installs write their log files to. In it you should find log files generated by your SQL...
March 18, 2008 at 5:54 am
*sigh* I'm losing the plot here. :crying:
Snapshot isolation cannot be used within distributed queries.
http://msdn2.microsoft.com/en-us/library/ms188277.aspx
"For most applications, read committed isolation using row versioning is recommended over snapshot isolation for the following...
October 18, 2007 at 5:44 am
Is anyone else able to reproduce this?
Has anyone else been able to force a required snapshot transaction with SSIS?
Cheers,
Martin
October 17, 2007 at 7:27 am
Hi Michael, thanks for the quick response!
As you suggested, I have added a second Execute SQL Task configured in exactly the same way as the first one described previously except,...
October 16, 2007 at 7:23 am
Unfortunately you're in for a world of grief.
Your options are:
a) reinstall SQL Server and choose exactly the correct collation you need.
b) rebuild master
Either way you will need to either recreate...
February 23, 2007 at 10:42 am
Sorry, meant to post this link too.
http://support.microsoft.com/kb/325335
Check out the bit about "Change the collation of the master database in SQL Server 2000"
February 23, 2007 at 8:18 am
Hi Helmut,
What version of SQL Server are we talking here?
February 23, 2007 at 8:12 am
Create Procedure usp_MyProc @Ticket Nvarchar(50)
as
SELECT DISTINCT sc.Name as FieldName, so.Name as TableName
FROM sysobjects so WITH (NOLOCK)
INNER JOIN syscolumns sc WITH (NOLOCK) ON so.id = sc.id
WHERE so.type ='U'
AND sc.name like @Ticket
Then...
February 20, 2007 at 5:39 am
Viewing 15 posts - 1 through 15 (of 27 total)