Viewing 15 posts - 18,631 through 18,645 (of 59,072 total)
ScottPletcher (1/12/2016)
never use a default clustered index on a table
I've got to say that I totally disagree with that. The clustered index is frequently used for row control...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 12, 2016 at 9:32 pm
Orlando Colamatteo (1/12/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
January 12, 2016 at 9:21 pm
mister.magoo (1/11/2016)
Jeff Moden (1/8/2016)
Hugo Kornelis (1/8/2016)
Jeff Moden (1/7/2016)
Alan.B (1/6/2016)
You can't write a recursive CTE with using pre-CTE features.
Technically correct because only an rCTE can be an rCTE but the...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 12, 2016 at 12:37 am
Alan.B (1/11/2016)
Jeff Moden (1/7/2016)
Alan.B (1/6/2016)
You can't write a recursive CTE with using pre-CTE features.
Technically correct because only an rCTE can be an rCTE but the rather well advertised rave...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 11:21 pm
Thanks folks. I apparently missed Paul's good article on Temp Tables. I found where (I think) I first posted the notion (which, ironically, had a post after mine...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 5:27 pm
bpowers (1/11/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 12:05 pm
Ed Wagner (1/11/2016)
Eric M Russell (1/8/2016)
Matt Miller (#4) (1/8/2016)
Eric M Russell (1/7/2016)
... I saw was of a press conference where the upper management of VW seems to indicate that the...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 9:16 am
Ah yes. Thanks for the catch on my miss. And, I agree. We're assuming the proper FK's are in place.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 8:46 am
karunakar2351 (1/11/2016)
declare @test-2 table (ParentId varchar(10), ChildId varchar(10))
declare @test1 table (ParentId varchar(10), ChildId varchar(10))
insert into @test-2 (ParentId, ChildId)
select 'a', null
union all
select 'a', null
union all
select 'b', null
union all
select 'c', null
union all
select...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 6:18 am
Eirikur Eiriksson (1/10/2016)
Jeff Moden (1/10/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 5:39 am
Eirikur Eiriksson (1/10/2016)
adas-768309 (7/18/2011)
I have been using SQL server 2005 Standard (32-bit).
I am planning to upgrade to 64 bit. But unfortunately I cant find a download link for SQl...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 11, 2016 at 5:16 am
regrahc (1/10/2016)
SQL Newbie here - need to move data to another table after it's 30 days old - not getting an error message, but it isn't moving data that I...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2016 at 8:05 pm
Rankerg (1/10/2016)
Thanks Hugo, Not sure if this is TSQL or ETL question so posted on both, please advise ?
Doesn't matter. Most of us monitor all the forums and so...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2016 at 11:30 am
Eirikur Eiriksson (1/9/2016)
Jeff Moden (1/9/2016)
Eirikur Eiriksson (1/9/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2016 at 10:21 am
Cheryl McLaughlin-385812 (1/6/2016)
CREATE PROCEDURE [dbo].[sfc_SPName]
@SCHEDULEDATE DATETIME
AS
SET NOCOUNT ON;
CREATE TABLE...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 10, 2016 at 10:05 am
Viewing 15 posts - 18,631 through 18,645 (of 59,072 total)