Viewing 15 posts - 1,396 through 1,410 (of 1,825 total)
So this is a running total , yes?
See Jeff Modens article
October 14, 2009 at 2:51 am
Not knowing your data , or having any sample data to test against , this is my best guess...
Select YourSourceTable.Id,
case when JobCategoryRecord.TopTaxonomyId =...
October 13, 2009 at 7:15 am
Ok , first off thats and estimated plan not an actual plan, what i was looking for , amongst other things, was a difference between the actual rowcount and...
October 13, 2009 at 3:40 am
Whats the exact error ?,i did change the table to a temp one.
this script runs fine.
DROP TABLE #WCE_COURSE_DELEGATE_LINK
GO
CREATE TABLE #WCE_COURSE_DELEGATE_LINK (
uniqueid int IDENTITY(1,1)...
October 13, 2009 at 3:30 am
Is this a bill of materials ?
Try this...
http://sqlblog.com/blogs/john_paul_cook/archive/2009/10/11/bill-of-materials-where-used-query.aspx
October 13, 2009 at 2:05 am
Please keep your issue to one post.
http://www.sqlservercentral.com/Forums/Topic801931-360-1.aspx
October 13, 2009 at 1:53 am
is this what you are trying to achieve ?
with cteDelegates(course_code, delegate_name, delegateid ,rown)
as
(
Select course_code, delegate_name, delegateid,ROW_NUMBER() OVER (PARTITION BY DELEGATEID ORDER BY DELEGATEID)
...
October 13, 2009 at 1:43 am
Without a question from the OP , we shall never know 🙂
October 12, 2009 at 11:08 am
The overhead of calling a function is quite large
http://www.sqlservercentral.com/Forums/Topic790541-145-2.aspx#bm790978
October 12, 2009 at 10:19 am
Try this page
October 12, 2009 at 9:08 am
Silverfox (10/12/2009)
4:1 odds it is on the group predicate.Anyone want to take that bet on 😀
I'll go for "whats then velocity of an unladen swallow" 😀
October 12, 2009 at 8:17 am
In the past, i have solved this sort of issue by having an extra column on the target table to store the source id. That way you have something...
October 12, 2009 at 7:35 am
Why are you converting to a varchar ? varchar(what) by the way ? if you dont specify it defaults to 1
select Top 10 Firstname, Middlename, surname, year(dateofbirth) - year(Getdate()) from...
October 12, 2009 at 7:34 am
Viewing 15 posts - 1,396 through 1,410 (of 1,825 total)