Viewing 15 posts - 76 through 90 (of 1,957 total)
maybe try posting some information about your problem?
I for one am not willing to click your links to an external site, and I suspect many others feel the same.
April 3, 2016 at 4:37 pm
There is a subtle difference between the way a query embedded in the report is run compared to calling a stored procedure, and the result is that your parameter is...
April 2, 2016 at 5:36 pm
Why aren't you just doing this:
INSERT INTO [Table] (UserID, RefID, NewValue)
SELECT UID, RefID, 'Fixed message'
From UserTable
Where <Some condition>.
March 31, 2016 at 7:56 am
Jeff Moden (3/16/2016)
So, what would you prefer to see with the following (using a cte as if a Table Source)...
WITH cteTestData (RowNum,CSV) AS
(
SELECT 1, '1,2,3' UNION ALL
SELECT 2,...
March 16, 2016 at 5:05 pm
If this new 2016 splitter does get changed to return an ordinal position, (which I hope it does), then I would have to say that returning an empty set for...
March 16, 2016 at 7:54 am
Scott1336 (3/10/2016)
My client is upgrading every users desktop or laptop from windows 7 to windows 10. Since microsoft edge browser is default browser in particular tests from one of...
March 10, 2016 at 12:48 pm
Create the folder "Records Management" on the new server?
March 10, 2016 at 12:44 pm
Lowell (3/7/2016)
Thanks mister magoo! what tool did you use that helps you identify case sensitivity issues like that?
No tool, just SSMS showing errors for column names not being recognised. Working...
March 7, 2016 at 6:59 am
I haven't run the change scripts, but did find these issues in Version 1.0:
Lines 330, 332, 336 : inconsistent case on column names breaks script under CS collations.
Line 573 :...
March 7, 2016 at 6:20 am
patricklambin (3/6/2016)
March 6, 2016 at 6:59 am
As has already been stated by Ben, when you create temporary tables, they take on the collation of tempdb by default, which could cause you some issues.
There are ways to...
February 17, 2016 at 4:38 pm
Thanks, for a well written, informational article.
I'm not sure you have the research to provide weight to the theory that this is because .NET is case sensitive by default though....
February 13, 2016 at 4:12 am
February 12, 2016 at 10:34 am
Well, your reset function doesn't return anything, so the expression is maybe corrupt or at best being implicitly convert to a string?
You could try adding return 0
to your reset...
February 11, 2016 at 7:24 am
It's still a bit hard to tell what exactly you are doing.
Do you mean you are setting the Value expression for the textbox to this?
=SWITCH(
ISNOTHING(SUM(Fields!OPEX_VAL.Value)), 0, TRUE,
cint(code.GetQuarterTotal())
) & code.resetQuarterValue()
If not,...
February 11, 2016 at 6:55 am
Viewing 15 posts - 76 through 90 (of 1,957 total)