Viewing 15 posts - 31 through 45 (of 85 total)
What's the problem with using UNION?
If all three procs and each section output the same fields then why not just order them the same? It's not good...
March 6, 2013 at 9:59 am
This is where you're going to have to give us more information about what you actually want. Cadavre's solution produces one row for each distinct value of length...
March 1, 2013 at 6:58 am
The best way to get the contents of an element (especially if the content may change from document to document) is to use the child axis
SELECT @XML.query('//Author/child::*') ;
February 26, 2013 at 10:50 am
Me too and the link to the Finding Fragmentation article results in a FeedBurner 404 Error.
February 21, 2013 at 9:21 am
One possible modification that you might want to make is to change this:
d2.Color AS [text()]
to this:
d2.Color AS [data()]
That way your items would have a space between them instead of being...
February 20, 2013 at 11:56 am
No, not a dashboard. I want to develop reports and give end users and nice interface with which they can modify filter criteria, sorting setting and output format for...
June 15, 2012 at 7:04 am
Just wanted to add a little clarification on the filtering and sorting. I'm not referring to passing parameters statically to the web service in order to do filtering and...
June 13, 2012 at 1:18 pm
I don't know why but I always think that OPENXML is the slow so I don't try it. Thanks for reminding me, it was about 10 times faster than looping...
May 8, 2012 at 2:39 pm
Already used cross apply and it's VERY slow as well.
Mark-101232 (5/8/2012)
select b.value('@UNIT_ID', 'nvarchar(100)'),
r.value('@DT', 'DATETIME'),
...
May 8, 2012 at 1:52 pm
The problem is that the DB server may be in one location while the clients could be spread throughout multiple time zones. So, I store the datetime data in...
November 11, 2011 at 10:25 am
My script s designed to update an existing database so I need to check for existence first. It's an indexed view so I don't really want to drop and...
May 5, 2011 at 9:35 am
I think the derived table would create an even more complicated query since the query in the derived table would require and additional join to create a key field in...
November 2, 2010 at 1:41 pm
I posted a message about this too. I am now 1-2 in installs. A 64-bit Vista system couldn't install, A 32-bit Vista system installed fine and a 32-bit...
November 21, 2008 at 1:18 pm
It's not the mouse. Curious if if anyone else can startup the installer and V64 and see if it is normal for all the setup apps to run twice.
November 6, 2008 at 12:26 pm
Oh, it launches by itself or I can run the setup.exe myself but the result is always the same.
November 5, 2008 at 1:25 pm
Viewing 15 posts - 31 through 45 (of 85 total)