Viewing 15 posts - 3,676 through 3,690 (of 5,504 total)
Wow! You didn't only set a very high standard with your first article (CROSS APPLY) - you continue to hold that level with each and every article since! Once again:...
April 26, 2010 at 1:16 pm
The ORDER BY clause used with ROW_NUMBER specifies the order within in each PARTITION BY group. You might want to try
SELECT ROW_NUMBER() OVER (PARTITION BY P.prop_seql
ORDER BY ASV.booking_date...
April 26, 2010 at 12:54 pm
Basically, the SB does the same like the job that did run every minute (data transfer across servers and email notification).
I haven't had the need to call an external application...
April 26, 2010 at 12:47 pm
Lowell (4/26/2010)
...
in the past, you used to be able to use NET SEND to all the machines on a network; however, because of someone adapting that to throw spam around,...
April 26, 2010 at 12:10 pm
gregory.anderson (4/26/2010)
The question is: is it still required to store the successful import into PermitsInserted?
It is still required because not ALL of the records are getting converted. There were some...
April 26, 2010 at 10:14 am
antonio jv (4/23/2010)
April 25, 2010 at 7:37 am
Hmmmm, .....
It seems like there is not much more room for speeding the current query up...
The question is: is it still required to store the successful import into PermitsInserted?
Basically, we...
April 24, 2010 at 4:52 pm
@jeff: it's not that I'm actually advertising XML, I'm sure not. 😉
I just had to get used to it in order to get those "man in the middle" out of...
April 24, 2010 at 3:46 pm
Jeff Moden (4/24/2010)
...
Heh... I'll take that correction... thanks, Lutz. I should have said that both XML and CSV's are a form of denormalization that should be avoided in favor...
April 24, 2010 at 10:20 am
Jeff Moden (4/23/2010)
...
I agree. IMHO, storing raw XML is as bad or worse than storing CSV's. Both are denormalized... both require special handling... neither can be optimized.
I believe...
April 24, 2010 at 2:29 am
Rob Schripsema (4/23/2010)
April 23, 2010 at 5:21 pm
You could use UNPIVOT followed by a PIVOT statement. See BOL (BooksOnLine, the SQL Server help system usually installed together with SQL Server) for details or post some ready to...
April 23, 2010 at 4:51 pm
Assuming Amount_1 and Amount_2 will always be in a consistent order (ege. being able to sort it by and ID column which is unfortunately not present (or at least not...
April 23, 2010 at 4:46 pm
Would it be possible for you to shred the xml files into relational table(s) (including proper indexing)? Maybe just with holding the values queried frequently?
A question on top: Do you...
April 23, 2010 at 2:51 pm
Is this thread related to your other recent one by any chance? 😉
April 23, 2010 at 1:41 pm
Viewing 15 posts - 3,676 through 3,690 (of 5,504 total)