Viewing 15 posts - 1 through 15 (of 62 total)
Thank you. Yes, I'm aware of that, Microsoft says the SPLIT can be resource intensive, but it doesn't say it moves the data, hence my confusion.
I am having...
March 28, 2018 at 7:31 am
I've been trying to find what I read, now I think I must have misinterpreted the fact that you can/ have to rebuild a table on the newly created partition...
March 27, 2018 at 6:33 pm
From what I'm reading, this setting is only a hint used by the Optimizer:
ROWS_PER_BATCH =rows_per_batch
Indicates the approximate number of rows of data in the data file. ...
September 15, 2017 at 10:39 am
a friend figured it out.. here is is:
select * from test
where id = 3
union all
select * from test
where c2 =
(select c1 from test where id = 3)
January 9, 2015 at 9:52 am
As an example:
CREATE TABLE [dbo].[Test](
[id] [int] NULL,
[c1] [varchar](50) NULL,
[c2] [varchar](50) NULL
) ON [PRIMARY]
INSERT INTO Test
([id]
...
January 9, 2015 at 9:44 am
I've tried that, too - only 'where c1=c2' doesn't work, either.
January 9, 2015 at 9:12 am
Update: now the package runs and appends records when the email task is present. The next surprise came when I ran it as a job: it appended records, but less...
January 17, 2014 at 5:30 pm
I reversed the last 2 tasks, the one that wasn't working and the one that was newly added, and it started working again. I guess there must be some corruption,...
January 17, 2014 at 3:25 pm
Jeff Moden (12/11/2013)
Marius.D (12/11/2013)
It never stops amazing me how "solutions" are discussed as if they would work universally....
December 11, 2013 at 4:13 pm
Someone said something like "Always do what makes sense". I vote for that!
It never stops amazing me how "solutions" are discussed as if they would work universally. Most of them,...
December 11, 2013 at 2:55 pm
ScottPletcher (2/11/2013)
Marius.D (2/11/2013)
or maybe you specified DESC on one of the existing index keys?!
I did not, but would that make a difference? I didn't think the missing...
February 11, 2013 at 1:48 pm
Viewing 15 posts - 1 through 15 (of 62 total)