Viewing 15 posts - 61 through 75 (of 172 total)
Darn it! I'm sorry. Lost track.
OK - continue where we left off. I assumed that you wanted to eliminate the nulls because the sample data that you presented...
March 15, 2012 at 5:59 pm
fwiw - it doesn't like dashes ( - ) either
March 15, 2012 at 5:24 pm
Well, I think
SELECT * FROM dbo.mytable WHERE CHARINDEX(@FirstName,FirstName) > 0
is just gorgeous. It never ever occurred to me to do such a thing. Shucks.
Man I love...
March 15, 2012 at 5:16 pm
would this be a good use of Except?
Something like
select * from mytarget
except
select * from mysource
I've not had an opportunity use it myself.
March 15, 2012 at 5:00 pm
This quote:
..there are features in SQL Server MySQL has no complement for. Security is one particular area where MySQL trails Microsoft – unlike SQL Server, MySQL has no concept of...
March 15, 2012 at 4:37 pm
david.howell (3/13/2012)
Qualicon (3/13/2012)
TIP SSRS 2008 R2: Make a shared dataset from your query so you can use it any reports that needs the drop down list for ordered months....
You can,...
March 13, 2012 at 6:19 pm
Eugene is correct in asking you to provide more info, however I was a little bored so I threw this togehter. Since your requirements were a little vague, the...
March 8, 2012 at 6:23 pm
Here is a MS forum entry that might help you..
March 8, 2012 at 5:38 pm
I'll be in a meeting for a few hours. I'll try to take a look at this when done.
March 8, 2012 at 3:20 pm
easy = good !
😀
March 6, 2012 at 6:10 pm
Please see the attachment for screen shots and step by step instructions. Essentially:
Create the dataset
Insert a matrix
drag Category field into Row group
drag NoOfItems into Data cell
drag subcategories between Category...
March 6, 2012 at 6:03 pm
Howdy, it's kind of hard to tell from the screen shots, but it looks as if you've created a matrix, then inserted another tablix into the first matrix cell....
March 6, 2012 at 5:20 pm
=(Sum(Fields!FEE_transactionAmount.Value,
"DataSet1") +
=(Sum(Fields!FEE_OptionCost.Value,
"DataSet1")
Looks like you copied the 2nd half of the formula from another field. Remove the 2nd = sign.
=(Sum(Fields!FEE_transactionAmount.Value, "DataSet1") + (Sum(Fields!FEE_OptionCost.Value, "DataSet1")
March 6, 2012 at 4:55 pm
SQL_Enthusiast-AZ (3/5/2012)
EXAMPLE:
DECLARE @mask VARCHAR(30)
SET @mask = 'XXX-XX-'
SELECT
p.FIRST_NAME + ' ' + p.LAST_NAME,
(SELECT...
March 6, 2012 at 4:10 pm
I'm sure there are fancier and better ways, but here is a simple method with some self-joins (and a test table):
CREATE TABLE #RefIDs (OldID int, NewerID int)
INSERT INTO #RefIDs
VALUES...
March 6, 2012 at 3:50 pm
Viewing 15 posts - 61 through 75 (of 172 total)