The SQL APPLY operator allows you to invoke a table-valued function for each row returned by an outer table expression of a query. CROSS APPLY acts as a replacement for an INNER JOIN and only returns rows if there is a match on the join condition. Using CROSS APPLY in some instances will perform ...

learn more… | top users | synonyms

0
votes
2answers
97 views

Using CROSS APPLY for more than one column

Day #3 with SQL Server. I am trying to combine 2 columns of delimited data into one output from a Table Valued Function. Here is my data: I would like the data to be processed and placed into a ...
2
votes
2answers
176 views

CROSS APPLY with table valued function restriction performance

I have problem with CROSS APPLY with parametrised table valued function. Here is simplified pseudo code example: SELECT * FROM ( SELECT lor.* FROM LOT_OF_ROWS_TABLE lor WHERE ... ) AS ...
4
votes
1answer
64 views

Obtain maximum row_number inside a cross apply

I am having trouble in calculating the maximum of a row_number in my sql case. I will explain it directly on the SQL Fiddle example, as I think it will be faster to understand: SQL Fiddle Columns ...
1
vote
1answer
36 views

How do I query all of the child nodes from the parent?

DECLARE @xml AS XML SET @xml = CAST('<codes><pcc>DFC</pcc><pcc>MAI</pcc><pcc>PFS</pcc></codes>' AS XML) SELECT pcc.value('pcc[1]', 'varchar(max)') AS ...
1
vote
3answers
142 views

SQL cross apply

I have a SQL table which contains audit information: GroupId AuditDate ID FirstName LastName 1 01/06/2011 123 Michael Jackson 1 01/09/2010 123 M J 1 01/06/2009 ...
0
votes
1answer
154 views

Cross Apply using XML Path(comma delineated) - Remove Max Row if > 1

What I want is if it returns more than 1 then remove the MAX([year]) Row but return the rest. Meaning if Cross Applyselect returns 4 records return only 3. If 3 then return only 2. If 2 it returns ...
0
votes
1answer
107 views

Efficient Cross Apply with a CLR integrated table function

In SQL Server, I have a CLR integration based table valued function, GetArchiveImages. I call it something like this: SELECT ... FROM Items CROSS APPLY GetArchiveImages(Items.ID) AS archiveimages ...
1
vote
3answers
101 views

Linq To SQL. How to prevent using Apply operator

I have a query: var contactInfos = from person in persons join tempDesiredCar in desiredCars on person.contact_id equals tempDesiredCar.groupEntity_id ...
0
votes
1answer
411 views

Cross Apply to get child parent value from Xml in SQL Server

I have following xml: <root> <row value="US"> <col value="00">Jon</col> <col value="01">David</col> <col value="02">Mike</col> ...
1
vote
1answer
105 views

Devart Oracle Cross Apply Exception

I´m running a problem where in one machine the code works and another don´t. Apparently we´re using the same Devart dotConnect for Oracle version (6.80.325.0). The problem is when we have a subquery ...
0
votes
0answers
40 views

Including Actual Query Plan Explodes Execution Time

I'm using SQL Server 2005 and I've got a fairly complex query which is taking a second or two to execute. I wanted to debug performance using the query plan, but when I include the actual execution ...
0
votes
1answer
104 views

cross apply in sql with sum

I have the following query: insert into [MyDB].[dbo].[Reports_ActivityStat] (ActivityID,TaskID,LS_HowOthersAnswered,LS_ImproveMyChances) ( SELECT ActivityID=tasks.ActivityID, TaskID=tasks.ID, CAST( ...
1
vote
2answers
166 views

T-SQL Using Cross-Apply with Delete Statement

I have the following tables: RecordID 101 102 103 104 105 106 TableOne 101 102 103 104 TableTwo TableThree 101 102 and I need to delete the RecordsID rows, that are not included in the other ...
1
vote
1answer
150 views

Using Table valued Function in join

There is a Table valued function which gives multiple rows as output and there are 2 columns as output. Now I want use this function in the query for all the employees in the employees table I am ...
0
votes
2answers
76 views

Cross Apply of UDF missing Results

I am performing a SQL query similar to the following SELECT fn.FullName, pn.LastName, pn.FirstName, pn.MI FROM Source.dbo.tblPerson fn cross apply dbo.ParseFullName(fn.FullName) pn the result ...
2
votes
1answer
703 views

Extracting XML data in SQL - too many cross apply statements

I have an xml document containing details from a Statement: <Statement> <Id /> <Invoices> <Invoice> <Id /> <Date /> <AmountDue ...
2
votes
1answer
126 views

The equivalent of cross apply and select top

I have table (script below): use master go -- -- if db_id ( 'CrossApplyDemo' ) is not null drop database CrossApplyDemo go create database CrossApplyDemo go use CrossApplyDemo go -- if object_id ( ...
0
votes
2answers
62 views

Invalid obj name in stored procedure

I have a stored procedure where I am using cross apply to get a field "tagtext" from a table and then put each tagtext together as a entry in a new field called Tags in another table. I'm not to keen ...
0
votes
0answers
114 views

Improving performance for processing multiple days and returning summarized data

This is my first post. I have a table of reservations and I need to calculate accrued nights and revenue by weekday and weekend for the current year and prior 3 years dynamically. The following code ...
2
votes
2answers
761 views

Analogue to CROSS APPLY

Can anyone say what is the best way to substitute CROSS APPLY in the next sql query ? SELECT * FROM V_CitizenVersions CROSS APPLY dbo.GetCitizenRecModified(Citizen, LastName, ...
2
votes
1answer
523 views

CROSS APPLY Style versus Performance

Should I use a separate CROSS APPLY for each aliased expression or define multiple expressions in the same CROSS APPLY where possible? I am refactoring many very complicated SQL queries (often four ...
0
votes
1answer
563 views

Create indexed view in SQL Server 2008

CREATE TABLE Storage ( ID INT IDENTITY(1,1) PRIMARY KEY, data XML NOT NULL ) GO INSERT INTO Storage(data) VALUES(' <footballteams> <team manager="Benitez"> ...
1
vote
2answers
493 views

SQL Server: split record

I have a table like this: account | check1 | check2 1 | 100]200]300 | 101]209]305 2 | 401]502 | 404]511 3 | 600 | 601 I ...
1
vote
2answers
525 views

Cross Apply - LINQ to Objects

In T-SQL you can use CROSS APPLY to get all possible variations between the table left and right from the statement. Now I have the following situation in C# and I hope there is a way to solve my ...
0
votes
1answer
481 views

when choose CROSS APPLY and when EXISTS?

I read, CROSS APPLY is just like JOIN.. and I think JOIN can be accomplished with EXISTS also (correlated sub query) I am confused, what is the difference in using CROSS APPLY and EXISTS? when ...
6
votes
1answer
315 views

simplify SQL statement by using CTE

I have a query like the following: SELECT A.a, A.b, B.c, (CASE WHEN ... THEN ... ELSE ... END) AS CalculatedValue, B.d FROM dbo.TableA A INNER JOIN dbo.TableB B ON (...) WHERE (CASE WHEN ...
3
votes
1answer
596 views

Read xsi:type from T-SQL

I would like to read the xsi:type attribute from the "current" node in a SELECT statement. My XML looks like this: <ns2:data xmlns:ns2="http://mynamespace"> <OrderLineItems> ...
3
votes
4answers
1k views

MySQL - Get Last Entry by Time (or first if Null)

I have the following SQL Server 2008 query: SELECT T.*,Data.Value FROM [Table] T OUTER APPLY (SELECT TOP 1 E.Value FROM [Table2] E ORDER BY CASE WHEN T.TDateTime >= E.EDateTime then 1 ...
0
votes
1answer
175 views

Best way to join the two tables *including* duplicates from one table

Accounts (table) +----+----------+----------+-------+ | id | account# | supplier | RepID | +----+----------+----------+-------+ | 1 | 123xyz | Boston | 2 | | 2 | 245xyz | Chicago | ...
4
votes
3answers
690 views

CROSS APPLY issue - filtering a many-to-one relationship

I have found an issue with how MS SQL Server handles CROSS APPLYs. The database I'm working with has a pricing system with the following schema: Service -> Price Model <- Price Component ('->' ...
1
vote
2answers
1k views

Using cross apply in update statement

Is it possible to use the cross apply clause in the from part of an update statement, in SQL Server 2005?
1
vote
1answer
2k views

How to use CROSS APPLY XML PATH

How can I use CROSS APPLY and FOR XML to normalise the table which contains a list for informartion? Product Orderid P1 1,2,3 P2 1,3 P3 1 It should be normalised like below P1 ...
3
votes
3answers
613 views

Using CTE instead of Cursor

I have the following table structure. I just want to update SubId to all the rows where it is null and where the RawLineNumber is ascending by 1 and also the SeqNumber ascending by 1. ...
1
vote
0answers
211 views

How to optimize query

I am using Linq2Sql as an ORM and experiencing following problem: I have 2 tables, lets call them client (id, name) and client_action (id, clientid, date). 'client' table contains clients, and ...
0
votes
1answer
2k views

cross apply in sql server

recently i was having a problem in my stored procedure, it was working too slow, so one of my colleague suggested cross apply, he said that cross apply work as inner join but without the need of ...
1
vote
2answers
7k views

Get the count of nodes in an XML field XQuery SQL Server 2008

I am trying to get the count of nodes in an XML field. but I always see 0 as the result. Here is how my query looks like. DECLARE @XmlTable TABLE (XmlResult XML) INSERT INTO @XmlTable EXECUTE ...
1
vote
1answer
185 views

SQL complex unions

This is a little tricky to describe, but hopefully there is a solution. I have a UDF which takes an ID and returns a table. Is there a way I can do a SELECT for these IDs and perform a UNION of the ...
2
votes
1answer
158 views

Preferred way to access data within XML columns in SQL Server

Background Recently I've started to use XML a lot more as a column in SQL Server 2005. During a bit of downtime yesterday, I noticed that two of the link tables I used a really just in the way and it ...
2
votes
1answer
1k views

How to rewrite CROSS APPLY to INNER JOIN to make the view indexed

On a separate thread I got a working example on how to translate my stored proc to a view, that will hold customer names to orders mapping, where orders are comma-separated lists of orders, including ...
4
votes
1answer
286 views

CROSS APPLY a FREETEXTTABLE

MS SQL Server 2005: table1 has a full text index. I want to run multiple freetexttable searches against it in a single query, but the two attempts i have fail. any help would be appreciated, thanks! ...
3
votes
1answer
1k views

LINQ to SQL cross apply

I would like to create a query with a cross apply into a user defined table value funtion in LINQ. The SQL would be really rather simple as below: SELECT * FROM MyTable mt CROSS APPLY MyTVF(mt.id) ...
7
votes
2answers
619 views

Crazy SQL question: How to do a sort of cross apply with a pivot?

Customer has shortcuts in their data where they have a quantity of records in a field. When I parse them, I need to manufacture records, one for each quantity, incrementing the "identifier" by 7 days ...
204
votes
7answers
97k views

When should I use Cross Apply over Inner Join?

What is the main purpose of using CROSS APPLY? I have read (vaguely, through posts on the Internet) that cross apply can be more efficient when selecting over large data sets if you are partitioning. ...