Viewing 15 posts - 3,226 through 3,240 (of 3,957 total)
Must've indeed. Try this:
;WITH MyModules AS (
SELECT m.ModuleID, Caption, SourceName, MenuLevel, ParentID
FROM #Modules m
INNER JOIN #ModuleRight mr...
July 5, 2012 at 12:22 am
Worthy of mention, if you do opt to add a Calendar table, either of the proposed FUNCTIONs will make short work of populating it.
Any way you choose to accept it,...
July 5, 2012 at 12:18 am
I'm not seeing the same results as you. Try this:
CREATE TABLE #Modules
(
ModuleIdint,
Captionvarchar(20),
SourceNamevarchar(20),
MenuLevelint,
ParentIdint
)
insert into #Modules
Select 1, 'Test 1', null, 1, 0
UNION Select 2, 'Test 2', 'Form2', 2, 1
UNION Select...
July 5, 2012 at 12:12 am
vijay.s (7/4/2012)
Dwain,Your solution is working fine with sample data, but when I applied it to large data giving wrong result.
Means provide the multiple parent row for the given child row.
Vijay
Can...
July 4, 2012 at 11:49 pm
ALZDBA (6/29/2012)
dwain.c (6/28/2012)
Jeff Moden (6/28/2012)
dwain.c (6/27/2012)
I like this problem and wanted to contribute.Let other people in on the fun. 🙂 What does dbo.GenerateCalendar() look like?
Please don't laugh! ...
1)...
July 4, 2012 at 11:25 pm
I learn something new everyday from reading this site and posting solutions to questions.
July 4, 2012 at 11:23 pm
Vijay - I think we can be a little more succinct and avoid any unnecessary temporary tables like this:
;WITH MyModules AS (
SELECT m.ModuleID, Caption, SourceName, MenuLevel,...
July 4, 2012 at 11:19 pm
Another, albeit awkward but likely method to achieve this is to convert the column containing 6-8 to a computed column like this:
SELECT GradeRange='''' + GradeRange
When you paste that result into...
July 4, 2012 at 10:58 pm
An alternative to a Calendar table, is to use a FUNCTION to generate the calendar.
Like the one Jeff Moden gifted me with here: http://www.sqlservercentral.com/Forums/Topic1320527-392-2.aspx#bm1322829
Be sure to use his and not...
July 4, 2012 at 10:53 pm
+1 to Chris for trying!
I guess now I'll need to check whether I'm using the right version of DelimitedSplit8K!
July 4, 2012 at 8:38 pm
Madhivanan and Jason,
Thanks for your interest and I hope that you find something in the work that will serve you well.
And GPO - thanks for stopping by again. The...
July 4, 2012 at 8:32 pm
CELKO (7/4/2012)
A million years ago, DEC was a conpany that made...
July 4, 2012 at 8:30 pm
Lynn Pettis (7/3/2012)
Steve Jones - SSC Editor (7/3/2012)
Lynn Pettis (7/3/2012)
July 4, 2012 at 8:26 pm
ChrisM@Work (7/4/2012)
dwain.c (7/4/2012)
Did you know that inside the CROSS APPLY if you...
July 4, 2012 at 8:17 pm
Apology accepted!
Still no joy on hitting the optimal solution though. It seems I'm short by one doublet and one triplet. My current results are:
1. 15 doublets (30 districts)
2....
July 4, 2012 at 8:07 pm
Viewing 15 posts - 3,226 through 3,240 (of 3,957 total)