Viewing 15 posts - 9,361 through 9,375 (of 13,882 total)
You could potentially create a SQL Agent job to run the package and then allow the user to start that job.
March 24, 2014 at 1:36 am
aaron.reese (3/21/2014)
Looked at the package in XML and the fields being reported in the errors only exist once.
Sounds like you have some corruption in your package. (Nasty! Call a doctor!...
March 21, 2014 at 5:23 am
You could try opening the package in an XML editor and looking for the offending GUID - might give you some clues.
March 21, 2014 at 4:27 am
aaron.reese (3/21/2014)
March 21, 2014 at 3:28 am
elee1969 (3/20/2014)
March 20, 2014 at 12:02 pm
Eric Mamet (3/20/2014)
March 20, 2014 at 6:00 am
I presume this is because you may have multiple occurrences of the 'new' lookup item in your source data and you don't want to risk creating something which is already...
March 20, 2014 at 5:45 am
declare @XML as xml
set @XML = '<?xml version=''1.0'' encoding=''UTF-8''?><root available-locales="en_GB" default-locale="en_GB"><Title language-id="en_GB">Cookies</Title></root>'
select @XML.value('(root/Title)[1]', 'varchar(50)')
March 20, 2014 at 5:36 am
Hi Andy
This thread might be relevant.
There are a few suggestions in there around DCOM permissions, SQL Server service account, repair installation ...
I am out of suggestions. It's the use of...
March 20, 2014 at 1:13 am
Is this specific to your PC or to the project (sounds like your PC, but worth making sure)? Does it work for other users?
Or, option three, does it affect all...
March 19, 2014 at 10:41 am
Do any of the other packages in the project get deployed?
March 19, 2014 at 10:11 am
When you do the deploy, are you using a Windows login or a SQL Server login. In my experience, Windows logins work better.
March 19, 2014 at 10:10 am
dattatreysurendra (3/18/2014)
March 18, 2014 at 9:31 am
dattatreysurendra (3/18/2014)
I am using Script task component for creating query (Can not handled due to 4000 Character issue) and running this query later in the package on Sybase Database...
March 18, 2014 at 6:32 am
jeni.jm23 (3/18/2014)
March 18, 2014 at 6:29 am
Viewing 15 posts - 9,361 through 9,375 (of 13,882 total)