Viewing 15 posts - 2,806 through 2,820 (of 4,820 total)
Here's the LAG version:
CREATE TABLE #yourtable (
thedate datetime NOT NULL,
agent int NOT NULL,
AgentName varchar(11) NOT NULL,
category varchar(7) NOT NULL
);
INSERT INTO #yourtable...
February 24, 2017 at 11:38 am
If you can get past the crisis, you may want to look at a good solid jump in the overall RAM on this box. You stated you have an 800...
February 23, 2017 at 12:47 pm
Here's the how on implementing the CASE statement:
DECLARE @col1 AS int = 255;
DECLARE @col2 AS char(1) = 'X';
DECLARE @IsEmp AS varchar(1) = 'N';
DECLARE...
February 23, 2017 at 11:51 am
February 22, 2017 at 7:28 pm
Well, one thing you might want to know is just how much RAM there is on this server. I was looking at a few posts during the last week on...
February 22, 2017 at 2:08 pm
Furthermore, my project...
February 22, 2017 at 1:52 pm
I'm wondering how you would represent that a teacher decides that an absent student without a viable excuse for that absence gets an assigned score of 0 for that exam,...
February 22, 2017 at 1:32 pm
I know it is an old thread but could you confirm if SSIS...
February 22, 2017 at 11:38 am
Ed, I agree with you 100%. Mr. Celko posts in a manner that makes people feel disrespected, and frankly, I'm sick of seeing it. It's a shame this forum did...
February 22, 2017 at 8:21 am
When you say compare column by column, does that mean ALL columns? Are the number of columns; and the names thereof; in both result sets, the same?
If so, you...
February 21, 2017 at 3:02 pm
Nope. Never seen it. However, a couple of things to check:
1.) properties of the tablix cell - in particular, visibility. Be sure it's set to be visible.
2.)...
February 21, 2017 at 2:05 pm
Viewing 15 posts - 2,806 through 2,820 (of 4,820 total)