Viewing 15 posts - 1 through 15 (of 59 total)
you might wanna take a look at this post on duplicates
November 18, 2011 at 4:20 am
FormatFile would be helpful...
check this for more info
September 5, 2011 at 2:44 am
u can use the conditional split component if im not wrong... try searchin BOL on Conditional Split
August 6, 2011 at 3:28 am
I believe you are trying to join 2 tables and insert values to the third table...
Insert into Names_Output1 (Firstname, LastName,UserId)
select a.Firstname, a.LastName,b.UserId
from
tblInput a join Users_Output2 b
on a.UserName=b.users
I have not tested...
August 4, 2011 at 10:29 pm
Gianluca Sartori (8/4/2011)
If you like his code, please consider voting for...
August 4, 2011 at 5:25 am
Yes... I believe you cannot use a RAW file[RAW file as in, something created by RAW File Destination and not a text file] in a bulk insert task. The RAW...
August 3, 2011 at 12:01 am
Is column23 the last column in the source? there is a fair possibility the row terminator is causing trouble. is it possible for you provide a sample of the source...
August 2, 2011 at 10:39 pm
@Koen- I believe running execute SQL tasks in parallel should not cause any problem as the values for the variables are evaluated before the tasks are executed[Please correct me if...
August 2, 2011 at 8:03 pm
Strange.... I tried re creating the scenario... and I dont face the issue... Steps followed
Created variable User::Query set to evaluate as expression
Expression:"select * into test"+ @[User::Stamp] +"...
August 2, 2011 at 11:52 am
How is the current date is populated to the variable "User::DateStamp"?
August 2, 2011 at 1:30 am
It would be great if you could provide us with the scripts for creating the table and sample data so that we can help you. the below mentioned link will...
August 1, 2011 at 4:04 am
Eugene Elutin (7/27/2011)
So you will never see what the parameters values are...
July 27, 2011 at 5:43 am
I hope you know how to run the profiler and how to capture the things. If yes then run your code yourself and test it.
Hi Ashish, I am very well...
July 27, 2011 at 4:19 am
@Ashish
Can you try this nested stored proc and let me know the result.
create proc testproc (@testval nvarchar(50))
as
begin
select @testval
end
create...
July 27, 2011 at 2:46 am
I was facing the same problem.. just that its related to excel and ms access instead of oracle. I was not able to run the package in 64 bit environment...
July 27, 2011 at 12:22 am
Viewing 15 posts - 1 through 15 (of 59 total)