Viewing 9 posts - 1 through 9 (of 9 total)
I have done it by using UNION group by of parent projects with projects.
June 24, 2009 at 8:44 pm
I have found solution,
using functions substring and charindex
Thanks
October 29, 2008 at 8:40 am
Thanks noeld,
I have added as another topic - CTE, view and Crystal.
October 17, 2007 at 11:55 am
Thank you Grant Fritchey
Busy with another urgent issue. I will have fun later.
Thanks!!
October 17, 2007 at 10:37 am
Thank you Jason for the reply.
I can't find examples CTEs within views. Tried to create - CTE has to be started with WITH and semicolon before! I am really...
October 17, 2007 at 10:25 am
Thank you noeld for your reply!!
I've made it yesterday and tested. It works well.
WITH Steps_CTE
AS
(
SELECT from_step_id, to_step_id, 1 as rlevel
FROM all_steps_vw
WHERE from_step_id = 0
UNION ALL
SELECT CTE.to_step_id,...
October 17, 2007 at 9:05 am
Thanks Ramesh for your time and sending the query! I appreciate it very much. I am struggling with CTE... May I explain once again what I need to do?
I...
October 16, 2007 at 11:54 am
Thank you ALZDBA for important info, but I am afraid I can't use this Assistant. I need to solve this problem by creating views in SQL Server.
October 16, 2007 at 8:17 am
Thank you for reply Ramesh. I will read regarding Common Table Expressions.
October 16, 2007 at 7:29 am
Viewing 9 posts - 1 through 9 (of 9 total)