Viewing 15 posts - 616 through 630 (of 1,162 total)
Is the ADO .NET destination a SQL Server DB? Do you get different results if you change it to an OLE DB destination? You can still redirect errored rows with...
October 3, 2011 at 6:19 am
You can also take a look at the below DMV for more information on how memory is granted for a particular query in your environment:
October 3, 2011 at 3:17 am
There's a good article on the memory grant process here:
October 3, 2011 at 3:13 am
This article has about the best explanation of how the data is split across multiple data files in the same File Group:
Effectively data is split ("striped") fairly...
September 30, 2011 at 5:49 am
Pretty simple:
select COUNT(DISTINCT u.userid) from users u inner join
status s on
(u.userid=s.mtid) or (u.userid=s.editorid)
September 29, 2011 at 10:11 am
Hi there. Glad you've had help on the forum and thanks for sharing.
So, is the purpose of this to highlight the UPDATE...FROM syntax?
That is a perfectly valid way of...
September 29, 2011 at 9:32 am
Nice solution Drew. I guess "it depends" on quite a lot of factors as to which would perform better (2 x Table scan + partial sort vs 1 x Table...
September 29, 2011 at 7:22 am
yubo1 (9/29/2011)
yubo1 (9/29/2011)
ROW_NUMBER() OVER ( ORDER BY ID ) RowNum
FROM #test where colC is not null
union
SELECT...
September 29, 2011 at 5:25 am
yubo1 (9/29/2011)
ROW_NUMBER() OVER ( ORDER BY ID ) RowNum
FROM #test where colC is not null
union
SELECT ...
September 29, 2011 at 4:43 am
You'll have to post some DDL and sample queries for us to help you further with this, otherwise we're wasting time guessing at what you want and getting it wrong.
As...
September 29, 2011 at 3:48 am
Or just a combination of case and Row_Number:
CASE WHEN Column IS NOT NULL THEN ROW_NUMBER() OVER (PARTITION BY Column ORDER BY blah) ELSE NULL END
But it's difficult to...
September 29, 2011 at 3:06 am
What T-SQL above?
September 29, 2011 at 2:58 am
Is this just to order NULL's last?:
ORDER BY ISNULL(CIT.Ind_Priority, DBO.MaxInt())
Could you at change it to something like:
ORDER BY case when CIT.Ind_Priority is null then 1 else 0 end, CIT.Ind_Priority
May...
September 28, 2011 at 10:37 am
I haven't used the WMI Event Watcher task specifically, but are you saying it's stuck on the event even when you create a brand new file in the target directory...
September 28, 2011 at 7:52 am
Ok, so these are COPY_ONLY snapshot backups.
COPY_ONLY means that it does not reset the differential base, so will not affect other backup sequences.
I've learnt something new here - I've...
September 28, 2011 at 7:07 am
Viewing 15 posts - 616 through 630 (of 1,162 total)