Viewing 15 posts - 7,696 through 7,710 (of 13,882 total)
monilps (1/13/2016)
The query is close by what I am looking for but two things:
- Query is only resulting back original rows which has similar duplicate data.
- What if data...
January 13, 2016 at 11:49 am
This fits your example data. But is it too specific for your real-world data?
if OBJECT_ID('tempdb..#dupes') is not null
drop table #dupes;
create table #dupes ( Id int identity (1,1) primary...
January 13, 2016 at 10:48 am
monilps (1/13/2016)
For above example Col3 needs to check with Col3 only.
I'm sorry, but your vague single-sentence responses are not providing the level of clarity required to answer such a complex...
January 13, 2016 at 9:57 am
monilps (1/13/2016)
Yeah, this is for any column.
OK, this answer contradicts the earlier one.
So ... you want to identify rows where another row exists which is 'similar'.
'Similar' here means that all...
January 13, 2016 at 9:34 am
monilps (1/13/2016)
I need to identify possible duplicate (not exactly duplicate row) data without primary key:
Table A:
Col1 ...
January 13, 2016 at 8:58 am
Please explain how the 'customized' figures are determined.
January 13, 2016 at 6:20 am
Letron Brantley (1/12/2016)
Phil Parkin (1/12/2016)
I just read through the link you suggested. It suggests that the parallel loading of a table will work if that table is a heap. Otherwise...
January 12, 2016 at 2:25 pm
JustMarie (1/12/2016)
Letron Brantley (1/12/2016)
JustMarie (1/11/2016)
One package to populate the parameters.
One package to pick up the...
January 12, 2016 at 2:23 pm
Letron Brantley (1/12/2016)
http://blogs.msdn.com/b/sqlperf/archive/2011/05/25/the-balanced-data-distributor-for-ssis.aspx
Does anyone have any insight into how SQL Server handles target table locking if you use the...
January 12, 2016 at 1:13 pm
Please provide some sample data in easily consumable format, as described in the link in my signature.
January 12, 2016 at 12:28 pm
declare @HearingDate datetime = '20011006'
Declare @HearingTime varchar(5) = '0830'
select @HearingDate + cast(stuff(@HearingTime,3,0,':') as datetime)
January 12, 2016 at 12:26 pm
Greg Larsen (1/11/2016)
SSCommitted,Thank you for the reply to the question.
Greg
With over 1,000 posts, you should know by now that 'SSCommitted' is not Jacob's name 🙂
January 12, 2016 at 7:38 am
yes sir, this is mi intention. is to code everything dynamically from a DTSX
Why not use a native C# application? What benefits do you think that SSIS is giving you?
January 12, 2016 at 6:54 am
And if you are trying to choose between VS2012 and VS2013, I'd recommend VS 2013: it's newer and (IMO) better.
January 12, 2016 at 5:55 am
Eric M Russell (1/11/2016)
January 11, 2016 at 1:06 pm
Viewing 15 posts - 7,696 through 7,710 (of 13,882 total)