Viewing 15 posts - 76 through 90 (of 94 total)
Thanks, i had to add the linked server prefix as well. Moreover, i also had to add square brackets for some reason for it to finally work...
[server].[database].[owner].
With regards to the...
February 18, 2008 at 9:35 am
Thanks!! I get what you are saying, however there are 9 customer tables and the only attribute i could use to join with the Dim table would be the customerID....
February 18, 2008 at 12:01 am
I have thought of another solution...
The initial problem occured when i tried to join data across 9 different customer tables(on the customer id)
For some reason...duplicates were created of each and...
February 15, 2008 at 1:40 pm
I'm not really sure how to identify duplicates without using the group by clause.
Secondly, to really identify the duplicates, it would have to sort through the entire set of data...
February 15, 2008 at 11:41 am
Im trying to deduplicate data from the customers table----
1] if a match on firstname. lastname, email then it is a duplicate---delete duplicates
2]If match cannot be found on first name, last...
February 15, 2008 at 9:41 am
Thanks again!
The expectation for me is currently in a couple of months. I'm not sure if it would be realistic expectation and how to convince others the same
Getting back...
February 14, 2008 at 5:12 pm
Thanks for your reply,
What i meant was that, i have imported and loaded data into the staging area. I am deduplicating the data. It takes so long though when there...
February 14, 2008 at 12:30 pm
would an update table statement do the trick, however is it possible to update a column of one table to a column from another??(which is referenced in the join)
February 13, 2008 at 11:55 am
No, not overwritten. Just wanto add the address and SSN column from table A onto table B..where there is a join on the id's of the two tables. So for...
February 13, 2008 at 11:24 am
I've deduped data, but only manually(pressed for time..).
I would like to use SSIS for its really meant for then....
February 13, 2008 at 10:01 am
Thanks Journeyman
That made sense! Just wondering though.....
IF for table A- that has the duplicates...i just run a distinct query that returns only one record of the duplicate(based on name,...
February 11, 2008 at 2:10 pm
I think im getting closer, it would be easy to write to query to delete duplicate record
Someone posted a nice deduplicating query.....
DELETE
FROM Table
WHERE ID NOT IN
(SELECT MAX(ID)
...
February 8, 2008 at 4:51 pm
You bet! almost 3 years worth of it...anyways i get what you're saying, select all duplicates into a new table..
And then do a sort(or do you mean fuzzy lookup) on...
February 8, 2008 at 3:03 pm
Hey thanks for the post, it helps to know that someone is facing the same problem.
Now the issue here is deduplication of records. A 140 million rows of data. Just...
February 8, 2008 at 1:47 pm
Anyone, any tips on how to optimize the buffer storage.
Here is the deal, aprrox 50 gigs of data from the source DB, (about 140 mil rows) causes it to use...
February 8, 2008 at 7:35 am
Viewing 15 posts - 76 through 90 (of 94 total)