Viewing 15 posts - 16 through 30 (of 57 total)
The accounts are different.
The account (using which sql server/integration services are running) is different from the account which used to install the oracle client on the machine.
January 2, 2013 at 4:46 am
I am not getting this, please put light on this
Is the account that you are running the SSIS package from the same one that you installed/configured the Oracle client from?...
January 2, 2013 at 4:41 am
As both Execute SQL Tasks are pointing to different databases.
Those Execute SQL Tasks calls stored procedures (that populate the data into the corressponding tables).
Now what I want is lets...
November 6, 2012 at 12:14 am
No issue with the query.
As I mentioned this error doesn't comes very often. 10 in 160 (less than 10%) times this error comes.
November 6, 2012 at 12:04 am
Its done!!!! 🙂
What I did is after renaming the database, go to Job Activity Monitor and re-start the cdc capture job of the database. It will start capturing the changes.
June 22, 2012 at 4:55 am
Disabling and re-enabling the CDC will leads to data loss in CDC capture instance table.
I do not want to loss the data.
June 22, 2012 at 4:41 am
I also tried adding a Execute SQL Tasks with query "BEGIN DISTRIBUTED TRANSACTION" with RetainSamConnection for that connection manager is TRUE to support "Transaction across multiple databases" but that is...
June 11, 2012 at 4:05 am
Try this:
1. Create a variable which will store the connection string (in below code: strSourceConnection).
2. In script-task:
ConnectionManager SourceoledbConnectionManager = Dts.Connections["SourceConnection"];
...
June 7, 2012 at 5:18 am
Yes Paul. We need to process huge data. Thats why we want them to be run in parallel but within a transaction. Running them sequenctially will take a lots of...
June 7, 2012 at 5:13 am
Thanks Paul for suggesting the solution.
As the requirement is to run the sql tasks in parallel. So is there any way to run the tasks in parallel (within transaction)?
June 7, 2012 at 4:46 am
The package fails when two SQL tasks run simultaneously
Package => TransactionOption=Required
Execute SQL Task => TransactionOption=Supported
June 5, 2012 at 9:31 pm
The transaction starts working by changing the TransactionOption to Required along with setting ValidateExternalMetadata to FALSE for all components in Data Flow.
However, I am getting the following error when I...
June 5, 2012 at 5:57 am
I have multiple Execute SQL Tasks (running on different databases) and Data Flows
June 4, 2012 at 11:43 pm
Can I use BEGIN DISTRIBUTED TRAN inside "Execute SQL Task"?
June 4, 2012 at 11:32 pm
Viewing 15 posts - 16 through 30 (of 57 total)