Viewing 15 posts - 2,161 through 2,175 (of 3,489 total)
So far, no joy... I tried it. Works fine if the ToolTip has only a text value. Doesn't appear you can pass an image to it, though.
I...
December 11, 2015 at 11:24 pm
Oops... oh well, gotta leave something for the OP to do!!!
December 11, 2015 at 11:01 pm
Did i miss it, and this is in a report?
I tweaked your query to turn it into a stored procedure, just to make it easier to call in SSRS.
ALTER PROC...
December 11, 2015 at 9:57 pm
Without sample data, this is hard to answer. Care to share? Or did you already figure it out?
December 10, 2015 at 11:24 pm
LOL!!!! Well, no wonder I've been having such a rough go of it. Guess I gotta learn to program better, since I can't make the Aspergers go away... might...
December 10, 2015 at 5:20 pm
that would be too easy... it's LEN()
December 9, 2015 at 11:41 pm
You can shrink the database, but you'll need to rebuild all the indexes, because shrinking the DB makes a mess of the indexing.
December 9, 2015 at 3:12 pm
I can't claim to be an expert on the subject, but here's a good article by Itzik Ben-Gan that shows different ways to do it and the performance of each...
December 9, 2015 at 3:02 pm
Sorry, gotta read more slowly.
What does the WHERE clause of your stored procedure look like? Do you have defaults set for the two parameters?
December 9, 2015 at 1:44 pm
Something like this maybe?
declare @tbl table(dt datetime, completeName varchar(100))
INSERT INTO @tbl values('20151130', 'Me'), ('20151110', 'other people'), ('20151201', 'candidat 1'), ('20151201', 'candidat 2')
SELECT * FROM @tbl order by dt ;
SELECT t1.dt,
stuff(...
December 9, 2015 at 1:36 am
Oh, that's much easier. If all you want is to show the parameter value in the header in upper case, put a textbox in the header, and set the...
December 8, 2015 at 6:40 pm
You're using SQL 2005, right? (Just to be sure I'm not creating a solution that won't work on 2005!)
Here's a query that would identify just the first id....
WITH MyDupesRN AS...
December 8, 2015 at 4:59 pm
Not enough information given to answer the question. If this is a child table to another table, then there may be a good reason for duplicate values. ...
December 8, 2015 at 4:24 pm
Are you trying to force the parameter value being supplied by the user to be converted to upper case as they type?
December 8, 2015 at 3:49 pm
If you just want to show the parameter on your report, but in uppercase, I would do it in SSRS.
Something like
=UCase(Parameters!ParamName.Value)
where ParamName is the name of your parameter.
For grins, this...
December 8, 2015 at 3:12 pm
Viewing 15 posts - 2,161 through 2,175 (of 3,489 total)