No announcements
Found 1423584 threads
-
0 Votes
Order By Issue
I think its other way aroud the OP wants to desplay the value as last row i have updated abdallah's script DECLARE @t TABLE (ID INT, ...Answered | 5 Replies | 3629 Views | Created by obrienkev - Wednesday, December 16, 2009 1:12 PM | Last reply by Arif Hasan - Wednesday, December 16, 2009 2:36 PM -
2 Votes
How can I order results to be like Excel column names (A-Z, AA-AZ)?
., Z, AA, AB, ...., AZ From myTable Order by 1, 2,3, 4,...Answered | 4 Replies | 5825 Views | Created by Timothyjb - Tuesday, July 19, 2011 6:06 PM | Last reply by Timothyjb - Tuesday, July 19, 2011 8:02 PM -
2 Votes
SP 1 WebBrowser DrawToBitmap?
Let's say I want to create a browser in wpf that doesn't have the z-order problems (among others) by continuously taking screenshots of the browser control and then rendering it to ...Answered | 3 Replies | 11184 Views | Created by Otis B Driftwood - Tuesday, December 16, 2008 11:43 PM | Last reply by MichaelFriis - Friday, May 7, 2010 10:16 AM -
0 Votes
Z-order or occlusion with UI Automation?
Hello, Is it possible to determine using UI Automation if a field on the screen is fully or partially occluded by another window and, if so, which windows lie above ...Answered | 1 Replies | 2695 Views | Created by Lupestr0 - Wednesday, September 21, 2011 9:20 PM | Last reply by Aditya_msft - Thursday, September 22, 2011 5:13 AM -
0 Votes
Order by issue
You can try this simple form: Select OwningRefId, AddressLine1,AddressLine2, AddressLine3, AddressLine4, PostalCode from Address WHERE AddressLine1 + ...Answered | 4 Replies | 947 Views | Created by C-Sharp Mamba - Friday, September 19, 2014 1:37 PM | Last reply by Jingyang Li - Friday, September 19, 2014 3:08 PM -
3 Votes
/A/S/Z
The root cause of my lack of understanding was, I did not realize that the \A and \Z was basically like two pointers that said it needs to start here and end there or the answer is ...Answered | 7 Replies | 3552 Views | Created by Tyboriel - Wednesday, September 12, 2012 8:52 PM | Last reply by Tyboriel - Thursday, September 13, 2012 7:31 PM -
1 Votes
order by issue
select * from emp order by CAST(emp_app AS DATETIME)Answered | 5 Replies | 3566 Views | Created by Futurevision - Tuesday, September 29, 2009 4:46 PM | Last reply by TheSQLGuru - Tuesday, September 29, 2009 9:15 PM -
0 Votes
Rendering Charts with DrawToBitmap()
If not, there is some issue related to the rendering into the bitmap.Answered | 4 Replies | 8157 Views | Created by _daim - Sunday, October 18, 2009 5:12 PM | Last reply by _daim - Sunday, October 18, 2009 6:08 PM -
2 Votes
z-index for pushpins that on the same layer
So ordering by anything won't help and putting each user on different layer won't solve it either plus its overhead.Answered | 8 Replies | 885 Views | Created by MarinaA - Monday, October 3, 2016 10:45 PM | Last reply by Ricky_Brundritt - Wednesday, March 22, 2017 2:19 AM -
0 Votes
Labeling the "z" axis???
Z axis labels are not supported...Answered | 1 Replies | 3732 Views | Created by Jones265 - Tuesday, February 16, 2010 9:25 AM | Last reply by Alex Gorev - Tuesday, February 16, 2010 5:17 PM -
1 Votes
z
zAnswered | 3 Replies | 4855 Views | Created by ThePerfectWave - Tuesday, April 5, 2011 1:40 PM | Last reply by Emberstone - Tuesday, April 5, 2011 9:44 PM -
0 Votes
Datacontracts - Ordering issue
The order in the intellisense window is not affected by the Order attribute, it only affects the order of serialization and deserialization.Answered | 3 Replies | 3377 Views | Created by SGeek - Friday, December 10, 2010 3:41 PM | Last reply by Michael Green - Friday, December 10, 2010 5:46 PM -
4 Votes
insert select order by issue
Even if you get the desired order without an ORDER BY clause today, this could change tomorrow and break your code.Answered | 5 Replies | 2183 Views | Created by sqlman2011 - Tuesday, June 20, 2017 10:35 AM | Last reply by Dan Guzman - Tuesday, June 20, 2017 11:43 AM -
0 Votes
AdvancedFilter out-of-order issue
I guess one issue is: if the data prior to filtering is sorted, then I would expect the unique value list to be ordered in the same way.Answered | 5 Replies | 1189 Views | Created by SAF227 - Monday, December 31, 2012 5:39 PM | Last reply by Syswizard - Tuesday, January 1, 2013 3:58 PM -
0 Votes
Undo (CTRL+Z) command in .net:
Actually, I need equivalent of CTRL+Z in C# code.Answered | 4 Replies | 6544 Views | Created by Santosh Umarani - Monday, August 6, 2012 4:08 AM | Last reply by Adavesh - Monday, August 6, 2012 7:05 AM -
1 Votes
Ordering Problem?
This will complicate ordering a lot.Answered | 18 Replies | 4778 Views | Created by Jam_S - Friday, February 12, 2010 2:47 AM | Last reply by Naomi N - Friday, February 12, 2010 3:41 PM -
0 Votes
SSRS Column Order Issue
Generally, in order to get the average for each group, we can specify the expression like =Avg(Fields!Answered | 1 Replies | 9625 Views | Created by harlequintp - Thursday, December 9, 2010 9:01 PM | Last reply by Tony Chain - Monday, December 13, 2010 6:50 AM -
0 Votes
Sort Order with Special Characters
ORDER BY replace(col, '@', 'Z') Or if Z can appear in the data, you can try ORDER BY replace(col, '@', 'Ö') COLLATE ...Answered | 8 Replies | 4620 Views | Created by Shreepal Bhandari - Friday, July 28, 2017 11:20 AM | Last reply by Shreepal Bhandari - Wednesday, August 9, 2017 7:36 AM -
0 Votes
Problem with z-index on Bing Maps
One thing with z-index's is to watch the position properties.Answered | 1 Replies | 6079 Views | Created by AmbersEdibles - Friday, November 20, 2009 5:09 AM | Last reply by Ricky_Brundritt - Saturday, November 28, 2009 10:23 PM -
1 Votes
Issue with ORDER BY in T-SQL
SQL Server is free to return data in whatever order it chooses unless you specify ORDER BY.Answered | 24 Replies | 3567 Views | Created by GarinTiger - Wednesday, August 24, 2011 3:49 PM | Last reply by vinaypugalia - Thursday, August 25, 2011 5:27 AM
No announcements