Viewing 15 posts - 1 through 15 (of 26 total)
ok thanks guys! that helped!
July 17, 2009 at 2:26 am
oh gosh thats sounds complicated. I can do a loop in my client application that does the matching instead
onces the uniqueidentifier is then extracted and handled as varchar.
July 16, 2009 at 8:11 am
thats right, users.userid is of datatype UNIQUEIDENTIFIER,
when I use a cast I get
cast(Users.UserId.id as varchar(100))
Cannot call methods on uniqueidentifier.
July 16, 2009 at 8:05 am
Users
-------
Email (VARCHAR)
UserID (UNIQUEIDENTIFIER)
...
July 16, 2009 at 8:00 am
it worked with substr(xxxx,1,20) but as soon
as I did substr(xxxx,1,80) it failed with truncation....
I narrowed it down to be between substr(xxxx,1,45) that works
but substr(xxxx,1,49) that failes. What on...
June 4, 2009 at 4:28 am
Hello dwithroder, well dropping by substring does not solve the issue. I
introduced that to get around it but did not help.
I also introduced some error handling.
If I set the...
June 3, 2009 at 11:14 am
Hi Tim,
I cracked down on the validation. I am using a for loop in ssis to loop through years like 2000 +1, 2001+1, 2002+1 < 2003.
Each year has about 50...
May 18, 2009 at 1:35 pm
I just executed my package but the validation time is taking ages....running since 9 minutes validating
my data flow task.
May 18, 2009 at 8:06 am
Hi Old Hand,
Unfortunately I cant install the 11g client or any third party tools (it department and licensing is an issue).
I have to stick with to my ssis standard components...
May 18, 2009 at 1:49 am
Looking since a few hours into the issue now and discovered a statement made on infoqu.com that
this might be with incorrect table definition of the oracle destination table (i.e. field...
May 14, 2009 at 7:35 am
I tired increasing the buffer size which made the transfer run to up to 99670 rows out of 700 000. (before buffer doubling 96560). but it still does not make...
May 14, 2009 at 5:36 am
that fixed it "AND @OldValue IS NOT NULL"
DECLARE @OldValue VARCHAR(50), @F2 VARCHAR(50), @ID int
DECLARE product_cursor CURSOR LOCAL
FOR
SELECT tempID, F2 FROM dbo.Products ORDER BY tempID
OPEN product_cursor
FETCH NEXT FROM product_cursor INTO...
October 13, 2008 at 3:10 am
Hi SSCertifiable,
thanks for the code.
THe issue is that somehow that my table looks like this:
[F2]
Car1
Car1
Car1
Car1
Car2
Car1
Car1
Car1
Car1
Car1
Car1
Car1
Car3
Car1
Car4
Car1
Car1
Car1
Car1
Car1
Car1
Car1
Car1
it seems like the cursor has fetched "Car1" and inserted it wherever there is a NULL
value...
October 13, 2008 at 2:58 am
Viewing 15 posts - 1 through 15 (of 26 total)