A temporary result set that is defined within the execution scope of a single SELECT, INSERT, UPDATE, DELETE, or CREATE VIEW statement.
0
votes
0answers
43 views
COMPLEX SQL RECURSIVE STATEMENT
I'm fairly new to SQL Server - more so writing queries. I have a query which I'm executing via EF5 Entities which runs OK (ish) but I suspect could be improved with a stored procedure. Unfortunately ...
-1
votes
0answers
30 views
Have someone a function in SQL that given a initial date, a day number and a final date calculate next matching day number and month? [closed]
I would like to know if someone have a function in SQL that given a initial date, a day number, a frecuency and a final date calculate next matching day number and month?
For example
...
1
vote
1answer
52 views
Execute stored procedure programmatically inside recursive CTE instead of Cursor
I want to implement recursive CTE instead of following cursor because it takes lot of time to insert data by executing stored procedures programatecally inside cursor especially when there is larger ...
0
votes
0answers
40 views
How do I get a recursive daily average for one month?
I need a daily average for an entire month, but the trick is that all of the clients have different start and end dates. For example, some clients are only enrolled for part of the month. Assume ...
0
votes
1answer
15 views
Display records using cte in sql
I have table as follows:
Date Name TypeID
---------------------------------------------------
01/01/2012 01:50 abc 70
01/01/2012 02:20 ...
2
votes
3answers
35 views
How do I get a daily average for one month?
How do I return the daily average for an entire month?
select count(distinct people_id)
from #enrollments_PreviousMonth
where program_modifier_id = 'E1AA7A36-0500-4BAE-A0AA-D9E0BC91A6F3'
AND ...
0
votes
2answers
46 views
Returning all children with a recursive select
Good day everyone! I've got a graph. First, I know how to build simple recursive selections. I read some info on msdn.
In this image you can see that (for example) the top node of the graph, which ...
0
votes
1answer
61 views
How to join two equivalent tables which are the result of the previous recursive select in SQL Server
Good day everyone! Firstly, I'm sorry for my poor english. Well, I've got a question that you can read in the title of this message.
SQL Server returns this message(Error 253) when I'm trying to ...
1
vote
1answer
40 views
Join a Query with another Query while using a common table expression
I have the following 2 queries:
Query 1:
WITH JobTransactionsSumTypes AS
(
SELECT
[Job],
[Cost_Code],
SUM(CASE WHEN [Transaction_Type] = 'AP cost' AND [Commitment] <>'' ...
0
votes
2answers
29 views
How to formulate a TSQL CTE expression for total counts?
I have a table with raw data that I want to return distinct people_id counts from. How can I do this in a CTE if the counts have different groupings? Here is what I have so far:
;with cte as
...
1
vote
2answers
22 views
dml query within WITH sql
I was just supposing that I could put a set query within WITH statement in SQL Server 2008.
So I wrote a few lines of code:
with temp as
(
SELECT row_number() OVER (ORDER BY ...
3
votes
1answer
73 views
A tree structure in SQL Server that needs to be flattened in a very special way
We have a table which looks like this :
CREATE TABLE Hierarchy (EmployeeID int not null, parentID int, orderlimit int)
CREATE TABLE Order (EmployeeID int not null, OrderSize int)
It's supposed to ...
0
votes
1answer
29 views
Do we need WRITE access to DataBase to use CTE(Common Table Expressions)
I have a requirement of not using #tempTables in my query because in future we are not going to have write access to intended DB. So I have replaced my #tempTables with CTE. But I am still doubtful ...
4
votes
1answer
53 views
Get specific nodes path from root tsql
I want set data in table with tree structure.
DECLARE @temp TABLE
(
Id INT
, Name VARCHAR(50)
, Parent INT
)
INSERT @temp
SELECT 1,' Great GrandFather Thomas Bishop', null UNION ALL
...
0
votes
0answers
17 views
Different order in a data from a select using OFFSET FETCH server 2012 combined with a WITH (Common table expression)
I have a select that return some IDs with an specific sort and add there the Row_Number().
The problem is if I declared the variable used on the offset is different to if I hard code it on the query.
...
-1
votes
0answers
40 views
Pivoting Time and Attendance
I'm working on a TnA (Time and Attendance) query which allows input dates (from & to).
The problem is that I'm getting duplicates when someone clocks in and out twice when pivoting. See picture.
...
1
vote
1answer
54 views
Optimize For in CTE or Subquery
Setup:
I'm experimenting with the OPTIMIZE FOR clause in SQL Server 2008 R2. I've put the following at the end of my query.
OPTION (OPTIMIZE FOR (@UserType= 'M', @Date UNKNOWN))
Issue:
However, ...
0
votes
1answer
25 views
How to get rid of #temp tables and CTE in SQL Server
As such I have asked one question on how to get rid of #temp tables.
How to get rid of #temp tables
And got resolved too.. But I don't want to use CTE as well.
Any thought, how to merge all these ...
0
votes
1answer
76 views
Select all months between 2 dates and repeat the result for each year
I need to generate a list of months between 2 dates and then repeat the result for each year that i have with SQL Server 2012.
Here's an example:
StartDate = 2010-11-01
EndDate = 2011-01-01
...
1
vote
1answer
129 views
T-SQL :Parent-Child Hierarchy - based on @Variable
DECLARE @Categories TABLE (
CategoryID INT,
CategoryName VARCHAR(20),
ParentID INT )
INSERT INTO @Categories(CategoryID, CategoryName, ParentID)
SELECT ...
0
votes
2answers
39 views
Sql Server select and update X rows
I'm using Sql Server 2012.
I need to select rows from a table for processing. The number of rows needs to be variable. I need to update the rows I'm selecting to a "being processed" status - I have ...
0
votes
2answers
71 views
Get records containing all the child records in sql server
I have heirarchical data in sql server.
Follwing are my data heirarcy tree.
Id Name ParentID
1124 ABC 2
1125 BCD 1124
1126 EFG 1124
1127 HIJ ...
0
votes
1answer
30 views
How to set the “Order” of Items in a hierarchy table in an easier and shorter way?
Refering to this post, here is the overall question and codes:
declare @tbl table (MenuItemID uniqueidentifier, PID uniqueidentifier, MenuID uniqueidentifier, SO tinyint, lvl tinyint)
;WITH
cte ...
0
votes
2answers
34 views
How to set the “Order” of Items in a hierarchy table?
The result of a CTE is stored in a variable table name @tbl.
I want to set the Order (SO) of MenuItems by MenuItemID, ParentID (PID) and MenuID. To do so I tried to use a Cursor, but it's too ...
1
vote
0answers
14 views
Sharepoint 2010 DataViewWebPart with Parameter
So after much frustration I finally created a sql server data source with a single parameter inside of Sharepoint 2010 Designer. The query is a common table expression (CTE) which runs just fine from ...
0
votes
3answers
62 views
how do I order by the results of multiple union statements?
I can't use a common table expression:
WITH cte
AS (SELECT [StationID],
[LastDistribution]
FROM [DB1].[dbo].[ProcessingStations]
...
-1
votes
1answer
44 views
CTE loop in loop
situation: I got 2 tables. One where there are 2 fields StartDate & EndDate. And one table where there is only one field date. So when you got 3 days between Start- and Enddate. He must insert 3 ...
2
votes
1answer
69 views
Combine two SELECT queries in PostgreSQL
I would like to combine two select queries with UNION.
How can I use the result from the first SELECT in the second SELECT?
(SELECT carto_id_key FROM table1
WHERE tag_id = 16)
UNION
(SELECT * ...
-1
votes
2answers
49 views
why cte recursive returns just the first row?
Please someone take a look at this CTE and tell me what's wrong with it? It just returns the first row (anchor).
EDIT:
This one works at it should, but I wonder what's wrong with the tables and ...
0
votes
1answer
39 views
Common Table Expression in PostGreSQL
I am just learning the CTE and i want to create the dynamic query inside the WITH clause.
Below is what i have written code.
WITH name1 AS (
SELECT schema_name as my_schema
FROM ...
0
votes
0answers
44 views
How to effectively select data from a recursive CTE
Microsoft SQL Server 2008 R2+
How to filter v1 based on v1.AttributeParentId = ... effectively?
I have one view in which I have a CTE which nicely formats the data hierarchy. This is a standard data ...
2
votes
2answers
64 views
PostgreSQL: using foreign keys, delete parent if it's not referenced by any other child
I have an example situation: parent table has a column named id, referenced in child table as a foreign key.
What I want to achieve: when deleting a child row, delete the parent as well if it's not ...
0
votes
1answer
56 views
Error using INSERT and WITH statements together
PostgreSQL: v9.2 on a Windows machine.
UPDATE: the version of postgres on the server is 9.0, the version on my machine is 9.2.1.
I am trying to use the following query to update a table I have ...
0
votes
0answers
39 views
Last and next gateway not showing correctly
Hi I have following query, it's a query that shows the next gateway info of 1 project.
But I want to join this as a CTE to another query but I need to change this [Gateway].[ProjectFk]=744 because the ...
1
vote
1answer
95 views
Recursive CTE SQL Query Help Needed
I am using SQL Server 2012 and need to write a recursive SQL query to traverse back up the hierarchy (on the same table) to return a parent with a certain condition on its tuple.
I have setup this ...
-2
votes
2answers
75 views
What key columns to store in sql temp table [closed]
If I have to use temp tables, I am considering two approaches when storing data.
One is to put all needed keys in temp table so I don't have to do joins again on original tables, and other is just ...
0
votes
2answers
63 views
Group by date and and check for continuous dates
I have a set of data like this
date1 Price Availability ServiceID
2012-10-01 50 1 5
2012-10-02 60 1 5
2012-10-03 60 1 5
2012-10-04 60 1 ...
1
vote
1answer
184 views
Teradata SQL Syntax - Common Table Expressions
When using multiple CTE's in MSSQL 2008, I normally separate them with a comma.
But when I try this in a Teradata environment, I get an error with the syntax.
Works in MS SQL:
WITH CTE1 AS
(SELECT ...
2
votes
1answer
105 views
Indexing views with a CTE
So, I just found out that SQL Server 2008 doesn't let you index a view with a CTE in the definition, but it allows you to alter the query to add with schemabinding in the view definition. Is there a ...
0
votes
2answers
116 views
Efficient way of filling up the table with million empty rows
Do you know any efficient way of filling up the table with huge number of empty rows? Inserting them using WHILE clause is not really efficient. There is definitely better way of filling up the table ...
1
vote
2answers
129 views
Sql Server query for tree path of one item
I need a SQL query giving me the complete tree path of one item. The tables Looks like this and there is a 1:n relation between MyItem_MyItemId and MyItemMapping_MyItemId.
Table MyItem:
...
1
vote
1answer
27 views
I want to join tables and combine similar informations that they have
I have two tables, I want to join the two tables and combine the values from table 2 that the table1 has. Just like this:
Table1
------------
Column1 | Column2
------------
James| 5
Bond | 3
...
0
votes
0answers
75 views
Removing merged paths from CTE recursion
I have a system of paths that need to be traced. I would like the trace to occur without double counting branches that reconnect after branching out. So, for the following example, I would like to ...
0
votes
1answer
66 views
How to write a multi-parameter CTE script?
I am trying to write a TSQL script for an SSRS report that uses a CTE to select records based on the parameters chosen. I'm looking for the most efficient way to do this, either all in TSQL and/or ...
0
votes
0answers
65 views
UPDATE using CTE; When does table locking occur?
I am wondering if the CTE is going to lock SampTable for the entirety of the Update involving the CTE or if it will leave SampTable unlocked until after the CTE has been built and then only lock it ...
0
votes
2answers
141 views
Materialize Common Table Expression in Greenplum
Is there a way to force Greenplum PostgreSQL to materialize a subquery in a WITH clause like what MATERIALIZE and INLINE optimizer hints do as below in Oracle?
WITH dept_count AS (
SELECT /*+ ...
0
votes
4answers
99 views
How to develop a recursive CTE in T-SQL?
I am new to recursive CTEs. I am trying to develop a CTE which will return all of the employees under each manager name. So I have two tables: people_rv and staff_rv
People_rv table contains all of ...
7
votes
0answers
261 views
Problems understanding intermittent inconsistencies when loading data with SSIS package
The problem
During the passed few months the below described procedure has worked without any problems a vast majority of the times it has run (on 2008 r2). We have, however, three instances of ...
1
vote
2answers
56 views
SQL Parent/Child CTE Ordering
I'm trying to create a forum setup where you can comment on specific posts and have the replies show immediately below the parent in date order. There will only be one sub-level below the parent. ...
0
votes
1answer
107 views
How to use Oracle CTE for such query?
I have a query that looks like following:
SELECT m.Name, (m.Value + NVL(a1.Value1, 0) + NVL(a2.Value2,0) + NVL(a3.Value3,0) "Value"
FROM m MainTable
LEFT JOIN Additional1 a1 ON (...)
LEFT JOIN ...




