0
votes
3answers
67 views
Table to XML using TSQL with facet grouping and counts
I have a requirement to turn a table into XML with counts for values.
e.g.
Table
Id , Type, AnotherType
1, This, Widget
2, This, Fimble
3, That, Widget
I want the output something like this. …
1
vote
3answers
31 views
Problem with CTE
I am executing
;with cte as
(
select 1 as rn, 'name1' as nm
union all
select rn+1,nm = 'name' + CAST((rn+1) as varchar(255))
from cte a where rn<10)
select * from cte
and is receiving the error
…
1
vote
1answer
54 views
CTE vs multiple inserts
As we all know, CTEs were introduced in SQL Server 2005 and the crowd went wild.
I have a case where I'm inserting a whole lot of static data into a table. What I want to know is which of the …
0
votes
4answers
64 views
TSQL CTE and a Graph of Sorts
With a table of the following structure and sample data:
TableActivity
-------------
Type VARCHAR(8)
Activity VARCHAR(8)
RelatedActivity VARCHAR(8)
Type Activity …
0
votes
1answer
45 views
multiple cte in single select statement where ctes can refer to each other …
Expanding on following question (Multiple Select Statement) I would like to know if I can do following:
WITH
cte1 as (
SELECT * from cdr.Location
),
cte2 as (
SELECT * from …
1
vote
1answer
40 views
SQL Azure and support for CTE syntax?
Does anyone know if SQL Azure supports CTE syntax? Specically; WITH, OVER, ROW_NUMBER(), PARITION BY
1
vote
4answers
99 views
Re-Sequence a set of data in SQL Server
I have a table of values like this:
CREATE TABLE
(
Name1 VARCHAR (50),
Name2 VARCHAR (50),
Sequence INT
)
In this table I have rows like this
'Bob', 'Jones', 1
'James','Ant', 2
I …
0
votes
1answer
49 views
how would you get many top root?
I have a parent/child relation table, many to many
parentid int not null
childid int not null
let say I have company a, b, c, d, e
a
..b
....c
..c
d
..e
....b
......c
I got this query to return …
2
votes
3answers
251 views
Incorrect syntax near the keyword ‘with’…previous statement must be terminated with a semicolon.
Im using SQL Server 2005 . I have 2 WITH Clauses in my stored procedure
WITH SomeClause1 AS
(
SELECT ....
)
WITH SomeClause2 AS
(
SELECT ....
)
But the error occurs
Incorrect syntax near the …
0
votes
2answers
236 views
SQL Server recursive CTE and paging
I have this table
CREATE TABLE [dbo].[friend_blocked_list](
[subdomain] [varchar](50) NOT NULL,
[un] [nvarchar](50) NOT NULL,
[friend] [nvarchar](50) NOT NULL,
[is_blocked] [bit] NOT NULL,
…
0
votes
1answer
119 views
(SQL Server 2008) - SQL question regarding CTE and joins :-(
How can I retrieve the following results?
user | date | login time | logoff time
I wish to print out every day in a given time period with matching login and logoff time which is written is table …
0
votes
0answers
68 views
SQL Common Table Expression and an nested select
Group, I am looking for a suggestion to speed up my query. I am using a CTE to organize my data. I am pulling customer records based on account numbers, customertype and length they have been a …
0
votes
1answer
93 views
How to: select normalized view from denormalized data using CTE?
This is a very standard newbie question, but I am looking for an expert clever way to do this with little code. (I know how to do this long hand, with procedural code and cursors, so we can skip that …
1
vote
2answers
199 views
Reorder nodes in SQL Hierarchy data type
Using Hierarchy data type on SQL 2008. Nodes in my hierarchy go like this:
value node
36 /8/1/
38 /8/2/
34 /8/3/
40 /8/4/
42 /8/5/
44 /8/6/
46 /8/7/
48 /8/8/
I'd like to …
0
votes
1answer
132 views
SQL query optimization (CTE + range function) in SQL Server 2005
I'm wondering whether such query could be potentially optimized.
I've hugely simplified it, and you see the core of it.
with Rec (Id,Name,ParentId)
as
(
select Id,Name,ParentId from Departments …
