Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

90
votes
6answers
31k 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. ...
7
votes
2answers
414 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 ...
4
votes
1answer
154 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
35 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
2answers
140 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 ('->' ...
3
votes
3answers
193 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. ...
2
votes
1answer
70 views

MySQL - Equivalent of CROSS APPLY/OUTER APPLY

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 ...
2
votes
1answer
100 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
431 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 ...
1
vote
2answers
157 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
446 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 ...
1
vote
0answers
114 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 ...
1
vote
1answer
76 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 ...
1
vote
1answer
478 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) ...
0
votes
0answers
16 views

How to rewrite a CROSS APPLY in SQL?

I am developing a stored proc in SSMS 2008. Currently it uses a couple CROSS APPLY statements that I want to change to simplify and make this SP run faster. I tried converting these cross applies to ...
0
votes
1answer
67 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 | ...
0
votes
1answer
219 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 ...
0
votes
2answers
1k 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 ...