Viewing 15 posts - 451 through 465 (of 1,957 total)
mister.magoo (6/20/2014)
Can I ask what is not working in the SSRS RunningTotal, it may just be a scope problem?
Evil Kraig F (6/20/2014)
pwalter83 (6/20/2014)
June 23, 2014 at 3:11 am
Jeff Moden (6/23/2014)
June 23, 2014 at 2:35 am
Join to a "numbers" or "tally" table to generate the extra rows.
Have a read of this article, and then, if you don't understand how to apply it to your situation,...
June 22, 2014 at 5:46 pm
Here are two similar ways, but probably the second would be preferable as the first is deprecated.
1. Jscript.Eval
Add two references to your report:
Microsoft.JScript
Microsoft.Vsa (<-- deprecated, so...
June 22, 2014 at 5:40 pm
Jeff Moden (6/22/2014)
How in the world a newbie would make the connection in his/her mind that you need to find and embed a MIME attribute in HTML to send an...
June 22, 2014 at 4:38 pm
Can I ask what is not working in the SSRS RunningTotal, it may just be a scope problem?
June 20, 2014 at 4:57 pm
mickyT (6/16/2014)
DECLARE @smiley varchar(20) = 'Dont Worry Be Happy';
WITH Params AS (
SELECT MAX(CASE WHEN ItemNumber = 1 THEN Val END) OFFSET,
MAX(CASE WHEN...
June 19, 2014 at 2:20 am
clayman (6/17/2014)
I have two follow up questions.
Is there a way to change the query so that it only counts the word(s) once per row?
Also, I would like...
June 18, 2014 at 12:38 am
select Word,sum((len(t.string)-len(replace(t.string,Word,'')))/len(Word)) as count
from @word as w
cross join @t as t
group by Word
June 17, 2014 at 4:41 pm
If you provide some sample data in the form of DDL and DML statements that we can run, you will definitely get a working answer.
See the link in my signature...
June 17, 2014 at 4:30 pm
also, can you please tell us whether you are looking for exact matches or whether partial matches count?
e.g. if you are looking for "SQL", does "MySQL" count as a hit?
June 17, 2014 at 4:21 pm
Eirikur Eiriksson (6/16/2014)
mister.magoo (6/15/2014)
SELECT result FROM fifaworldcup2014 [highlight="#ffff11"]WITH(NOLOCK)[/highlight] WHERE team='ENGLAND'
Here's hoping for that "incorrect data" we...
June 16, 2014 at 1:08 am
I got tripped up by the encryption bit, as I did not take the phrase "You also determine that encryption is not used in this database" to mean that the...
June 15, 2014 at 5:09 pm
It's not very fancy, but I have found a query where NOLOCK really is desirable...
SELECT result FROM fifaworldcup2014 [highlight="#ffff11"]WITH(NOLOCK)[/highlight] WHERE team='ENGLAND'
Here's hoping for that "incorrect data" we are constantly warned...
June 15, 2014 at 4:57 pm
Viewing 15 posts - 451 through 465 (of 1,957 total)