Viewing 15 posts - 4,201 through 4,215 (of 5,111 total)
February 24, 2017 at 8:19 am
Maybe..?WITH RN AS (
SELECT t.[STATUS],
t.RequiredByDate,
t.WorkOrder,
DENSE_RANK() OVER (ORDER BY t.RequiredByDate DESC)...
February 24, 2017 at 7:16 am
MSDN gives pretty good detail and examples on how to use these functions:
LEAD (Transact-SQL)
LAG (Transact-SQL)
They effectively work in the same way,...
February 24, 2017 at 5:57 am
I have a matrix report and the query used on the report
February 24, 2017 at 5:04 am
What was your actual aim here, was it for grouping, display purposes? Changing the data type of a field (in this case DATE to STRING) isn't always the best idea....
February 23, 2017 at 5:32 am
February 22, 2017 at 7:44 am
Insert a List object into your report, and set it to use the required dataset in its Tablix Properties. Then create a grouping on that list for your Country field...
February 22, 2017 at 4:28 am
It's a definite shame for the newer users, who clearly have tried their best, but don't quite understand some of the principles. The ones that maybe do post a screenshot...
February 22, 2017 at 2:11 am
Whydid you use the old Sybase syntax for your insertion statement? Itwas replaced...
February 22, 2017 at 2:05 am
February 22, 2017 at 1:51 am
Please supply DDL and sample data in a digestible format for T-SQL. You'll get a much quicker answer.
One solution, using PIVOT:CREATE TABLE #Sample (ID VARCHAR(10),
February 21, 2017 at 5:31 pm
Can you supply some DDL and sample data? We can't access your data, so we need something to work with.
Thanks.
February 21, 2017 at 7:51 am
February 21, 2017 at 7:34 am
As the others have said, this is presentation layer. If you were to reduce the accuracy of a column that contained 0's, you would have to apply that logic to...
February 21, 2017 at 7:31 am
0.00 does equal 0, rounding it is still going to give you the same result (0.00). What is it you are after here exactly, only the Integer part of the...
February 21, 2017 at 7:13 am
Viewing 15 posts - 4,201 through 4,215 (of 5,111 total)