Viewing 15 posts - 11,836 through 11,850 (of 26,486 total)
MODEL 01:
name email A B C D
aa john@test.com 0 0 1 1
bb rick@test.com 0 1 0 1
cc sally@test.com 0 1 1 0
dd aha@test.com 1 1 0 0
What would make...
May 18, 2012 at 1:06 pm
Model 1. Doesn't require the parsing of the data that Model 2 would.
May 18, 2012 at 12:45 pm
bitbucket-25253 (5/18/2012)
Yup time to party .. just got email notification that my seventy-first (71st) accepted QOD is scheduled for mid June (of this year).SO PARTY TIME ! ! !
Congrats! ...
May 18, 2012 at 12:20 pm
Also:
CREATE TABLE dbo.ATest(
TestId INT IDENTITY(1,1),
TestData TEXT
);
INSERT INTO dbo.ATest (TestData)
SELECT 'Row1' UNION ALL
SELECT 'Row1' UNION ALL
SELECT 'Row1' UNION ALL
SELECT 'Row2' UNION ALL
SELECT 'Row2'...
May 18, 2012 at 12:09 pm
Welsh Corgi (5/18/2012)
Thanks Lynn but I tried casting the column but I can't get the syntax right.
CREATE TABLE dbo.ATest(
TestId INT IDENTITY(1,1),
TestData TEXT
);
INSERT...
May 18, 2012 at 12:05 pm
Welsh Corgi (5/18/2012)
Thanks for pointing out the issues with the code.
I liked your use of CROSS APPLY, etc.
I'm sorry that...
May 18, 2012 at 11:55 am
Welsh Corgi (5/18/2012)
Thanks for pointing out the issues with the code.
I liked your use of CROSS APPLY, etc.
I'm sorry that...
May 18, 2012 at 11:45 am
Elliott Berkihiser (5/18/2012)
May 18, 2012 at 11:38 am
Welsh Corgi (5/18/2012)
TableName Column Name STATUS_OPEN ...
May 18, 2012 at 11:21 am
Anyone care to join the party??
May 18, 2012 at 11:15 am
Welsh Corgi (5/18/2012)
Select 'DATED_TEXT','DATED_TEXT_RTF',DATED_TEXT_RTF, count(*) AS RecordCount From DATED_TEXT group by DATED_TEXT_RTF;
I get the following error:
Msg 306, Level 16, State 2, Line 582
The text,...
May 18, 2012 at 11:13 am
I think it is time for another party at the TitD. I may have found someone who has > 1 years experinece over 5+ years.
May 18, 2012 at 11:07 am
Viewing 15 posts - 11,836 through 11,850 (of 26,486 total)