Viewing 15 posts - 1 through 15 (of 249 total)
Adding any of those lines would cause an error due to the ; at the end of the previous line of code.
April 12, 2018 at 3:36 am
Having is last not group by. Answer is wrong.
September 28, 2017 at 10:02 pm
March 13, 2017 at 10:08 am
Don't know what the question should have been for that set of answers. Certainly not an error. +1
June 1, 2016 at 3:01 am
The correct answer is commented out so would return nothing. Are we to guess that the first select is commented and the second is not? Two poor questions to...
December 31, 2015 at 12:44 am
What am I missing here?
The CustomerId in the subqueries Select list and Order By has not been qualified with the table alias, so would give an ambiguous column...
October 20, 2015 at 11:15 pm
Use a subreport within the invoice to hold the invoice lines.
1. Report (1) - This is primarily the invoice header dataset. Include in a tablix of your choice. ...
July 16, 2014 at 7:44 am
mister.magoo (7/16/2014)
Did you try out with the sample data?When i tried that method it came up with #error for the non numeric item....
Yes, rdl includes the query as written but...
July 16, 2014 at 7:25 am
Using a single textbox cell within a tablix you can :
1. Set the value of the cell using an expression as :
=IIF(ISNUMERIC(Fields!Value.Value),VAL(Fields!Value.Value),Fields!Value.Value)
2. Set the format property of the cell as...
July 16, 2014 at 6:45 am
This is two's complement numbers being used.
When converting down from varbinary to an integer data type you only get the last (least significant) byte. In this case the least...
July 15, 2014 at 7:23 am
Paul, probably different understanding of the word USE. I took it to mean "support" rather than "need". If I had read the question as was probably intended then...
July 1, 2014 at 2:50 am
Thanks Andy for the attempt at creating another question.
But the question is very ambiguous and wantonly misleading again. It seems to ask which of the three HA/DR...
July 1, 2014 at 2:35 am
Koen Verbeeck (6/18/2014)
The answer is incorrect.The question clearly states that the databases are on site. Thus, by the process of elimination, the corruption answer is the only one left.
+1
You are...
June 18, 2014 at 12:41 am
Ok I have just recreated the requirement as this.
CREATE TABLE dbo.entries(entry varchar(20))
INSERT INTO dbo.entries values ('0')
INSERT INTO dbo.entries values ('0888')
INSERT INTO dbo.entries values ('324')
INSERT INTO dbo.entries values ('0')
INSERT INTO dbo.entries...
June 3, 2014 at 11:55 am
So just to be clear, the numbers you are showing are individual rows from your dataset, not 2 rows as shown with ; between the columns.
Fitz
June 3, 2014 at 11:36 am
Viewing 15 posts - 1 through 15 (of 249 total)